🔧 feat(x): Tweak xprofile
This commit is contained in:
parent
2670994193
commit
249c6847ed
1 changed files with 30 additions and 0 deletions
30
.xprofile
30
.xprofile
|
@ -1,3 +1,33 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
sysresources=/etc/X11/xinit/.Xresources
|
||||||
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||||
|
userresources=$HOME/.Xresources
|
||||||
|
usermodmap=$HOME/.Xmodmap
|
||||||
|
|
||||||
|
if [ -f "$sysresources" ]; then
|
||||||
|
xrdb -merge "$sysresources"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$sysmodmap" ]; then
|
||||||
|
xmodmap "$sysmodmap"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$userresources" ]; then
|
||||||
|
xrdb -merge "$userresources"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$usermodmap" ]; then
|
||||||
|
xmodmap -merge "$usermodmap"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||||
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh; do
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
[ -x "$f" ] && . "$f"
|
||||||
|
done
|
||||||
|
|
||||||
|
unset f
|
||||||
|
fi
|
||||||
|
|
||||||
"$HOME/.screenlayout/multihead.sh"
|
"$HOME/.screenlayout/multihead.sh"
|
||||||
|
|
Loading…
Reference in a new issue