mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
15 lines
346 B
Bash
15 lines
346 B
Bash
echo "Add icons for additional audio profiles in Waybar"
|
|
|
|
if ! grep -q '"headphone": ""' "$HOME/.config/waybar/config.jsonc"; then
|
|
sed -i '
|
|
/"pulseaudio": {/,/^[ ]*}/{
|
|
/"format-icons": {/,/^[ ]*}/{
|
|
/"default":/i\
|
|
\ "headphone": "",
|
|
}
|
|
}
|
|
' "$HOME/.config/waybar/config.jsonc"
|
|
|
|
omarchy-restart-waybar
|
|
fi
|