11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
xrdb -remove
|
||
|
|
||
|
xResources="${XMD_USERDIR}/Xresources"
|
||
|
if [ -r "$xResources" ]; then
|
||
|
xrdb -cpp /usr/bin/cpp < "$xResources"
|
||
|
else
|
||
|
echo "!!! can't find $xResources"
|
||
|
fi
|