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