summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.zprofile18
1 files changed, 18 insertions, 0 deletions
diff --git a/.zprofile b/.zprofile
new file mode 100644
index 0000000..8981dde
--- /dev/null
+++ b/.zprofile
@@ -0,0 +1,18 @@
+#!/bin/sh
+# Filip's .profile
+
+# Set environmental variables
+. /home/filipek/.config/shell/envvarrc
+
+# Autostart stuff on reboot
+autostart="remaps slstatus xcompmgr xhidecursor"
+
+for program in $autostart; do
+ pidof -sx "$program" || "$program" &
+done >/dev/null 2>&1
+
+# Set wallpaper
+xwallpaper --stretch "$HOME"/pix/wallpaper.jpg
+
+# Start graphical server on user's current tty if not already running.
+[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Xorg >/dev/null 2>&1 && exec startx "$XINITRC"