11 lines
178 B
Bash
Executable File
11 lines
178 B
Bash
Executable File
#!/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
|