/
etc
/
X11
/
/etc/X11
mkdir
upload
Name
Size
Mode
Actions
app-defaults/
-
0755
rm
xkb/
-
0755
rm
Xreset.d/
-
0755
rm
Xresources/
-
0755
rm
Xsession.d/
-
0755
rm
rgb.txt
17394
0644
edit
dl
rm
Xreset
709
0755
edit
dl
rm
Xsession
3730
0755
edit
dl
rm
Xsession.options
265
0644
edit
dl
rm
Edit:
/etc/X11/Xreset
(709B)
#!/bin/sh # # /etc/X11/Xreset # # global Xreset file -- for use by display managers # $Id: Xsession 967 2005-12-27 07:20:55Z dnusinow $ set -e PROGNAME=Xreset SYSSESSIONDIR=/etc/X11/Xreset.d if [ ! -d "$SYSSESSIONDIR" ]; then # Nothing to do, exiting exit 0 fi # use run-parts to source every file in the session directory; we source # instead of executing so that the variables and functions defined above # are available to the scripts, and so that they can pass variables to each # other SESSIONFILES=$(run-parts --list $SYSSESSIONDIR) if [ -n "$SESSIONFILES" ]; then set +e for SESSIONFILE in $SESSIONFILES; do . $SESSIONFILE done set -e fi exit 0 # vim:set ai et sts=2 sw=2 tw=80:
Save
cmd:
run