summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulian Xhokaxhiu2016-09-12 15:46:51 +0200
committerJulian Xhokaxhiu2016-09-12 15:46:51 +0200
commit062409eea8f1e7c8a1688c0e640c7596674df795 (patch)
tree3d31ce7819e06ae47d1a8f8618f09bcb79244bf2
parent118391e2766b6b56629fcf052a1342166411bdd4 (diff)
downloadaur-062409eea8f1e7c8a1688c0e640c7596674df795.tar.gz
These file are no more needed
-rw-r--r--chromium-fullscreen.service14
-rw-r--r--chromium-fullscreen.sh17
2 files changed, 0 insertions, 31 deletions
diff --git a/chromium-fullscreen.service b/chromium-fullscreen.service
deleted file mode 100644
index 32ab2f1af04d..000000000000
--- a/chromium-fullscreen.service
+++ /dev/null
@@ -1,14 +0,0 @@
-[Unit]
-Description=Systemd service and user to run Chromium in fullscreen mode
-
-[Service]
-User=chromium
-Group=chromium
-PAMName=login
-Type=simple
-ExecStart=/bin/bash /home/chromium/.systemd/chromium-fullscreen.sh
-TimeoutStopSec=30
-Restart=always
-
-[Install]
-WantedBy=multi-user.target
diff --git a/chromium-fullscreen.sh b/chromium-fullscreen.sh
deleted file mode 100644
index 550814b57dc9..000000000000
--- a/chromium-fullscreen.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-# The URL variuabile where we will store the final address to open
-URL=''
-
-# This is usually the case of a Raspberry Pi-like installation ( arm platforms )
-if [ -f "/boot/chromium-autostart-url.txt" ]; then
- URL=`cat /boot/chromium-autostart-url.txt`
-# This is probably the case of generic setups on x86 platforms
-elif [ -f "/home/chromium/chromium-autostart-url.txt" ]; then
- URL=`cat /home/chromium/chromium-autostart-url.txt`
-fi
-
-if [ ! -z "$URL" ]; then
- # Autostart Chromium in Fullscreen mode
- /usr/bin/xinit /usr/bin/chromium --desktop-window-1080p --kiosk "$URL"
-else
- echo -e "==> [ERROR] No 'chromium-autostart-url.txt' file found."
-fi