mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
a892d1b73f
New option in Settings.ini New console argument Ability to set theme as default New theme "ocean"
28 lines
736 B
Python
28 lines
736 B
Python
# Primitive config
|
|
import configparser
|
|
import os
|
|
|
|
|
|
def createConfig(path="Settings.ini"):
|
|
config = configparser.ConfigParser()
|
|
config.add_section("Settings")
|
|
config.add_section("Defaults")
|
|
config.set("Settings", "Language", "en")
|
|
config.set("Settings", "DidBackground", "True")
|
|
config.set("Defaults", "webPage", "Facebook")
|
|
config.set("Defaults", "additionalOption", "1")
|
|
config.set("Defaults", "theme", "anaglyph")
|
|
with open(path, 'w') as configFile:
|
|
config.write(configFile)
|
|
|
|
|
|
def readConfig(path="Settings.ini"):
|
|
config = configparser.ConfigParser()
|
|
config.read(path)
|
|
return config
|
|
|
|
|
|
def ifSettingsNotExists():
|
|
if not os.path.exists("Settings.ini"):
|
|
createConfig()
|