summaryrefslogtreecommitdiff
path: root/desktop/Local/bin/barstatus
blob: ecb461c52c024da06f4d5ad6be9d40d84f50c6b1 (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/0\.//g' | sed 's/\.//g' )% ; MIC: $(wpctl get-volume @DEFAULT_AUDIO_SOURCE@ 2> /dev/null | sed 's/0\.//g' | 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