mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-07-20 09:32:59 -05:00
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/bin/sh
|
|
|
|
KIOSK_LAUNCHER=startx
|
|
|
|
TARGET_EXIST_FILE=/tmp/executed_once
|
|
|
|
if [ ! -e ${TARGET_EXIST_FILE} ]; then
|
|
touch ${TARGET_EXIST_FILE}
|
|
${KIOSK_LAUNCHER} ${HOME}/command_to_execute_once.sh
|
|
fi
|