all repos — fluxbox @ e7860bbd3d7dd7180d5aef15c16655cf883977ec

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