From 247b4a0c820a660537dcc250f101df4abe74aa42 Mon Sep 17 00:00:00 2001 From: Thomas FORGIONE Date: Tue, 24 Jan 2017 14:11:10 +0100 Subject: [PATCH] Added shortcuts for screen config --- awesome/rc.lua | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index cf43ac0..b85bcbe 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -391,7 +391,23 @@ globalkeys = awful.util.table.join( awful.key({modkey, "Shift"}, "Tab", function() os.execute('xdotool key Caps_Lock') - end, {description="switch the caps lock", group="custom"}) + end, {description="switch the caps lock", group="custom"}), + + awful.key({modkey}, "#83", function() + os.execute("tv.sh enable left") + end, {description="lol", group="custom"}), + + awful.key({modkey}, "#84", function() + os.execute("tv.sh duplicate") + end, {description="lol", group="custom"}), + + awful.key({modkey}, "#85", function() + os.execute("tv.sh enable") + end, {description="lol", group="custom"}), + + awful.key({modkey}, "#90", function() + os.execute("tv.sh disable") + end, {description="lol", group="custom"}) ) clientkeys = awful.util.table.join(