#!/bin/sh
# xresources by Jun Nishii <jun@vinelinux.org>
# Time-stamp: <2000-09-11 21:18:30 vine>

userresources=$HOME/.Xresources
sysresources=/etc/X11/xinit/Xresources

# backward compatibility
oldsysresources=/etc/X11/xinit/.Xresources

# merge in defaults
if [ -f "$oldsysresources" ]; then
    xrdb -merge "$oldsysresources"
fi

if [ -f "$sysresources" ]; then
    xrdb -merge "$sysresources"
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
fi

