Concession: Move configs to here

This commit is contained in:
2018-10-21 02:33:31 -05:00
parent 5031125412
commit 78cb73f5ad
30 changed files with 544 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
#! /bin/sh
if [ -r ~/.Xresources ]; then
tsk_log "Loading .Xresources"
xrdb ~/.Xresources
fi
for file in $XDG_CONFIG_HOME/xrdb/*.xresources; do
if ! [ -r "$file" ]; then
tsk_log "Could not read file \"$file\"" 1
else
tsk_log "Merging in file \"$file\""
xrdb -merge "$file"
fi
done