This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.config/X11/xinitrc

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-02-13 17:28:59 +01:00
#!/bin/sh
userresources=$HOME/.config/X11/Xresources
usermodmap=$HOME/.config/X11/Xmodmap
# merge in defaults and keymaps
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
2021-02-14 21:59:55 +01:00
if ! pgrep -f mpd > /dev/null
2021-02-13 17:28:59 +01:00
then
mpd &
fi
picom -b &
# $HOME/.local/bin/garbage/off_touch &
export XDG_SESSION_TYPE=x11
export PATH=$HOME/.local/bin/X11:$PATH
2021-02-15 23:35:54 +01:00
# $HOME/.config/emacs/bin/doom env
2021-02-13 17:28:59 +01:00
2021-03-06 20:22:26 +01:00
session=${1:-exwm}
2021-02-13 17:28:59 +01:00
case $session in
bspwm ) exec bspwm ;;
spectrwm ) exec spectrwm -c ~/.config/spectrwm/spectrwm-nord.conf ;;
exwm )
2021-04-12 18:00:49 +02:00
# In case of using seatd. Flatpak apps won't work
if [ -z "${XDG_RUNTIME_DIR}" ]
then
2021-04-12 18:00:49 +02:00
userid=$(id -u ${USER})
export XDG_RUNTIME_DIR="$(mktemp -d /tmp/${userid}-runtime-XXXXXX)"
if [ ! -d "${XDG_RUNTIME_DIR}" ]
then
2021-04-12 18:00:49 +02:00
mkdir -p "${XDG_RUNTIME_DIR}"
chmod 0700 "${XDG_RUNTIME_DIR}"
fi
2021-04-12 18:00:49 +02:00
# Assure we use seatd
# export LIBSEAT_BACKEND=seatd
fi
exec dbus-run-session emacs -mm --debug-init -l ~/.config/doom/exwm.el > "${XDG_RUNTIME_DIR}/exwm-$(date "+%Y-%m-%d").log" 2>&1 ;;
2021-02-13 17:28:59 +01:00
* ) exec "$1" ;;
esac