blob: b8957950f47469228d5a115b24e6687f8e1f0eaa (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# xinitrc runs automatically when you run startx.
: "${XPROFILE:=$HOME/.config/x11/xprofile}"
: "${XINPUTRC:=$HOME/.config/x11/xinputrc}"
[ -f "$XPROFILE" ] && . "$XPROFILE"
[ -f "$XINPUTRC" ] && . "$XINPUTRC"
exec dwm
|