Great minds...dolphin_oracle wrote: ↑Tue Oct 29, 2024 3:47 pm @Melber migth be good to include in app-categories for the rofi thing as well.
Just checked editing a few desktop files and adding an MXFB-Tools category to mxfb-appfinder, seems to work
Great minds...dolphin_oracle wrote: ↑Tue Oct 29, 2024 3:47 pm @Melber migth be good to include in app-categories for the rofi thing as well.
i_ri wrote: ↑Thu Oct 31, 2024 9:47 pm Hello Jerry3904
With the window open to mx-tools 24.10.01
clicking on "Tour" mx-tour does not open;
giving this message.
"mx-tools
The Window Manager found being used is Fluxbox
Unable to parse command line: Cannot parse integer value “mx-tour” for --active-tab"
same for kde
"mx-tools
The Window Manager found being used is KWin
Unable to parse command line: Cannot parse integer value “mx-tour” for --active-tab"
Code: Select all
# Loop through the array- the last number below has to match the number of entries on $array1. One too many is an ALL submenu. All is always nice.
# ALL drains the file; When there is ALL, then there be not "Other." Other will be on All.
for i in {1..16};
Code: Select all
# check if the file is not empty, create last submenu and populate it
if [ -s "$PREGLOBAL" ]
then
echo "[submenu] ($(gettext "Other"))" >> $FILE
while read p; do
echo $p >> $FILE
done <"$PREGLOBAL" ;
echo '[end]' >> $FILE
fi
Code: Select all
# test for live environment. remove remaster and live kernel update
[[ -d /live/linux ]] || sed -i '/{ mx-remastercc }/d' "$PREGLOBAL"
[[ -d /live/linux ]] || sed -i '/kernel-updater/d' "$PREGLOBAL"
# fix for repeated synaptic menu entry- first instance does not run, so, delete it:
sed -i '/{ synaptic }/d' "$PREGLOBAL"
Code: Select all
#modify menu to remove empty mx-tools entries
# sed -i '0,/\[submenu\] (MX-Live)/{//!b; :a; n; /\[end\]/d; ba;}' ~/.fluxbox/submenus/full_menu
# sed -i "/\[submenu\] (MX-Live)/d" ~/.fluxbox/submenus/full_menu
# sed -i '0,/\[submenu\] (MX-Maintenance)/{//!b; :a; n; /\[end\]/d; ba;}' ~/.fluxbox/submenus/full_menu
# sed -i "/\[submenu\] (MX-Maintenance)/d" ~/.fluxbox/submenus/full_menu
# sed -i '0,/\[submenu\] (MX-Setup)/{//!b; :a; n; /\[end\]/d; ba;}' ~/.fluxbox/submenus/full_menu
# sed -i "/\[submenu\] (MX-Setup)/d" ~/.fluxbox/submenus/full_menu
# sed -i '0,/\[submenu\] (MX-Software)/{//!b; :a; n; /\[end\]/d; ba;}' ~/.fluxbox/submenus/full_menu
# sed -i "/\[submenu\] (MX-Software)/d" ~/.fluxbox/submenus/full_menu
# sed -i '0,/\[submenu\] (MX-Utilities)/{//!b; :a; n; /\[end\]/d; ba;}' ~/.fluxbox/submenus/full_menu
# sed -i "/\[submenu\] (MX-Utilities)/d" ~/.fluxbox/submenus/full_menu
Code: Select all
#process MX-Tools categories in temp list
# sed -i "s/MX-Live/MX-Tools/" "$TEMPLIST"
sed -i "s/MX-Maintenance/MX-Tools/" "$TEMPLIST"
# sed -i "s/MX-Setup/MX-Tools/" "$TEMPLIST"
# sed -i "s/MX-Software/MX-Tools/" "$TEMPLIST"
# sed -i "s/MX-Utilities/MX-Tools/" "$TEMPLIST"
sed -i "s/Game/Office/" "$TEMPLIST"
sed -i "s/fBox/MXFB-Tools/" "$TEMPLIST"