bin/xrdbupdate

10 lines
193 B
Bash
Executable File

#!/bin/sh
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