dotfiles/.local/bin/pipe_volume
2024-06-23 06:44:57 -04:00

8 lines
210 B
Bash
Executable file

#!/bin/sh
PIPE_FILE="/tmp/pipe-volume"
[ -p "$PIPE_FILE" ] || mkfifo "$PIPE_FILE"
volume=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '/Volume/ { print int($NF * 100) }')
genbar "$volume" 10 1 >"$PIPE_FILE"