Adds calculator shortcut

This commit is contained in:
Thomas Forgione 2023-09-23 11:37:49 +02:00
parent 7951f7f2fe
commit a8d855d2f7
1 changed files with 5 additions and 1 deletions

6
rc.lua
View File

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