summaryrefslogtreecommitdiff
path: root/package/alix-switch/files/alix-switch
blob: ad439a2211bc3b4fd33882ee0cfe7bcbe52d009d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# launched by alix-switchd in case of button event

case "$1" in
  on)
    echo "alix-switch: on"
    ;;
  off)
    echo "alix-switch: off"
    ;;
  *)
    echo "Usage: $0 {on|off}"
    ;;
esac
exit 0