Adds emojinput shortcut

This commit is contained in:
Thomas Forgione 2022-02-05 21:22:25 +01:00
parent 449a7ac250
commit 7b0a0c5235
1 changed files with 5 additions and 1 deletions

6
rc.lua
View File

@ -571,7 +571,11 @@ globalkeys = awful.util.table.join(
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
end
end)
end, {description="Automatically enters the key to type your email", group="shortcuts"})
end, {description="Automatically enters the key to type your email", group="shortcuts"}),
awful.key({modkey}, "e", function()
awful.spawn.easy_async("emojinput", function() end)
end, {description="Starts emojinput", group="shortcuts"})
)