all repos — fluxbox @ 90cc378f2a0e6e6c493db32234ecab17e7773378

custom fork of the fluxbox windowmanager

fixed issues introduced from last change (it was me :)
mathias mathias
commit

90cc378f2a0e6e6c493db32234ecab17e7773378

parent

eb9161016b508bac85a89cfb50c9cb61f6106f2a

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M util/startfluxbox.inutil/startfluxbox.in

@@ -2,7 +2,7 @@ #!/bin/sh

# $Id$ command="`basename \"$0\"`" -startup="~/.fluxbox/startup" +startup=~/.fluxbox/startup while [ $# -gt 0 ]; do case "$1" in

@@ -32,7 +32,7 @@ if [ ! -d ~/.fluxbox ]; then

mkdir -p ~/.fluxbox/{backgrounds,styles,pixmaps} fi if [ ! -r "$startup" ]; then - cat << EOF > "$startup" + ( cat << EOF # fluxbox startup-script: # # Lines starting with a '#' are ignored.

@@ -83,6 +83,7 @@ exec @pkgbindir@/fluxbox

# or if you want to keep a log: # exec @pkgbindir@/fluxbox -log ~/.fluxbox/log EOF + ) > "$startup" fi chmod 755 "$startup" exec "$startup"