mirror of
https://github.com/srlabs/blue-merle.git
synced 2024-10-01 00:55:39 -04:00
843ddf9e7d
I don't know whether this works. On the v4 firmware, we can see files in /etc/gl-switch.d but I don't know yet how the system determines which file to choose. I assume it's dependend on the "page" of the display. But I haven't figured out yet how or rather where those pages are organised.
15 lines
220 B
Bash
15 lines
220 B
Bash
#!/bin/sh
|
|
|
|
action=$1
|
|
|
|
if [ "$action" = "on" ];then
|
|
echo "on" > /tmp/sim_change_switch
|
|
|
|
elif [ "$action" = "off" ];then
|
|
echo "off" > /tmp/sim_change_switch
|
|
else
|
|
echo "off" > /tmp/sim_change_switch
|
|
fi
|
|
sleep 1
|
|
|