add a help command line option

This commit is contained in:
darealshinji 2014-11-30 13:36:56 +01:00
parent df92b0cb92
commit c4bb51d0db

View File

@ -3,7 +3,12 @@
import sys, os import sys, os
if len(sys.argv) > 1: if len(sys.argv) > 1:
if (sys.argv[1] in ["clean", "clear", "reset", "--clean", "--clear", "--reset"]): if (sys.argv[1] in ["help", "h", "-?", "--help", "-h", "?"]):
print "mintMenu - the advanced MATE menu\n"
print "options:"
print " [--]help, [-]h Display this help."
print " [--]clean, [--]clear, [--]reset Restore settings to default.\n"
elif (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")
os.system("gsettings reset-recursively com.linuxmint.mintmenu.plugins.places") 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.applications")