mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
Redone a number of modules, now they speak JSON. Added a konawall toggler module. Removed mkchromecast from autostart. Moved from pavucontrol to pulsemixer.
10 lines
209 B
Bash
10 lines
209 B
Bash
#!/bin/bash
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
|
|
if systemctl --user is-active konawall-rotation.timer --quiet; then
|
|
systemctl --user stop konawall-rotation.timer
|
|
else
|
|
systemctl --user start konawall-rotation.timer
|
|
fi
|