Hi:
1-the full debian menu: the script to generate this is over at viewtopic.php?f=143&t=60848 , you can download it from https://github.com/jerry3904/mxfb-goodi ... -generator
2-The "XFCE menu"- I discussed it on the forum, but, long story short:
The right click on tint2's "MX start" icon points to this script (that toggles the "menu" on/off):
Code: Select all
#! /bin/bash
# run xlsclients to see if appfinder is running
current_windows=$(xlsclients)
if [[ ${current_windows} != *"xfce4-appfinder"* ]];then
echo "appfinder is not running, starting it" & xfce4-appfinder ; exit
else
echo appfinder is already running, checking if it has focus
#check if appfinder is active:
app_name="xfce4-appfinder"
focused_app=$(cat /proc/$(xdotool getwindowpid $(xdotool getwindowfocus))/comm)
if [ "$focused_app" = "$app_name" ]; then
echo "appfinder has focus, killing it." & killall xfce4-appfinder
else
echo "appfinder is running but has no focus, changing focus to it" & killall xfce4-appfinder && xfce4-appfinder
fi
fi
Code: Select all
[app] (name=xfce4-appfinder) (class=Xfce4-appfinder)
[Dimensions] {55% 84%}
[Position] (UPPERLEFT) {0% 16%}
[Deco] {NONE}
[Hidden] {yes}
[end]