Use CaskaydiaMono Nerd Font Propo for waybar

Ever so slightly nicer spacing
This commit is contained in:
David Heinemeier Hansson
2025-07-10 15:44:48 -07:00
parent 1ee5b06161
commit 051c1c2ad8
2 changed files with 16 additions and 2 deletions

View File

@ -2,7 +2,7 @@
border: none; border: none;
border-radius: 0; border-radius: 0;
min-height: 0; min-height: 0;
font-family: CaskaydiaMono Nerd Font; font-family: CaskaydiaMono Nerd Font Propo;
font-size: 12px; font-size: 12px;
} }
@ -16,8 +16,11 @@
margin-right: 3px; margin-right: 3px;
} }
#custom-expand {
margin-right: 0px;
}
#custom-dropbox, #custom-dropbox,
#custom-expand,
#tray, #tray,
#cpu, #cpu,
#battery, #battery,

11
migrations/1752187060.sh Normal file
View File

@ -0,0 +1,11 @@
echo "Add missing Propo version of Caskaydia Mono Nerd Font for Waybar use"
if ! fc-list | grep -qi "CaskaydiaMono Nerd Font Propo"; then
cd /tmp
wget https://github.com/ryanoasis/nerd-fonts/releases/latest/download/CascadiaMono.zip
unzip CascadiaMono.zip -d CascadiaFont
cp CascadiaFont/CaskaydiaMonoNerdFontPropo-Regular.ttf ~/.local/share/fonts
rm -rf CascadiaMono.zip CascadiaFont
fc-cache
cd -
fi