14 lines
203 B
Bash
Executable file
14 lines
203 B
Bash
Executable file
#!/bin/sh
|
|
|
|
_bsd() {
|
|
sndioctl -n output.level | sed 's/0\.//' | sed 's/.$/%/' | sed 's/\.//'
|
|
}
|
|
|
|
_linux() {
|
|
printf "$(pamixer --get-volume)%%\n"
|
|
}
|
|
|
|
case $(uname) in
|
|
Linux) _linux ;;
|
|
*BSD) _bsd ;;
|
|
esac
|