Added shortcut to input email adress

This commit is contained in:
Thomas FORGIONE 2017-03-08 11:41:09 +01:00
parent b19d2ad21d
commit a6cfb2b8aa
No known key found for this signature in database
GPG Key ID: 2A210FFC062E00C3
1 changed files with 8 additions and 1 deletions

View File

@ -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(