9 lines
227 B
Bash
9 lines
227 B
Bash
|
#!/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
|
||
|
|