dotfiles-remastered/.config/eww/modules/volume/volume.sh
2023-11-27 00:34:43 +01:00

9 lines
227 B
Bash
Executable File

#!/bin/bash
wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print int($2 * 100)}'
pactl subscribe | rg --line-buffered "on sink" | while read -r _; do
wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print int($2 * 100)}'
done