12/07/13 06:18:37.46 .net
>>567
fluxbox-generate_menu はシェルスクリプトだから、スクリプトファイルを見れば分かるよ。
(どこにインストールしたかによるけど、/usr/bin か /usr/local/bin に有るはず)
そのファイルの、下の部分
# Read the menuconfig file if it exists or else create it.
# But not during install time, use envvar for sun
if [ ! "${INSTALL}" = Yes ]; then
if [ -r ${MENUCONFIG} ]; then
. ${MENUCONFIG}
else
if [ ! "$WHOAMI" = root ]; then # this is only for users. ← ここ
if touch ${MENUCONFIG}; then
cat << EOF > ${MENUCONFIG}
# This file is read by fluxbox-generate_menu. If you don't like a
.........
ここで、「root 以外なら」生成する、と条件付けられている。