From bba2ca4fbfcddb6ba39303dc0ab2ae4a0e679b9a Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Tue, 28 Feb 2017 19:15:53 +0100 Subject: [PATCH] Some more shortcuts --- awesome/rc.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index f57eaba..2650196 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -401,7 +401,7 @@ globalkeys = awful.util.table.join( end, {description="switch the caps lock", group="custom"}), awful.key({modkey}, "#83", function() - os.execute("tv.sh enable left") + os.execute("tv.sh enable left-of") end, {description="lol", group="custom"}), awful.key({modkey}, "#84", function() @@ -412,6 +412,14 @@ globalkeys = awful.util.table.join( os.execute("tv.sh enable") end, {description="lol", group="custom"}), + awful.key({modkey}, "#80", function() + os.execute("tv.sh enable above") + end, {description="lol", group="custom"}), + + awful.key({modkey}, "#88", function() + os.execute("tv.sh enable below") + end, {description="lol", group="custom"}), + awful.key({modkey}, "#90", function() os.execute("tv.sh disable") end, {description="lol", group="custom"})