16 lines
759 B
Python
Executable File
16 lines
759 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys, os
|
|
|
|
if len(sys.argv) > 1:
|
|
if (sys.argv[1] in ["clean", "clear", "reset", "--clean", "--clear", "--reset"]):
|
|
os.system("gsettings reset-recursively com.linuxmint.mintmenu")
|
|
os.system("gsettings reset-recursively com.linuxmint.mintmenu.plugins.places")
|
|
os.system("gsettings reset-recursively com.linuxmint.mintmenu.plugins.applications")
|
|
os.system("gsettings reset-recursively com.linuxmint.mintmenu.plugins.recent")
|
|
os.system("gsettings reset-recursively com.linuxmint.mintmenu.plugins.system_management")
|
|
os.system("rm -rf ~/.linuxmint/mintMenu")
|
|
print "All mintMenu settings are now restored to default"
|
|
else:
|
|
os.system("/usr/lib/linuxmint/mintMenu/mintMenu.py")
|