configs/desktop/configs/eww/.config/eww/scripts/getvol
2024-06-10 00:09:08 -03:00

7 lines
258 B
Bash
Executable File

#!/bin/sh
if [ -x "$(command -v amixer)" ]; then
amixer -D pulse sget Master | grep 'Left:' | awk -F'[][]' '{ print $2 }' | tr -d '%' | head -1
elif [ -x "$(command -v pactl)" ]; then
pactl list sinks | grep left: | awk '{print $5}' | tr -d "%" | head -1
fi