diff options
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 57f75d8..93ca86f 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py | |||
@@ -64,6 +64,9 @@ keys = [ | |||
64 | Key([mod, "control"], "r", lazy.restart(), desc="Restart Qtile"), | 64 | Key([mod, "control"], "r", lazy.restart(), desc="Restart Qtile"), |
65 | Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"), | 65 | Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"), |
66 | 66 | ||
67 | Key([mod], "F12", os.system("xbacklight -inc 10"), desc="Inc backlight"), | ||
68 | Key([mod], "F11", os.system("xbacklight -dec 10"), desc="Dec backlight"), | ||
69 | |||
67 | Key([mod], "r", lazy.spawncmd(), | 70 | Key([mod], "r", lazy.spawncmd(), |
68 | desc="Spawn a command using a prompt widget"), | 71 | desc="Spawn a command using a prompt widget"), |
69 | 72 | ||