blob: 95d14a87c5293953573ef9b58f73b1845394664a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# xinitrc runs automatically when you run startx.
if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then
. "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile"
else
. "$HOME/.xprofile"
fi
dbus-update-activation-environment --all
exec dbus-launch --exit-with-session dwm
|