mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
10 lines
421 B
Bash
10 lines
421 B
Bash
echo "Add cliamp music TUI player (Super+Shift+Alt+M)"
|
|
|
|
if omarchy-pkg-missing cliamp; then
|
|
omarchy-pkg-add cliamp
|
|
|
|
if [[ -f ~/.config/hypr/bindings.conf ]] && ! grep -q "cliamp" ~/.config/hypr/bindings.conf; then
|
|
sed -i '/^bindd = SUPER SHIFT, M, Music, exec, omarchy-launch-or-focus spotify/a bindd = SUPER SHIFT ALT, M, Music TUI, exec, omarchy-launch-or-focus-tui cliamp' ~/.config/hypr/bindings.conf
|
|
fi
|
|
fi
|