dotfiles/sh/.config/sh/profile.d/autostartx.sh

6 lines
149 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2019-07-24 05:33:28 +00:00
if [ ! "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
exec startx "$XDG_CONFIG_HOME"/xresources/xinitrc
2019-07-24 05:33:28 +00:00
fi