update from Han
This commit is contained in:
parent
2bc5a3573e
commit
ff62b8edce
1 changed files with 8 additions and 1 deletions
|
@ -42,6 +42,7 @@ Options:
|
||||||
-a Display the authors of this script
|
-a Display the authors of this script
|
||||||
|
|
||||||
only for packagers:
|
only for packagers:
|
||||||
|
|
||||||
-p Package-datadir; default is /usr/local/share
|
-p Package-datadir; default is /usr/local/share
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
@ -131,6 +132,12 @@ if [ -z ${FILENAME} ]; then
|
||||||
FILENAME=${HOME}/.fluxbox/menu
|
FILENAME=${HOME}/.fluxbox/menu
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Can we actually create ${FILENAME}
|
||||||
|
if ! touch ${FILENAME}; then
|
||||||
|
echo "Fatal error: can't create $FILENAME" >/dev/stderr
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! -z ${FILENAME} ]; then
|
if [ ! -z ${FILENAME} ]; then
|
||||||
if [ -w ${FILENAME} ]; then
|
if [ -w ${FILENAME} ]; then
|
||||||
cp -f ${FILENAME} ${FILENAME}.bak
|
cp -f ${FILENAME} ${FILENAME}.bak
|
||||||
|
@ -166,7 +173,7 @@ fi
|
||||||
|
|
||||||
# a unix system without any terms. that's odd
|
# a unix system without any terms. that's odd
|
||||||
if [ -z "$DEFAULT_TERM" ];then
|
if [ -z "$DEFAULT_TERM" ];then
|
||||||
cat <<EOF
|
cat <<EOF>/dev/stderr
|
||||||
Error: I can't find any terminal-emulators in your path.
|
Error: I can't find any terminal-emulators in your path.
|
||||||
Please specify your favourite terminal with the -t option.
|
Please specify your favourite terminal with the -t option.
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue