4 lines
93 B
Bash
Executable file
4 lines
93 B
Bash
Executable file
#!/bin/bash
|
|
if [[ $(pamixer --get-volume) -lt 150 ]]; then
|
|
pamixer -i 5 --allow-boost
|
|
fi
|