From 7b0a0c5235472864ddc79b9a45ee39b9f705df0e Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Sat, 5 Feb 2022 21:22:25 +0100 Subject: [PATCH] Adds emojinput shortcut --- rc.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rc.lua b/rc.lua index 2df6ed2..7f0e473 100644 --- a/rc.lua +++ b/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"}) )