From 87a0c319b7ea4633cf9b57854b7b2417b30cbaac Mon Sep 17 00:00:00 2001 From: sqozz Date: Wed, 14 Jan 2015 19:59:57 +0100 Subject: [PATCH] changed mod+l hotkey to use slock instead of my custom python script --- awesome/rc.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index 13782dc..6cd7848 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -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 ),