7 lines
130 B
Bash
Executable File
7 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Do we need this at all?
|
|
if [ -e /usr/bin/pulseaudio-ctl ];then
|
|
(sleep 10s && /usr/bin/pulseaudio-ctl set 70) &
|
|
fi
|