Files
dotfiles/user/.chezmoiscripts/run_after_dot_Xresources.sh.tmpl
T
Frank Zechert 181b339296 initial commit
2026-07-24 02:44:00 +02:00

16 lines
209 B
Cheetah

{{- if eq .chezmoi.os "linux" -}}
#!/usr/bin/env bash
#
# Update .Xresources
set -e
[ "${CHEZMOI}" -eq 1 ] || exit 1
if ! command -v xrdb > /dev/null; then
exit 0
fi
xrdb -merge ~/.Xresources
{{- end -}}