aboutsummaryrefslogtreecommitdiff
path: root/scripts/toggle-xray.sh
blob: a95ffd34fc3d7c08783c763ad0e28d47e51e5393 (plain)
1
2
3
4
5
6
#!/bin/bash
if systemctl is-active --quiet xray; then
    systemctl stop xray
else
    systemctl start xray
fi