I get pissed off when I install a program, and my whole Fluxbox menu gets messed up. So I made this python script..
#!/usr/bin/python
import os
print "Fluxbox Menu Mover"
if (os.path.exists("/home/stefan/fluxbox-menu-backup") != True):
print "Fluxbox Menu backup file does not exist."
else:
os.system("sudo cp /home/stefan/fluxbox-menu-backup /etc/X11/fluxbox/fluxbox-menu")
if(os.path.exists("/etc/X11/fluxbox/fluxbox-menu") != True):
print "Menu copy failed."
else:
print "Menu copy successful."
So... yeah.
What is the name of this style ?
love it :)
rmtdev 1 month ago in playlist linux wndow mngrs not seen
Messed up how? You should be editing /home/stefan/.fluxbox/menu
instead of the
/etc/X11/fluxbox/flux box-menu.
entikryst 2 years ago