diff options
author | David Runge <dave@sleepmap.de> | 2017-11-03 18:21:55 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-11-03 18:21:55 +0100 |
commit | 475f46fb9e094108e890fef311156650b5b556aa (patch) | |
tree | 1ad0bc564f84c1c35b1d63c9a2588848c2958158 | |
parent | 7c83b3d1839711e6266fab2cd64f694c88cea7e9 (diff) | |
download | dotfiles-475f46fb9e094108e890fef311156650b5b556aa.tar.gz dotfiles-475f46fb9e094108e890fef311156650b5b556aa.tar.bz2 dotfiles-475f46fb9e094108e890fef311156650b5b556aa.tar.xz dotfiles-475f46fb9e094108e890fef311156650b5b556aa.zip |
.config/qtile/config.py: Adding i3lock as lock command. Removing brightness settings (they work natively again).
-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)), |