blob: b93f2d0312a418d1ddf5d00b6221b699aa181655 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- 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
|