aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qtile
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-11-03 18:21:55 +0100
committerDavid Runge <dave@sleepmap.de>2017-11-03 18:21:55 +0100
commit475f46fb9e094108e890fef311156650b5b556aa (patch)
tree1ad0bc564f84c1c35b1d63c9a2588848c2958158 /.config/qtile
parent7c83b3d1839711e6266fab2cd64f694c88cea7e9 (diff)
downloaddotfiles-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).
Diffstat (limited to '.config/qtile')
-rw-r--r--.config/qtile/config.py6
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)),