1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-06 05:44:11 +01:00

fixed crash bug on startup

added paste-launch on dock
This commit is contained in:
kojima
2001-09-03 22:31:30 +00:00
parent eecf75029f
commit 80fefd29e4
14 changed files with 211 additions and 93 deletions

View File

@@ -72,8 +72,14 @@ copy() {
source=$GLOBALDIR/plmenu.${LOCALE%.*}
elif [ -f $GLOBALDIR/plmenu.${LOCALE%_*} ]; then
source=$GLOBALDIR/plmenu.${LOCALE%_*}
if [ -f $GLOBALDIR/plmenu.${LOCALE%_*.*} ]; then
source=$GLOBALDIR/plmenu.${LOCALE%_*.*}
elif [ -f $GLOBALDIR/menu.${LOCALE} ]; then
source=$GLOBALDIR/menu.${LOCALE}
elif [ -f $GLOBALDIR/menu.${LOCALE%_*} ]; then
source=$GLOBALDIR/menu.${LOCALE%_*}
elif [ -f $GLOBALDIR/menu.${LOCALE%_*.*} ]; then
source=$GLOBALDIR/menu.${LOCALE%_*.*}
else
source=$GLOBALDIR/plmenu
fi