bin/xrdbupdate

10 lines
193 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -r ~/.Xresources ]; then
2018-05-17 15:58:15 -05:00
xrdb ~/.Xresources
printf "Loading .Xresources...\n"
fi
2018-05-17 15:52:42 -05:00
for file in ~/.xrdb/*.xresources; do
2018-05-17 15:58:15 -05:00
printf "Merging in $file...\n"
xrdb -merge "$file"
done