More modifications
This commit is contained in:
parent
73cbcbb3f5
commit
2b2680069f
8 changed files with 13 additions and 12 deletions
20
config/xinitrc
Executable file
20
config/xinitrc
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# ~/.xinitrc
|
||||
#
|
||||
# Executed by xinit (startx)
|
||||
|
||||
echo ~/.xinitrc
|
||||
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/*; do
|
||||
[ -x "$f" ] && . "$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
[ -f /etc/xprofile ] && . /etc/xprofile
|
||||
[ -f ~/.xprofile ] && . ~/.xprofile
|
||||
|
||||
[ -f ~/.xsession ] && . ~/.xsession
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue