back
#!/bin/sh
  
command="`basename \"$0\"`"
fluxdir="$HOME/.fluxbox"
startup="$fluxdir/startup"

while [ $# -gt 0 ]; do
    case "$1" in
        -c|--config)
            if [ $# -lt 2 ]; then
                echo "$command:error, missing argument"
                exit 1
            fi
            shift
            startup=$1
        ;;
        -h|--help) cat < "$startup"
    fi
    chmod 644 "$startup"
    exec sh "$startup"
fi

questo non fa altro che lanciare il file ~/.fluxbox/startup. Se tale file non esiste verrà riavviato l'X server e ci si ritroverà di nuovo al kdm.

back