blob: cc07d5eca3bdaba0b73f4fc35b89571992d4070d (
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="xmonad"
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
exec "$DESKTOP_SESSION"
|