dotfiles-remastered/.config/eww/modules/volume/volume.sh

9 lines
227 B
Bash
Raw Normal View History

2023-11-26 23:34:43 +00:00
#!/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