mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
12 lines
170 B
Bash
12 lines
170 B
Bash
#!/bin/bash
|
|
|
|
. /etc/xsce/xsce.env
|
|
|
|
if [ "$OS" = "Debian" ] || [ "$OS" = "raspbian" ]; then
|
|
/bin/sleep 3
|
|
/sbin/reboot
|
|
else
|
|
/usr/bin/sleep 3
|
|
/usr/sbin/reboot
|
|
fi
|
|
exit 0
|