9 lines
227 B
Bash
Executable File
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
|
|
|