Files
evexpreview/Lib/DefaultJSON.ahk
g0nzo83 ace311634b Add new functions
Add Option to disable Thumbnails completly.
Add function to cycle through clients in char-selection screen.
Maintain Thumbnailposition if the clients goes into char-selection screen.

Co-Authored-By: cryonox <113977326+cryonox@users.noreply.github.com>
2025-04-21 12:42:52 +02:00

79 lines
2.5 KiB
AutoHotkey

default_JSON := "
(
{
"global_Settings": {
"CharScreenHotkey":"",
"DisableLiveThumbnail": 0,
"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"]
}
}
}
}
}
)"