xrdbupdate: Minor polish, logging

This commit is contained in:
Salt 2018-05-17 15:58:15 -05:00
parent 64a3904866
commit c21234dd9c

View File

@ -1,5 +1,9 @@
#!/bin/sh
xrdb ~/.Xresources
if [ -f ~/.Xresources ]; then
xrdb ~/.Xresources
printf "Loading .Xresources...\n"
fi
for file in ~/.xrdb/*.xresources; do
printf "Merging in $file...\n"
xrdb -merge "$file"
done