add wiremix and impalam tui key maps
This commit is contained in:
@@ -9,7 +9,7 @@ padding=10
|
|||||||
border-size=3
|
border-size=3
|
||||||
border-radius=6
|
border-radius=6
|
||||||
border-color=#BBBBFFFF
|
border-color=#BBBBFFFF
|
||||||
background-color=#00003311
|
background-color=#44443311
|
||||||
text-color=#BBBBFFFF
|
text-color=#BBBBFFFF
|
||||||
|
|
||||||
default-timeout=5000
|
default-timeout=5000
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ bind=Alt,Return,spawn,ghostty
|
|||||||
# screenshot
|
# screenshot
|
||||||
bind=NONE,Print,spawn,$HOME/.config/mango/scripts/screenshot/fullscreen.sh
|
bind=NONE,Print,spawn,$HOME/.config/mango/scripts/screenshot/fullscreen.sh
|
||||||
bind=NONE,XF86SelectiveScreenshot,spawn,$HOME/.config/mango/scripts/screenshot/region.sh
|
bind=NONE,XF86SelectiveScreenshot,spawn,$HOME/.config/mango/scripts/screenshot/region.sh
|
||||||
|
|
||||||
# exit
|
# exit
|
||||||
bind=SUPER,m,quit
|
bind=SUPER,m,quit
|
||||||
bind=ALT,q,killclient,
|
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,XF86AudioLowerVolume,spawn,wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||||
bind=NONE,XF86AudioMute,spawn,wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
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
|
# brightness
|
||||||
bind=NONE,XF86MonBrightnessUp,spawn,light -A 5
|
bind=NONE,XF86MonBrightnessUp,spawn,light -A 5
|
||||||
bind=NONE,XF86MonBrightnessDown,spawn,light -U 5
|
bind=NONE,XF86MonBrightnessDown,spawn,light -U 5
|
||||||
|
|||||||
@@ -2,3 +2,5 @@
|
|||||||
|
|
||||||
windowrule=noblur:1,appid:slurp
|
windowrule=noblur:1,appid:slurp
|
||||||
windowrule=isfloating:1,appid:satty
|
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
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -eu pipefail
|
||||||
|
|
||||||
|
$HOME/.config/mango/scripts/tui/run.sh "impala"
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
tui=$1
|
||||||
|
|
||||||
|
if ! pgrep -x "$tui" >/dev/null; then
|
||||||
|
ghostty --title="d.$tui" -e "$tui"
|
||||||
|
fi
|
||||||
+4
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -eu pipefail
|
||||||
|
|
||||||
|
$HOME/.config/mango/scripts/tui/run.sh "wiremix"
|
||||||
Reference in New Issue
Block a user