Fixed REGEX sections in settings files
This commit is contained in:
parent
197a5a9160
commit
68a3b6d0c7
4 changed files with 7 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
|||
# Wizard Kit: Settings - Browsers
|
||||
|
||||
import re
|
||||
|
||||
# General
|
||||
DEFAULT_HOMEPAGE = 'https://www.google.com/'
|
||||
IE_GALLERY = 'https://www.microsoft.com/en-us/iegallery'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# Wizard Kit: Settings - Data
|
||||
|
||||
import ctypes
|
||||
import re
|
||||
|
||||
# FastCopy
|
||||
FAST_COPY_EXCLUDES = [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# Wizard Kit: Settings - Information
|
||||
|
||||
import re
|
||||
|
||||
# General
|
||||
REG_PROFILE_LIST = r'SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList'
|
||||
REG_SHELL_FOLDERS = r'Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# Wizard Kit: Settings - Sensors
|
||||
|
||||
import re
|
||||
|
||||
# General
|
||||
TEMP_LIMITS = {
|
||||
'GREEN': 60,
|
||||
|
|
|
|||
Loading…
Reference in a new issue