10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
if [ -r ~/.Xresources ]; then
|
|
xrdb ~/.Xresources
|
|
printf "Loading .Xresources...\n"
|
|
fi
|
|
for file in ~/.xrdb/*.xresources; do
|
|
printf "Merging in $file...\n"
|
|
xrdb -merge "$file"
|
|
done
|