From a8d855d2f761b1c3fdedced22e445c7daeb35c68 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Sat, 23 Sep 2023 11:37:49 +0200 Subject: [PATCH] Adds calculator shortcut --- rc.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rc.lua b/rc.lua index 23d441f..8d782ce 100644 --- a/rc.lua +++ b/rc.lua @@ -597,7 +597,11 @@ globalkeys = awful.util.table.join( awful.key({ modkey }, "b", function() awful.spawn.easy_async("blueberry", function(e) end) - end, {description = "starts blueberry", group = "shortcuts"}) + end, {description = "starts blueberry", group = "shortcuts"}), + + awful.key({ modkey }, "c", function() + awful.spawn.easy_async("alacritty -e insect", function(e) end) + end, {description = "starts insect", group = "shortcuts"}) ) clientkeys = awful.util.table.join(