summaryrefslogtreecommitdiff
path: root/configs/profile/root-image/etc/skel/.config/autostart
diff options
context:
space:
mode:
Diffstat (limited to 'configs/profile/root-image/etc/skel/.config/autostart')
-rwxr-xr-xconfigs/profile/root-image/etc/skel/.config/autostart/autostart-lxde.sh4
-rw-r--r--configs/profile/root-image/etc/skel/.config/autostart/autostart.desktop5
-rwxr-xr-xconfigs/profile/root-image/etc/skel/.config/autostart/autostart.sh10
3 files changed, 19 insertions, 0 deletions
diff --git a/configs/profile/root-image/etc/skel/.config/autostart/autostart-lxde.sh b/configs/profile/root-image/etc/skel/.config/autostart/autostart-lxde.sh
new file mode 100755
index 0000000..a65c467
--- /dev/null
+++ b/configs/profile/root-image/etc/skel/.config/autostart/autostart-lxde.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+
+which octopi-notifier && sleep 10 && octopi-notifier &
diff --git a/configs/profile/root-image/etc/skel/.config/autostart/autostart.desktop b/configs/profile/root-image/etc/skel/.config/autostart/autostart.desktop
new file mode 100644
index 0000000..0866f65
--- /dev/null
+++ b/configs/profile/root-image/etc/skel/.config/autostart/autostart.desktop
@@ -0,0 +1,5 @@
+[Desktop Entry]
+Type=Application
+Name=Parabola Autostart Script
+Exec=/home/parabola/.config/autostart/autostart.sh
+Terminal=false
diff --git a/configs/profile/root-image/etc/skel/.config/autostart/autostart.sh b/configs/profile/root-image/etc/skel/.config/autostart/autostart.sh
new file mode 100755
index 0000000..ef7b766
--- /dev/null
+++ b/configs/profile/root-image/etc/skel/.config/autostart/autostart.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+
+[ -f ~/welcome.txt ] && zenity --question --width=620 \
+ --title="_EDITION_TITLE_" \
+ --text="$(cat ~/welcome.txt)" \
+ --ok-label="OK" \
+ --cancel-label="Don't show this again" || rm ~/welcome.txt &
+
+/home/parabola/.config/autostart/autostart-lxde.sh &