2024-10-04 14:26:18 +00:00

14 lines
212 B
Bash
Executable File

#!/bin/bash
echo $ATX
case $ATX in
GPIO)
sudo /etc/kvmd/custom_atx/gpio.sh $1
;;
USBRELAY_HID)
sudo /etc/kvmd/custom_atx/usbrelay_hid.sh $1
;;
*)
echo "No thing."
exit -1
esac