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