Added shortcut to input email adress
This commit is contained in:
parent
b19d2ad21d
commit
a6cfb2b8aa
|
@ -422,7 +422,14 @@ globalkeys = awful.util.table.join(
|
|||
|
||||
awful.key({modkey}, "#90", function()
|
||||
os.execute("tv.sh disable")
|
||||
end, {description="lol", group="custom"})
|
||||
end, {description="lol", group="custom"}),
|
||||
|
||||
awful.key({modkey, "Shift"}, "m", function()
|
||||
os.execute('sleep 0.5')
|
||||
for i = 1, #options.email do
|
||||
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
|
||||
end
|
||||
end, {description="lol", group="autoinput"})
|
||||
)
|
||||
|
||||
clientkeys = awful.util.table.join(
|
||||
|
|
Loading…
Reference in New Issue