ae8d5aeaef
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
9 lines
133 B
Bash
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
|