dotfiles/dot_xprofile.tmpl

42 lines
741 B
Cheetah
Raw Normal View History

2024-04-14 18:41:15 -07:00
#!/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
2024-04-17 21:01:22 -07:00
# shellcheck disable=all
2024-04-21 10:07:47 -07:00
{{- if eq .chezmoi.hostname "archgirlie" -}}
2024-04-17 21:01:22 -07:00
"$HOME/.screenlayout/desktop.sh"
2024-04-21 10:07:47 -07:00
{{- end }}
2024-04-14 18:41:15 -07:00
2024-04-21 10:07:47 -07:00
{{ if eq .osid "linux-arch" -}}
2024-04-14 18:41:15 -07:00
copyq &
mopidy &
2024-04-21 10:07:47 -07:00
{{- end -}}