mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
14 lines
212 B
Bash
Executable File
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 |