xmonad/xmonad-start
Jens Petersen ae8d5aeaef - add application desktop file for gnome-session to find xmonad
so setting /desktop/gnome/session/required_components/windowmanager now works
- add xmonad-dynamic-link.patch to dynamically link customized xmonad
- move display of manpage for new users from xmonad.hs to xmonad-start
  and only display it when no ~/.xmonad/
- drop skel file and dont create ~/.xmonad by default
2010-09-12 22:43:11 +10:00

9 lines
133 B
Bash

#!/bin/sh
# display the manpage if there is no user configuration
if [ ! -d ~/.xmonad ]; then
xterm -e man xmonad
fi
exec xmonad