aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/rofiaudio
blob: 6912bed3e8a660614291d722fcf99417155a4fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

if [ "$ROFI_RETV" != 0 ]; then
	changeoutput $1
	notify-send "🔉 Audio output" "Audio output switched to '$1'"
	exit 0
fi

displays="$(swaymsg -t get_outputs | grep -E "name" |
	sed "s/^.*\"name\": \"//g;s/\",$//g;")"

echo -ne "\0no-custom\x1ftrue\n"
echo -ne "\0prompt\x1fSelect audio output\n"
for s in $(listsinks); do
	echo -ne "$s\0icon\x1faudio-speakers\n"
done