Adds emojinput shortcut
This commit is contained in:
parent
449a7ac250
commit
7b0a0c5235
6
rc.lua
6
rc.lua
|
@ -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"})
|
||||
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue