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