From c21234dd9ccda347b4417aed5e943b07da7371c3 Mon Sep 17 00:00:00 2001
From: Salt <rehashedsalt@cock.li>
Date: Thu, 17 May 2018 15:58:15 -0500
Subject: [PATCH] xrdbupdate: Minor polish, logging

---
 xrdbupdate | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/xrdbupdate b/xrdbupdate
index 190fe74..d45edd5 100755
--- a/xrdbupdate
+++ b/xrdbupdate
@@ -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