diff options
-rw-r--r-- | .config/qtile/config.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index feccee4..d9579c7 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -12,7 +12,7 @@ home = os.path.expanduser("~") terminal = "termite" drun_launcher = "rofi -show drun" run_launcher = "rofi -show run" -lock = "/usr/bin/light-locker-command -l" +lock = "/usr/bin/i3lock -f -c 000000" brightness_step = "5" brightness_up = "xbacklight -inc "+brightness_step brightness_down = "xbacklight -dec "+brightness_step @@ -74,10 +74,6 @@ keys = [ # launch terminal Key([mod], "Return", lazy.spawn(terminal)), - # brightness settings -# Key([], "XF86MonBrightnessUp", lazy.spawn(brightness_up)), -# Key([], "XF86MonBrightnessDown", lazy.spawn(brightness_down)), - # multimedia Key([], "XF86AudioRaiseVolume", lazy.spawn(volume_up)), Key([], "XF86AudioLowerVolume", lazy.spawn(volume_down)), |