blob: 77b5d950cfef63c41247826edf45bf73a99867e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# This file is sourced only when starting X11 session with startx.
# Otherwise, display manager should set up this variable and
# source the xprofile.
export DESKTOP_SESSION="dwm"
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
exec "$DESKTOP_SESSION"
|