aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya <bluenerd@protonmail.com>2023-03-01 14:07:26 +0530
committerAditya <bluenerd@protonmail.com>2023-03-01 14:07:26 +0530
commit54182116654551a58cf85d434d0e8cb0a1b66eb7 (patch)
tree1c5547c08a35e4471318433fe189bbaa9eef65a3
parente531b0b02a6daf5f77fec12ab94d84572687d7c4 (diff)
use alsa to get volume level
-rwxr-xr-xmodules/volume10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/volume b/modules/volume
index 6b5b96e..484a6d7 100755
--- a/modules/volume
+++ b/modules/volume
@@ -6,14 +6,14 @@ VOLUME_ON_ICON=''
VOLUME_MUTED_ICON=''
get_volume(){
- curStatus=$(pactl get-sink-mute @DEFAULT_SINK@)
- volume=$(pactl get-sink-volume @DEFAULT_SINK@ | tail -n 2 | sed -e 's,.* \([0-9][0-9]*\)%.*,\1,' | head -n 1)
+ #curStatus=$(pactl get-sink-mute @DEFAULT_SINK@)
+ volume=$(awk -F"[][]" '/Left:/ { print $2 }' <(amixer sget Master))
- if [ "${curStatus}" = 'Mute: yes' ]
+ if [ "${curStatus}" = '0%' ]
then
- echo "$VOLUME_MUTED_ICON $volume%"
+ echo "$VOLUME_MUTED_ICON $volume"
else
- echo "$VOLUME_ON_ICON $volume%"
+ echo "$VOLUME_ON_ICON $volume"
fi
}