blob: b93f2d0312a418d1ddf5d00b6221b699aa181655 (
plain) (
tree)
|
|
# -*- shell-script -*-
# Set font settings and potentionally other resources
if test -r /etc/X11/xinit/Xresources; then
xrdb -merge /etc/X11/xinit/Xresources
fi
if test -r ~/.config/X11/xinit/Xresources; then
xrdb -merge ~/.config/X11/xinit/Xresources
fi
if test -r ~/.Xresources; then
xrdb -merge ~/.Xresources
fi
|