all repos — fluxbox @ 9dc08a463c63d3d5c680d8dadf63a991cf9add7d

custom fork of the fluxbox windowmanager

util/startfluxbox.in (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# $Id: startfluxbox.in,v 1.2 2003/09/29 11:59:35 fluxgen Exp $
if [ -x ~/.fluxbox/startup ];then
    exec ~/.fluxbox/startup
elif [ -r ~/.fluxbox/startup ]; then
    exec sh ~/.fluxbox/startup
else
    if [ ! -d ~/.fluxbox ];then
	mkdir -p ~/.fluxbox/{backgrounds,styles,pixmaps}
    fi
    cp @pkgdatadir@/startup ~/.fluxbox
    chmod 755 ~/.fluxbox/startup
    exec ~/.fluxbox/startup
fi