You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made this script, very primitive, what it does is restart the lxpanel and creates a temporary file as a signal that the menu was activated, next time, delete that file.
/bin/lxdemenutoggle
#!/bin/sh
temp="/root/statusmenu.txt"if [ -e"$temp" ];then
rm "$temp"
pkill -kill lxpanel
nohup lxpanel 1>/dev/null &disownelseecho"1">"$temp"
lxpanelctl menu
fi
lxpanel version 0.10.1-2
Can you make
lxpanelctl menu
toggle the menu?So you can bind a key that pressed again hide it.
The text was updated successfully, but these errors were encountered: