blob: 8981ddeffa4d614440623cb2dae2421362517aae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"
|