summaryrefslogtreecommitdiff
path: root/.zprofile
diff options
context:
space:
mode:
authorfilip <“filip.rabiega@gmail.com”>2026-01-24 16:17:16 +0100
committerfilip <“filip.rabiega@gmail.com”>2026-01-24 16:17:16 +0100
commit3cfa3e667731e47a0facb2b19fec8598984368c6 (patch)
treebbbf4d7f1369145281ec132b6bfaf3e455912e3d /.zprofile
parent4b5ba652f773a84d34f5f65e7504ef06fde17eae (diff)
downloaddotfiles-3cfa3e667731e47a0facb2b19fec8598984368c6.tar.gz
dotfiles-3cfa3e667731e47a0facb2b19fec8598984368c6.tar.bz2
dotfiles-3cfa3e667731e47a0facb2b19fec8598984368c6.zip
change envvarrc, aliasrc, .profile
Diffstat (limited to '.zprofile')
-rw-r--r--.zprofile18
1 files changed, 0 insertions, 18 deletions
diff --git a/.zprofile b/.zprofile
deleted file mode 100644
index 8981dde..0000000
--- a/.zprofile
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/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"