6 lines
167 B
Bash
Executable File
6 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
current="$(amixer get Master | sed -n '/%/s/.*\[\(.*\)%\].*/\1/p' | head -1)"
|
|
wjt -x "$current" | while read next; do
|
|
amixer -q set Master "$next%"
|
|
done
|