blob: 907b6b664ce716f3ae32b92d5e6f22461a7c7709 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/usr/bin/env sh
# xinitrc file, used by all X sessions started by xinit (startx)
# shellcheck source=/dev/null
[ -r ~/.config/X11/xprofile ] && . ~/.config/X11/xprofile &
if [ "$(uname -n)" != "tau" ]; then
exec bspwm
fi
|