Update handy to support alacritty for popups

Alacritty doesn't support the startup notification method. Handy now has
a fallback method for such applications.
This commit is contained in:
Alexander Gehrke 2020-02-24 10:21:26 +01:00
parent 5bb207b5e0
commit 05dceadc57
2 changed files with 3 additions and 3 deletions

2
handy

@ -1 +1 @@
Subproject commit 4c0cb2ae0f3d7fbf476708ddd417549e938966c8
Subproject commit 66f8a1c213ccfbc156a7a74f6cd050ef96747638

View file

@ -108,10 +108,10 @@ local myglobalkeys = awful.util.table.join(
-- {{{ handy console
awful.key({ }, "F12", function ()
handy("urxvt -e tmux", awful.placement.centered, 0.9, 0.7)
handy("alacritty --class handy -e tmux", awful.placement.centered, 0.9, 0.7, nil, "handy")
end ),
awful.key({ modkey }, "x", function ()
handy("urxvt -e ikhal", awful.placement.centered, 0.9, 0.7, 'single')
handy("alacritty --class handy -e ikhal", awful.placement.centered, 0.9, 0.7, 'single', "handy")
end ),
awful.key({ modkey }, "a", function ()
handy("pavucontrol", awful.placement.centered, 0.6, 0.8, 'single')