b55a2629fb
turns out i was dumping them in 2 different places lmao
6 lines
96 B
Bash
Executable File
6 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
|
|
vol="$(amixer get Master | tail -n1 | sed -r 's/.*\[(.*)%\].*/\1/')"
|
|
echo "${vol}%"
|
|
|