env/dotfiles/xinitrc
Lucas 00112acf28 xinitrc: load Xdefaults into XRDB only when Xresources is present
This reallows for editing Xdefaults in runtime. This is not supported by
all programs, sadly. nsxiv is one of such programs.
2023-06-20 01:10:58 +00:00

37 lines
983 B
Bash
Executable File

#!/bin/sh
# env
# Written in 2019-2023 by Lucas
# CC0 1.0 Universal/Public domain - No rights reserved
#
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any
# warranty. You should have received a copy of the CC0 Public Domain
# Dedication along with this software. If not, see
# <http://creativecommons.org/publicdomain/zero/1.0/>.
if [ -r ~/.profile ]; then
. ~/.profile
fi
if command -v sct >/dev/null 2>&1; then
sct 3500
fi
setxkbmap -layout us -variant altgr-intl -option compose:caps
xset r rate 300 75
xset b off
if [ -r ~/.Xresources ]; then
xrdb -load ~/.Xdefaults
xrdb -merge ~/.Xresources
fi
if [ -r ~/code/lucas/env/utils/scripts/x-dpi-facesizes.sh ]; then
sh ~/code/lucas/env/utils/scripts/x-dpi-facesizes.sh
fi
: ${logdir:=~/local/var/log}
exec herbstluftwm -l >"$logdir/hlwm.out" 2>"$logdir/hlwm.err"