77 lines
2.5 KiB
AutoHotkey
77 lines
2.5 KiB
AutoHotkey
default_JSON := "
|
|
(
|
|
{
|
|
"global_Settings": {
|
|
"Suspend_Hotkeys_Hotkey": "",
|
|
"Global_Hotkeys": 1,
|
|
"LastUsedProfile": "Default",
|
|
"Minimize_Delay": 100,
|
|
"ThumbnailStartLocation": {
|
|
"x": 20,
|
|
"y": 20,
|
|
"width": 250,
|
|
"height": 140
|
|
},
|
|
"ThumbnailBackgroundColor":"#57504E",
|
|
"ThumbnailSnap": true,
|
|
"ThumbnailSnap_Distance": 20,
|
|
"ThumbnailMinimumSize": {
|
|
"width": 50,
|
|
"height": 50
|
|
}
|
|
},
|
|
"_Profiles": {
|
|
"Default": {
|
|
"Client Settings": {
|
|
"MinimizeInactiveClients": false,
|
|
"AlwaysMaximize": false,
|
|
"TrackClientPossitions": false,
|
|
"Dont_Minimize_Clients": [
|
|
"Example Name1",
|
|
"Example Name2",
|
|
"Example Name3"
|
|
]
|
|
},
|
|
"Thumbnail Settings": {
|
|
"ShowThumbnailTextOverlay": true,
|
|
"ThumbnailTextColor":"#FAC57A",
|
|
"ThumbnailTextSize": 12,
|
|
"ThumbnailTextFont": "Gill Sans MT",
|
|
"ThumbnailTextMargins": {
|
|
"x": 15,
|
|
"y": 5
|
|
},
|
|
"ShowClientHighlightBorder": true,
|
|
"ClientHighligtColor": "#E36A0D",
|
|
"ClientHighligtBorderthickness": 4,
|
|
"HideThumbnailsOnLostFocus": false,
|
|
"ThumbnailOpacity": 80,
|
|
"ShowThumbnailsAlwaysOnTop": true,
|
|
"ShowAllColoredBorders":0,
|
|
"InactiveClientBorderthickness": 2,
|
|
"InactiveClientBorderColor": "#8A8A8A"
|
|
},
|
|
"Hotkeys":[
|
|
{"Example Name1":"1"},
|
|
{"Example Name2":"ctrl & 1"},
|
|
{"Example Name3":"Xbutton1 & 1"},
|
|
{"Example Name4":"^XButton1 & 1"}
|
|
],
|
|
"Thumbnail Positions": {},
|
|
"Client Possitions": {},
|
|
"Thumbnail Visibility":{},
|
|
"Hotkey Groups":{},
|
|
"Custom Colors":{
|
|
"cColorActive": "0",
|
|
"cColors": {
|
|
"CharNames": ["Example Char"],
|
|
"TextColor": ["FFFFFF"],
|
|
"Bordercolor":["FFFFFF"],
|
|
"IABordercolor":["FFFFFF"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)"
|