This repository has been archived on 2025-11-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/modules/home/scripts/music
2023-11-11 22:38:55 +01:00

9 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