From 981a3d788efafd82955a194bfa2ac0e4ad714497 Mon Sep 17 00:00:00 2001 From: workflow <4farlion@gmail.com> Date: Mon, 26 Feb 2024 11:23:47 +0000 Subject: [PATCH] style(rofi): fix title and lint --- home/scripts/sound-switcher.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/scripts/sound-switcher.sh b/home/scripts/sound-switcher.sh index 8a2e82df..b3a50038 100644 --- a/home/scripts/sound-switcher.sh +++ b/home/scripts/sound-switcher.sh @@ -6,7 +6,7 @@ chosen="$(echo -e "🔌local\n\ 🔊dock\n\ 🎧sony\n\ 📢boombox\n\ -🎧openheadphones(laptop)" | rofi -dmenu -p "Zound:")" +🎧openheadphones(laptop)" | rofi -dmenu -p "🎶 [M]usic and 🎤 Switch")" function b { BOOMBOX="bluez_sink.04_21_44_B6_92_39.a2dp_sink" @@ -27,7 +27,7 @@ function d { pactl set-default-sink "$DOCK" INPUTS=$(pactl list sink-inputs short | cut -f 1) for i in $INPUTS; do - pactl move-sink-input $i "$DOCK" + pactl move-sink-input "$i" "$DOCK" done }