Update iosevka font

This commit is contained in:
Pavle Portic 2023-11-21 18:46:27 +01:00
parent 2567d1cab9
commit ba3a1c5093
Signed by: TheEdgeOfRage
GPG Key ID: 66AD4BA646FBC0D2
3 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
<alias>
<family>MonoFont</family>
<prefer>
<family>IosevkaTerm Nerd Font</family>
<family>IosevkaTerm NFP</family>
</prefer>
</alias>
</fontconfig>

View File

@ -31,9 +31,9 @@ set $down n
set $up e
set $right i
set $telegram " "
set $firefox " "
set $thunderbird " "
set $telegram ""
set $firefox ""
set $thunderbird ""
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.

View File

@ -160,10 +160,10 @@ def icon_for_window(window) -> str:
for cls in map(lambda x: x.lower(), classes):
if 'minecraft' in cls:
return WINDOW_ICONS["minecraft"] + ''
return WINDOW_ICONS["minecraft"]
if cls in WINDOW_ICONS:
return WINDOW_ICONS[cls] + ''
return WINDOW_ICONS[cls]
else:
print(f'No icon available for: {classes}')