add wiremix and impalam tui key maps

This commit is contained in:
desolate
2026-05-24 16:37:55 +03:00
parent 84367ee7ae
commit 5690771db8
6 changed files with 22 additions and 1 deletions
@@ -13,6 +13,7 @@ bind=Alt,Return,spawn,ghostty
# screenshot
bind=NONE,Print,spawn,$HOME/.config/mango/scripts/screenshot/fullscreen.sh
bind=NONE,XF86SelectiveScreenshot,spawn,$HOME/.config/mango/scripts/screenshot/region.sh
# exit
bind=SUPER,m,quit
bind=ALT,q,killclient,
@@ -22,6 +23,9 @@ bind=NONE,XF86AudioRaiseVolume,spawn,wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
bind=NONE,XF86AudioLowerVolume,spawn,wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bind=NONE,XF86AudioMute,spawn,wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
bind=SUPER,a,spawn,$HOME/.config/mango/scripts/tui/wiremix.sh
bind=SUPER,w,spawn,$HOME/.config/mango/scripts/tui/impala.sh
# brightness
bind=NONE,XF86MonBrightnessUp,spawn,light -A 5
bind=NONE,XF86MonBrightnessDown,spawn,light -U 5
@@ -2,3 +2,5 @@
windowrule=noblur:1,appid:slurp
windowrule=isfloating:1,appid:satty
windowrule=isfloating:1,animation_type_open:fade,animation_type_close:fade,appid:ghostty,title:d.wiremix
windowrule=isfloating:1,animation_type_open:fade,animation_type_close:fade,appid:ghostty,title:d.impala
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
set -eu pipefail
$HOME/.config/mango/scripts/tui/run.sh "impala"
+7
View File
@@ -0,0 +1,7 @@
#!/bin/sh
tui=$1
if ! pgrep -x "$tui" >/dev/null; then
ghostty --title="d.$tui" -e "$tui"
fi
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
set -eu pipefail
$HOME/.config/mango/scripts/tui/run.sh "wiremix"