mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
10 lines
155 B
Bash
10 lines
155 B
Bash
#!/bin/bash
|
|
|
|
IDLETIME=60
|
|
RESET_COMMAND="/bin/bash /assets/presentation/reset-kiosk.sh"
|
|
|
|
$RESET_COMMAND
|
|
xidlerun -t $IDLETIME -c "$RESET_COMMAND" &
|
|
|
|
exit 0
|