blob: cd9313477e31ad4f38f041453241f8e2424c4927 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Filip's .profile.
# Set environmental variables
. /home/filipek/.config/shell/envvarrc
# 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"
|