.config
bspwm
conky
dtfscripts
devices
services
tasks
kill_krunner.sh
monitorset.sh
xrdbupdate.sh
common_service.sh
common_task.sh
wmstartup.sh
dunst
plasma-workspace
polybar
rofi
sxhkd
xob
xrdb
compton.conf
kglobalshortcutsrc
konsolerc
kscreenlockerrc
ksplashrc
redshift.conf
startupconfig
.local
.ssh
.themes
.vim
.bashrc
.gitmodules
.kshrc
.profile
.vimrc
.zshrc
15 lines
291 B
Bash
Executable File
15 lines
291 B
Bash
Executable File
#! /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\""
|
|
else
|
|
tsk_log "Merging in file \"$file\""
|
|
xrdb -merge "$file"
|
|
fi
|
|
done
|
|
|