summaryrefslogtreecommitdiff
path: root/.scripts/set_xresources.sh
blob: a51650b4b604ce4307e0c80f5a33a1331f99da21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

#find ~/.config/ \
#	-mindepth 2 -maxdepth 2 \
#	-type f -iname "*.xdefaults" \
#	-exec xrdb -merge {} \;

# It is faster to concat first and execute xrdb only once.
find ~/.config/ \
	-mindepth 2 -maxdepth 2 \
	-type f -iname "*.xdefaults" \
	-exec cat {} + | xrdb -merge