diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2021-01-10 11:38:01 +0100 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2021-01-10 11:39:29 +0100 |
commit | 57bb0f74838b54e0a2032b28b021177771f599c1 (patch) | |
tree | f0efc8caf6a9dc4e80f61c8b736a0ca8515cf142 | |
parent | 930b01bd09f42be77520b753c6068b7710c98c4e (diff) | |
download | dotfiles-57bb0f74838b54e0a2032b28b021177771f599c1.tar.gz dotfiles-57bb0f74838b54e0a2032b28b021177771f599c1.tar.bz2 dotfiles-57bb0f74838b54e0a2032b28b021177771f599c1.zip |
screen lock with light locker
-rw-r--r-- | config/awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 1338c5a..7643e01 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -332,7 +332,7 @@ globalkeys = gears.table.join( end, {description = "restore minimized", group = "client"}), - awful.key({ }, "F12", function () awful.spawn("xscreensaver-command -lock") end, + awful.key({ }, "F12", function () awful.spawn("light-locker-command -l") end, {description = "Lock screen", group = "awesome"}), -- User programs @@ -632,7 +632,7 @@ local function run_once(cmd) end run_once("nextcloud") -run_once("xscreensaver -no-splash") +run_once("light-locker") run_once("redshift-gtk") run_once("mount /media/backup") run_once("nm-applet") |