Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bin/omakub-sub/font.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set_font() {
if [ "$#" -gt 1 ]; then
choice=${!#}
else
choice=$(gum choose "Cascadia Mono" "Fira Mono" "JetBrains Mono" "Meslo" "> Change size" "<< Back" --height 8 --header "Choose your programming font")
choice=$(gum choose "Cascadia Mono" "Fira Mono" "JetBrains Mono" "Meslo" "Ioskeley" "> Change size" "<< Back" --height 8 --header "Choose your programming font")
fi

case $choice in
Expand All @@ -42,6 +42,9 @@ case $choice in
"Meslo")
set_font "MesloLGS Nerd Font" "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Meslo.zip" "ttf"
;;
"Ioskeley")
set_font "IoskeleyMono Nerd Font" "https://github.com/ahatem/IoskeleyMono/releases/download/v2.0.0/IoskeleyMono-NerdFont.zip" "ttf"
;;
"> Change size")
source $OMAKUB_PATH/bin/omakub-sub/font-size.sh
exit
Expand Down
4 changes: 4 additions & 0 deletions configs/alacritty/fonts/IoskeleyMono.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[font]
normal = { family = "IoskeleyMono Nerd Font", style = "Regular" }
bold = { family = "IoskeleyMono Nerd Font", style = "Bold" }
italic = { family = "IoskeleyMono Nerd Font", style = "Italic" }
2 changes: 1 addition & 1 deletion install/desktop/optional/app-spotify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Stream music using https://spotify.com
if [ ! -f /etc/apt/sources.list.d/spotify.list ]; then
[ -f /etc/apt/trusted.gpg.d/spotify.gpg ] && sudo rm /etc/apt/trusted.gpg.d/spotify.gpg
curl -sS https://download.spotify.com/debian/pubkey_C85668DF69375001.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg
curl -sS https://download.spotify.com/debian/pubkey_5384CE82BA52C83A.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg
echo "deb [signed-by=/etc/apt/trusted.gpg.d/spotify.gpg] https://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
fi

Expand Down
8 changes: 8 additions & 0 deletions migrations/1770656330.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# Update Spotify GPG key if the repository is present
if [ -f /etc/apt/sources.list.d/spotify.list ]; then
echo "Updating Spotify GPG key..."
curl -sS https://download.spotify.com/debian/pubkey_5384CE82BA52C83A.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg
echo "deb [signed-by=/etc/apt/trusted.gpg.d/spotify.gpg] https://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list
Comment on lines +3 to +7
fi
Loading