Added shortcuts for screen config
This commit is contained in:
parent
22e77cb44e
commit
247b4a0c82
|
@ -391,7 +391,23 @@ globalkeys = awful.util.table.join(
|
||||||
|
|
||||||
awful.key({modkey, "Shift"}, "Tab", function()
|
awful.key({modkey, "Shift"}, "Tab", function()
|
||||||
os.execute('xdotool key Caps_Lock')
|
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(
|
clientkeys = awful.util.table.join(
|
||||||
|
|
Loading…
Reference in New Issue