diff --git a/dot_config/fontconfig/fonts.conf b/dot_config/fontconfig/fonts.conf index 8f1e9f1..6e75d98 100644 --- a/dot_config/fontconfig/fonts.conf +++ b/dot_config/fontconfig/fonts.conf @@ -4,7 +4,7 @@ MonoFont - IosevkaTerm Nerd Font + IosevkaTerm NFP diff --git a/dot_config/i3/config.tmpl b/dot_config/i3/config.tmpl index 5e8c929..4e6df2b 100644 --- a/dot_config/i3/config.tmpl +++ b/dot_config/i3/config.tmpl @@ -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. diff --git a/dot_config/i3/i3-autoname-workspaces.py b/dot_config/i3/i3-autoname-workspaces.py index aa25d8f..feccce4 100644 --- a/dot_config/i3/i3-autoname-workspaces.py +++ b/dot_config/i3/i3-autoname-workspaces.py @@ -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}')