mirror of https://gitlab.com/meliurwen/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
423 B
19 lines
423 B
#!/bin/sh
|
|
|
|
# This file is used by xinit and its wrapper startx.
|
|
# Display managers like xdm doesn't use this file at all
|
|
#
|
|
# See: man startx
|
|
# Use this script with the following commands:
|
|
# startx
|
|
# startx <program_full_path>
|
|
# startx $HOME/.xinitrc i3
|
|
# xinit -- $DISPLAY -nolisten tcp vt$XDG_VTNR
|
|
|
|
if [ -f $HOME/.Xresources ]; then
|
|
xrdb -merge $HOME/.Xresources
|
|
fi
|
|
|
|
# invoke local X session script
|
|
. $HOME/.xsession
|
|
|
|
|