This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/de/x/loadresources

51 lines
985 B
Plaintext
Raw Normal View History

2017-02-07 16:16:45 -06:00
#!/usr/bin/env bash
echo "xloadresources" >> "$HOME/.xstartup_log"
2018-09-25 14:19:35 -05:00
ENV_TYPE="${1}"
if [[ -z "$ENV_TYPE" ]]; then
ENV_TYPE=""
else
ENV_TYPE=".${ENV_TYPE}"
fi
sysresources="/etc/X11/xinit/.Xresources"
sysmodmap="/etc/X11/xinit/.Xmodmap"
2017-02-07 16:16:45 -06:00
userresources="$HOME/.Xresources"
usercolors="$HOME/.Xresources.colors"
2018-09-25 14:19:35 -05:00
userenv="$HOME/.Xresources${ENV_TYPE}.env"
2017-02-07 16:16:45 -06:00
usermodmap="$HOME/.Xmodmap"
if [ -f "$sysresources" ]; then
xrdb -merge "$sysresources" >/dev/null 2>&1
fi
if [ -f "$sysmodmap" ]; then
xmodmap "$sysmodmap" >/dev/null 2>&1
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources" >/dev/null 2>&1
fi
if [ -f "$usercolors" ]; then
xrdb -merge "$usercolors" >/dev/null 2>&1
fi
if [ -f "$userenv" ]; then
xrdb -merge "$userenv" >/dev/null 2>&1
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap" >/dev/null 2>&1
fi
if [ -d "/etc/X11/xinit/xinitrc.d" ] ; then
2018-10-31 14:40:57 -05:00
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
2017-02-07 16:16:45 -06:00
[ -x "$f" ] && . "$f"
done
unset f
fi