Comment 7 for bug 900221

Revision history for this message
Sebastien Bacher (seb128) wrote :

Ok, I did the change and then reverted part of it, the script already has

"# Load resources
xresourcedir="/etc/X11/Xresources"
if [ -d "$xresourcedir" ]; then
    for file in $xresourcedir/*; do
        echo "Loading resource: $file"
        xrdb -nocpp -merge "$file"
    done
fi
xresourcefile="$HOME/.Xresources"
if [ -f "$xresourcefile" ]; then
    echo "Loading resource: $xresourcefile"
    xrdb -nocpp -merge "$xresourcefile"
fi"

so the resources are loaded, the x11 script do the same without the "nocpp", we could drop those in favor of the x11 script but nocpp is an optimization so we should probably fix the x11 version before doing that

are you sure your .Xresources is not loaded?