Small tweaks for new navbar and fallback for older qtile on work laptop

This commit is contained in:
Kevin Alberts 2026-02-17 12:23:06 +01:00
parent e4b40d40b1
commit dfcb366241
3 changed files with 60 additions and 28 deletions

View file

@ -92,7 +92,9 @@ class Config(GeneralConfig):
def initialize(cls, qtile):
super(Config, cls).initialize(qtile=qtile)
# Add keyboard remapping to autostart apps
cls.apps_autostart['common'].append(["xmodmap", "-e", "keycode 191 = Super_L"])
cls.apps_autostart['common'] = [
["xmodmap", "-e", "keycode 191 = Super_L"]
]
# Determine screens programatically
qtile_width = int(os.getenv("QTILE_WIDTH", "3840"))