mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
12 lines
198 B
Bash
12 lines
198 B
Bash
#!/bin/bash
|
|
|
|
COMMAND="chromium-browser --noerrdialogs --kiosk --incognito /assets/presentation/slideshow.html"
|
|
|
|
if [ $EUID == 0 ]; then
|
|
su tooloop -c "$COMMAND" &
|
|
else
|
|
$COMMAND &
|
|
fi
|
|
|
|
exit 0
|