desc='''Chicago95 Plus! is a python script that can parse Windows 95/98/ME/XP theme files and create new Chicago95 themes. Chicago95 Plus! supports Icons, Cursors, Fonts, Wallpapers, Sounds and Theme colors! Use this against themes you can find on ThemeWorld or any site that have Microsoft Plus! Themes!\nThis script can be called from any folder, execute it and provide it the path to a theme file (e.g. %(prog)s /home/bgates/Wicked/Wicked.theme) and your new theme will be created!'''
arg_parser.add_argument('-d','--debug',help="Print lots of debugging statements",action="store_const",dest="loglevel",const=logging.DEBUG,default=logging.WARNING)
arg_parser.add_argument("--noinstall",help="Do not place folders nor change theme",action="store_true")
arg_parser.add_argument("--info",help="Prints the json conversion of the theme file",action="store_true")
arg_parser.add_argument('-c','--colors',help='How many colors before skipping Inkscape fix/merge for SVGs. Set to 1 to speed up conversion. WARNING: This may result in transparent icons!',default=32,type=int)
arg_parser.add_argument('-o','--overlap',help='Pixel overlap for SVG icons',default=1,type=int)
arg_parser.add_argument('-s','--squaresize',help='Square size for SVG icons',default=20,type=int)
arg_parser.add_argument('--cursorfolder',help="Chicago95 cursor folder to convert to new theme",default=str(Path.home())+"/.icons/Chicago95_Cursor_Black")
arg_parser.add_argument('--themefolder',help="Chicago95 theme folder to convert to new theme",default=str(Path.home())+"/.themes/Chicago95")
arg_parser.add_argument('--iconsfolder',help="Chicago95 icons folder to convert to new theme",default=str(Path.home())+"/.icons/Chicago95")
arg_parser.add_argument("--installdir",help="Folder to create new theme in, default is current working directory",default=os.getcwd())
arg_parser.add_argument("--logfile",help="Filename for debug logging",default="chicago95_plus.log")
arg_parser.add_argument("theme_file",help="Microsoft Windows 95/98/ME .theme file")