blob: 9a8d79f1c392b5bb922982c62c52125d310d841e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
echo -n "SPKR: $(wpctl get-volume @DEFAULT_AUDIO_SINK@ 2> /dev/null | sed 's/\.//g' )% ; MIC: $(wpctl get-volume @DEFAULT_AUDIO_SOURCE@ 2> /dev/null | sed 's/\.//g')%"
echo -n " | "
echo -n "$(date)"
for f in ${HOME}/.local/share/barmodules/enabled/*; do
echo -n " | "
[ -x "$f" ] && [ ! -d "$f" ] && "$f"
done
|