changed mod+l hotkey to use slock instead of my custom python script

This commit is contained in:
sqozz 2015-01-14 19:59:57 +01:00
parent f25e579fed
commit 87a0c319b7
1 changed files with 2 additions and 1 deletions

View File

@ -429,7 +429,8 @@ globalkeys = awful.util.table.join(
awful.key({ altkey }, "p", function() os.execute("screenshot") end),
-- Lock Screen
awful.key({ modkey }, "l", function() awful.util.spawn("python3 /home/sqozz/programming/python3/BackgroundChanger/bgchanger.py") end),
-- awful.key({ modkey }, "l", function() awful.util.spawn("python3 /home/sqozz/programming/python3/BackgroundChanger/bgchanger.py") end),
awful.key({ modkey }, "l", function() awful.util.spawn("slock") end),
-- Tag browsing
awful.key({ modkey }, "Left", awful.tag.viewprev ),