mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
10 lines
No EOL
346 B
Bash
10 lines
No EOL
346 B
Bash
#!/usr/bin/env bash
|
|
|
|
if (ps aux | grep audacious | grep -v grep > /dev/null) then
|
|
pkill audacious
|
|
else
|
|
hyprctl dispatch exec "[workspace 8 silent] audacious -t"
|
|
sleep 0.5
|
|
audtool playlist-repeat-status |grep "on" || audtool playlist-repeat-toggle
|
|
audtool playlist-shuffle-status|grep "on" || audtool playlist-shuffle-toggle
|
|
fi |