6 lines
139 B
Bash
Executable File
6 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
if pactl list sinks | grep -qE 'device.icon_name = \"audio-(headset|headphones)-bluetooth\"'; then
|
|
printf '🎧'
|
|
fi
|
|
printf '\n'
|