10 lines
153 B
Bash
Executable file
10 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $# == 0 ]]; then
|
|
runbg audacious -t
|
|
elif [[ $1 == -s ]]; then
|
|
pkill audacious
|
|
else
|
|
echo "[ERROR] => Wrong argument..."
|
|
fi
|