Adds calculator shortcut
This commit is contained in:
parent
7951f7f2fe
commit
a8d855d2f7
6
rc.lua
6
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(
|
||||
|
|
Loading…
Reference in New Issue