├── .gitignore ├── filter.jq ├── .github ├── pull_request_template.md └── workflows │ └── validate-schema.yaml ├── justfile ├── LICENSE ├── applications.mac.json ├── README.md ├── applications.yaml └── applications.json /.gitignore: -------------------------------------------------------------------------------- 1 | overrides.yaml 2 | /.vscode 3 | /.vs 4 | -------------------------------------------------------------------------------- /filter.jq: -------------------------------------------------------------------------------- 1 | if type == "object" then 2 | to_entries | sort_by(.key|ascii_upcase) | from_entries 3 | else 4 | . 5 | end 6 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | set windows-shell := ["pwsh.exe", "-NoLogo", "-Command"] 2 | 3 | sort: 4 | jq -f filter.jq .\applications.json > .\applications.sorted.json 5 | mv .\applications.sorted.json .\applications.json -Force 6 | 7 | 8 | sort-mac: 9 | jq -f filter.jq applications.mac.json > applications.mac.sorted.json 10 | mv applications.mac.sorted.json applications.mac.json 11 | -------------------------------------------------------------------------------- /.github/workflows/validate-schema.yaml: -------------------------------------------------------------------------------- 1 | name: Validate JSON Schema 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | validate-json-schema: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Checkout Repository 10 | uses: actions/checkout@v4 11 | 12 | - name: Download Schema 13 | run: wget https://raw.githubusercontent.com/LGUG2Z/komorebi/refs/heads/master/schema.asc.json 14 | 15 | - name: Validate JSON 16 | uses: GrantBirki/json-yaml-validate@v3 17 | with: 18 | json_schema: schema.asc.json 19 | files: application.json 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Jade Iqbal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /applications.mac.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/master/schema.asc.json", 3 | "Archive Utility": { 4 | "ignore": [ 5 | [ 6 | { 7 | "kind": "Exe", 8 | "id": "Archive Utility", 9 | "matching_strategy": "Equals" 10 | } 11 | ] 12 | ] 13 | }, 14 | "Control Center": { 15 | "ignore": [ 16 | [ 17 | { 18 | "kind": "Exe", 19 | "id": "Control Center", 20 | "matching_strategy": "Equals" 21 | } 22 | ] 23 | ] 24 | }, 25 | "Finder": { 26 | "ignore": [ 27 | [ 28 | { 29 | "kind": "Exe", 30 | "id": "Finder", 31 | "matching_strategy": "Equals" 32 | }, 33 | { 34 | "kind": "Title", 35 | "id": "Info", 36 | "matching_strategy": "EndsWith" 37 | } 38 | ], 39 | [ 40 | { 41 | "kind": "Exe", 42 | "id": "Finder", 43 | "matching_strategy": "Equals" 44 | }, 45 | { 46 | "kind": "Title", 47 | "id": "Copy", 48 | "matching_strategy": "Equals" 49 | } 50 | ] 51 | ] 52 | }, 53 | "Installer": { 54 | "ignore": [ 55 | { 56 | "kind": "Exe", 57 | "id": "Installer", 58 | "matching_strategy": "Equals" 59 | } 60 | ] 61 | }, 62 | "MobileDeviceUpdater": { 63 | "ignore": [ 64 | { 65 | "kind": "Exe", 66 | "id": "MobileDeviceUpdater", 67 | "matching_strategy": "Equals" 68 | } 69 | ] 70 | }, 71 | "RustRover": { 72 | "ignore": [ 73 | [ 74 | { 75 | "kind": "Exe", 76 | "id": "java", 77 | "matching_strategy": "Equals" 78 | }, 79 | { 80 | "kind": "Title", 81 | "id": "Update", 82 | "matching_strategy": "Equals" 83 | } 84 | ], 85 | [ 86 | { 87 | "kind": "Exe", 88 | "id": "RustRover", 89 | "matching_strategy": "Equals" 90 | }, 91 | { 92 | "kind": "Title", 93 | "id": "–", 94 | "matching_strategy": "DoesNotContain" 95 | } 96 | ] 97 | ] 98 | }, 99 | "SecurityAgent": { 100 | "ignore": [ 101 | { 102 | "kind": "Exe", 103 | "id": "SecurityAgent", 104 | "matching_strategy": "Equals" 105 | } 106 | ] 107 | }, 108 | "System Information": { 109 | "ignore": [ 110 | { 111 | "kind": "Exe", 112 | "id": "System Information", 113 | "matching_strategy": "Equals" 114 | } 115 | ] 116 | }, 117 | "System Settings": { 118 | "ignore": [ 119 | { 120 | "kind": "Exe", 121 | "id": "System Settings", 122 | "matching_strategy": "Equals" 123 | } 124 | ] 125 | }, 126 | "Tailscale": { 127 | "ignore": [ 128 | [ 129 | { 130 | "kind": "Exe", 131 | "id": "Tailscale", 132 | "matching_strategy": "Equals" 133 | }, 134 | { 135 | "kind": "Title", 136 | "id": "Software Update", 137 | "matching_strategy": "Equals" 138 | } 139 | ], 140 | [ 141 | { 142 | "kind": "Exe", 143 | "id": "Tailscale", 144 | "matching_strategy": "Equals" 145 | }, 146 | { 147 | "kind": "Title", 148 | "id": "Updating Tailscale", 149 | "matching_strategy": "Equals" 150 | } 151 | ] 152 | ] 153 | }, 154 | "Zen": { 155 | "ignore": [ 156 | [ 157 | { 158 | "kind": "Exe", 159 | "id": "Zen", 160 | "matching_strategy": "Equals" 161 | }, 162 | { 163 | "kind": "Title", 164 | "id": "File Upload", 165 | "matching_strategy": "Equals" 166 | } 167 | ], 168 | [ 169 | { 170 | "kind": "Exe", 171 | "id": "Zen", 172 | "matching_strategy": "Equals" 173 | }, 174 | { 175 | "kind": "Title", 176 | "id": "Enter name of file to save to", 177 | "matching_strategy": "StartsWith" 178 | } 179 | ], 180 | [ 181 | { 182 | "kind": "Exe", 183 | "id": "Zen", 184 | "matching_strategy": "Equals" 185 | }, 186 | { 187 | "kind": "Title", 188 | "id": "Picture-in-Picture", 189 | "matching_strategy": "Equals" 190 | } 191 | ] 192 | ] 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Komorebi Application-Specific Configuration 2 | 3 | The Komorebi Application-Specific Configuration (ASC) was originally created as 4 | a community-driven repository for users to share application-specific 5 | [komorebi](https://github.com/LGUG2Z/komorebi) configuration options, with the 6 | goal of creating a tiling window management experience on Windows that "just 7 | works" for as many applications as possible. 8 | 9 | As komorebi has grown in popularity, the vast majority of the most popular 10 | Windows applications have come to be covered in this repository, and these 11 | configuration options have even come to be used in [other 12 | projects](https://dalyisaac.github.io/Whim/script/core/filtering.html?q=komorebi#built-in-filters). 13 | 14 | ## Schema 15 | 16 | ### v1 17 | 18 | The first version of the ASC was `applications.yaml`. The schema for v1 was 19 | created long before komorebi had support for different matching strategies or 20 | composite rules. 21 | 22 | v1 is considered deprecated as of 01 November 2024 and no further changes will 23 | be accepted. However, the file will remain in this repository to ensure that 24 | nothing breaks for existing users who might rely on the existence of the file in 25 | this repository. 26 | 27 | ### v2 28 | 29 | The second version of the ASC is `applications.json`. It will be the default 30 | format from `komorebi` v0.1.30 onwards. The schema for v2 takes into account how 31 | `komorebi.json`'s schema has evolved and aims to make it as easy as possible for 32 | window and application matching rules to be copied and pasted from one file to 33 | the other. 34 | 35 | There is a [JSON 36 | Schema](https://github.com/LGUG2Z/komorebi/blob/master/schema.asc.json) 37 | definition available for v2 that can be generated using the `komorebic 38 | application-specific-configuration-schema` command, which is used to power 39 | auto-completions. 40 | 41 | The v2 schema allows use of the full range of matching strategies and composite 42 | rules to identify application windows. The full range of application rules that 43 | can be applied are: 44 | 45 | - `ignore` - Rules to ignore specific windows 46 | - `manage` - Rules to forcibly manage specific windows 47 | - `floating` - Rules to manage specific windows as floating windows (komorebi v0.1.30+) 48 | - `transparency_ignore` - Rules to ignore specific windows from the transparency feature 49 | - `tray_and_multi_window` - Rules to identify applications which minimize to the tray or have multiple windows 50 | - `layered` - Rules to identify applications which have the `WS_EX_LAYERED` Extended Window Style 51 | - `object_name_change` - Rules to identify applications which send the `EVENT_OBJECT_NAMECHANGE` event on launch 52 | - `slow_application` - Rules to identify applications which are slow to send initial event notifications 53 | 54 | #### Should I use a `floating` rule or an `ignore` rule? 55 | 56 | You should use `ignore` rules when: 57 | 58 | - Targeting a ghost window 59 | - Targeting a popup which only exists to be immediately clicked away (confirmations etc.) 60 | 61 | You should use `floating` rules when: 62 | 63 | - Targeting a popup or a popout window which is interacted with for a while before being closed 64 | - Targeting a popup or a popout window which is proactively toggled by the user for interaction 65 | 66 | Windows targeted with `ignore` rules will not be managed at all by komorebi. In 67 | practice, this means if you leave these windows open, they will be visible on 68 | all komorebi workspaces, because komorebi is never touching them. 69 | 70 | Windows targeted with `floating` rules will be managed by komorebi and scoped to 71 | the workspace they are launched on or moved to. 72 | 73 | ## Contributing 74 | 75 | If you would like to propose a new application configuration rule for 76 | consideration, please open an issue with the rules you are proposing in a code 77 | block rather than a PR. 78 | 79 | When submitting a PR, make sure you have `jq` and `just` installed, and run 80 | `just sort` to ensure that all entries in `applications.json` are sorted 81 | correctly. 82 | 83 | ## FAQs 84 | 85 | ### I am a new komorebi user and I want to add different rules for various applications 86 | 87 | Do not edit the `applications.json` or `applications.yaml` file; edit your 88 | `komorebi.json` file instead. 89 | 90 | Changes to the `applications.[yaml|json]` files are not hot-reloaded and applied, 91 | and any changes you make will get blown away the next time you run `komorebic 92 | fetch-app-specific-configuration` to fetch the latest version. 93 | 94 | ### I am a komorebi user and this repo floats an application which I want to be tiled 95 | 96 | Do not submit a PR to this repo; to guarantee backwards compatibility for all 97 | consumers of this repository, it is incredibly unlikely that such a PR will be 98 | accepted. 99 | 100 | You should add a force manage rule in your `komorebi.json` file, which will 101 | override the float rule in this repository. Refer to the [Force Manage 102 | Windows](https://lgug2z.github.io/komorebi/common-workflows/force-manage-windows.html) 103 | tutorial on the documentation website. 104 | 105 | ### I am a komorebi user and I want to add an ignore rule for an application 106 | 107 | You should add the ignore rule in your `komorebi.json` file. Refer to the 108 | [Ignore Windows](https://lgug2z.github.io/komorebi/common-workflows/ignore-windows.html) 109 | tutorial on the documentation website. 110 | 111 | If you believe that this is a rule which should be set as default for all users, 112 | please open an issue and explain your rationale. 113 | 114 | ### I am a komorebi user and I want to add a manage rule for an application 115 | 116 | You should add the manage rule in your `komorebi.json` file. Refer to the 117 | [Force Manage Windows](https://lgug2z.github.io/komorebi/common-workflows/force-manage-windows.html) 118 | tutorial on the documentation website. 119 | 120 | If you believe that this is a rule which should be set as default for all users, 121 | please open an issue and explain your rationale. 122 | 123 | ### I am a komorebi user and I want to identify an application which minimizes to the tray or has multiple windows 124 | 125 | You should add the tray and multi-window application rule in your 126 | `komorebi.json` file. Refer to the 127 | [Tray and Multi-Window Applications](https://lgug2z.github.io/komorebi/common-workflows/tray-and-multi-window-applications.html) 128 | tutorial on the documentation website. 129 | 130 | If you believe that this is a rule which should be set as default for all users, 131 | please open an issue and explain your rationale. 132 | -------------------------------------------------------------------------------- /applications.yaml: -------------------------------------------------------------------------------- 1 | - name: 1Password 2 | identifier: 3 | kind: Exe 4 | id: 1Password.exe 5 | matching_strategy: Equals 6 | float_identifiers: 7 | - kind: Exe 8 | id: 1Password.exe 9 | matching_strategy: Equals 10 | - name: Ableton Live 11 | identifier: 12 | kind: Class 13 | id: Ableton Live Window Class 14 | matching_strategy: Legacy 15 | float_identifiers: 16 | - kind: Class 17 | id: AbletonVstPlugClass 18 | matching_strategy: Legacy 19 | - kind: Class 20 | id: Vst3PlugWindow 21 | matching_strategy: Legacy 22 | - name: Adobe Creative Cloud 23 | identifier: 24 | kind: Class 25 | id: CreativeCloudDesktopWindowClass 26 | matching_strategy: Legacy 27 | options: 28 | - tray_and_multi_window 29 | - name: Adobe Photoshop 30 | identifier: 31 | kind: Class 32 | id: Photoshop 33 | matching_strategy: Legacy 34 | - name: Adobe Premiere Pro 35 | identifier: 36 | kind: Class 37 | id: Premiere Pro 38 | matching_strategy: Legacy 39 | float_identifiers: 40 | - kind: Class 41 | id: DroverLord - Window Class 42 | matching_strategy: Equals 43 | - name: Affinity Designer 2 44 | identifier: 45 | kind: Title 46 | id: Affinity Designer 2 47 | matching_strategy: Equals 48 | options: 49 | - force 50 | float_identifiers: 51 | - kind: Exe 52 | id: Designer.exe 53 | matching_strategy: Equals 54 | - name: Affinity Photo 2 55 | identifier: 56 | kind: Title 57 | id: Affinity Photo 2 58 | matching_strategy: Equals 59 | options: 60 | - force 61 | float_identifiers: 62 | - kind: Exe 63 | id: Photo.exe 64 | matching_strategy: Equals 65 | - name: Affinity Publisher 2 66 | identifier: 67 | kind: Title 68 | id: Affinity Publisher 2 69 | matching_strategy: Equals 70 | options: 71 | - force 72 | float_identifiers: 73 | - kind: Exe 74 | id: Publisher.exe 75 | matching_strategy: Equals 76 | - name: Akiflow 77 | identifier: 78 | kind: Exe 79 | id: Akiflow.exe 80 | matching_strategy: Equals 81 | options: 82 | - tray_and_multi_window 83 | - name: Amazon Chime 84 | identifier: 85 | kind: Exe 86 | id: Chime.exe 87 | matching_strategy: Equals 88 | float_identifiers: 89 | - kind: Title 90 | id: Meeting Controls 91 | matching_strategy: EndsWith 92 | - name: Android Studio 93 | identifier: 94 | kind: Exe 95 | id: studio64.exe 96 | matching_strategy: Equals 97 | options: 98 | - object_name_change 99 | - name: Anki 100 | identifier: 101 | kind: Exe 102 | id: anki.exe 103 | matching_strategy: Equals 104 | options: 105 | - tray_and_multi_window 106 | - name: ArmCord 107 | identifier: 108 | kind: Exe 109 | id: ArmCord.exe 110 | matching_strategy: Equals 111 | options: 112 | - tray_and_multi_window 113 | - name: AutoDesk AutoCAD Suite 114 | identifier: 115 | kind: Exe 116 | id: acad.exe 117 | matching_strategy: Equals 118 | float_identifiers: 119 | - - kind: Class 120 | id: 'Afx:' 121 | matching_strategy: Contains 122 | - kind: Exe 123 | id: acad.exe 124 | matching_strategy: Equals 125 | - - kind: Class 126 | id: HwndWrapper[DefaultDomain 127 | matching_strategy: StartsWith 128 | - kind: Exe 129 | id: acad.exe 130 | matching_strategy: Equals 131 | - name: AutoHotkey 132 | identifier: 133 | kind: Exe 134 | id: AutoHotkeyU64.exe 135 | matching_strategy: Equals 136 | options: 137 | - tray_and_multi_window 138 | float_identifiers: 139 | - kind: Title 140 | id: Window Spy 141 | matching_strategy: StartsWith 142 | - kind: Exe 143 | id: AutoHotkeyUX.exe 144 | matching_strategy: Equals 145 | - name: Beeper 146 | identifier: 147 | kind: Exe 148 | id: Beeper.exe 149 | matching_strategy: Equals 150 | options: 151 | - tray_and_multi_window 152 | - name: Bitwarden 153 | identifier: 154 | kind: Exe 155 | id: Bitwarden.exe 156 | matching_strategy: Equals 157 | options: 158 | - tray_and_multi_window 159 | - name: Blitz 160 | identifier: 161 | kind: Exe 162 | id: Blitz.exe 163 | matching_strategy: Equals 164 | options: 165 | - tray_and_multi_window 166 | - name: Bloxstrap 167 | identifier: 168 | kind: Exe 169 | id: Bloxstrap.exe 170 | matching_strategy: Equals 171 | float_identifiers: 172 | - kind: Exe 173 | id: Bloxstrap.exe 174 | matching_strategy: Equals 175 | - name: Brave Browser 176 | identifier: 177 | kind: Exe 178 | id: brave.exe 179 | matching_strategy: Equals 180 | options: 181 | - tray_and_multi_window 182 | - name: CLion 183 | identifier: 184 | kind: Exe 185 | id: clion64.exe 186 | matching_strategy: Equals 187 | options: 188 | - object_name_change 189 | - tray_and_multi_window 190 | float_identifiers: 191 | - kind: Class 192 | id: SunAwtDialog 193 | matching_strategy: Equals 194 | - name: Calculator 195 | identifier: 196 | kind: Title 197 | id: Calculator 198 | matching_strategy: Equals 199 | float_identifiers: 200 | - kind: Title 201 | id: Calculator 202 | matching_strategy: Equals 203 | - name: Citrix Receiver 204 | identifier: 205 | kind: Exe 206 | id: SelfService.exe 207 | matching_strategy: Equals 208 | options: 209 | - tray_and_multi_window 210 | float_identifiers: 211 | - kind: Exe 212 | id: SelfService.exe 213 | matching_strategy: Equals 214 | - name: Clash Verge 215 | identifier: 216 | kind: Exe 217 | id: Clash Verge.exe 218 | matching_strategy: Equals 219 | options: 220 | - tray_and_multi_window 221 | - name: Clementine 222 | identifier: 223 | kind: Exe 224 | id: clementine.exe 225 | matching_strategy: Equals 226 | options: 227 | - tray_and_multi_window 228 | - name: CopyQ 229 | identifier: 230 | kind: Exe 231 | id: copyq.exe 232 | matching_strategy: Equals 233 | options: 234 | - tray_and_multi_window 235 | - name: Core Temp 236 | identifier: 237 | kind: Exe 238 | id: Core Temp.exe 239 | matching_strategy: Equals 240 | float_identifiers: 241 | - kind: Exe 242 | id: Core Temp.exe 243 | matching_strategy: Equals 244 | - name: Credential Manager UI Host 245 | identifier: 246 | kind: Exe 247 | id: CredentialUIBroker.exe 248 | matching_strategy: Equals 249 | float_identifiers: 250 | - kind: Exe 251 | id: CredentialUIBroker.exe 252 | matching_strategy: Equals 253 | - name: Cron 254 | identifier: 255 | kind: Exe 256 | id: Cron.exe 257 | matching_strategy: Equals 258 | options: 259 | - tray_and_multi_window 260 | - name: DS4Windows 261 | identifier: 262 | kind: Exe 263 | id: DS4Windows.exe 264 | matching_strategy: Equals 265 | options: 266 | - tray_and_multi_window 267 | - name: DataGrip 268 | identifier: 269 | kind: Exe 270 | id: datagrip64.exe 271 | matching_strategy: Equals 272 | options: 273 | - object_name_change 274 | - tray_and_multi_window 275 | - name: Delphi applications 276 | identifier: 277 | kind: Class 278 | id: TApplication 279 | matching_strategy: Legacy 280 | float_identifiers: 281 | - kind: Class 282 | id: TApplication 283 | matching_strategy: Legacy 284 | - kind: Class 285 | id: TWizardForm 286 | matching_strategy: Legacy 287 | - name: Discord 288 | identifier: 289 | kind: Exe 290 | id: Discord.exe 291 | matching_strategy: Equals 292 | options: 293 | - tray_and_multi_window 294 | - layered 295 | - name: Discord Bot Client 296 | identifier: 297 | kind: Exe 298 | id: DiscordBotClient.exe 299 | matching_strategy: Equals 300 | - name: DiscordCanary 301 | identifier: 302 | kind: Exe 303 | id: DiscordCanary.exe 304 | matching_strategy: Equals 305 | options: 306 | - tray_and_multi_window 307 | - name: DiscordDevelopment 308 | identifier: 309 | kind: Exe 310 | id: DiscordDevelopment.exe 311 | matching_strategy: Equals 312 | options: 313 | - tray_and_multi_window 314 | - name: DiscordPTB 315 | identifier: 316 | kind: Exe 317 | id: DiscordPTB.exe 318 | matching_strategy: Equals 319 | options: 320 | - tray_and_multi_window 321 | - name: Docker Desktop 322 | identifier: 323 | kind: Exe 324 | id: Docker Desktop.exe 325 | matching_strategy: Equals 326 | - name: Dropbox 327 | identifier: 328 | kind: Exe 329 | id: Dropbox.exe 330 | matching_strategy: Equals 331 | float_identifiers: 332 | - kind: Exe 333 | id: Dropbox.exe 334 | matching_strategy: Equals 335 | - name: EA Desktop Client 336 | identifier: 337 | kind: Exe 338 | id: EADesktop.exe 339 | matching_strategy: Equals 340 | - name: Eagle 341 | identifier: 342 | kind: Exe 343 | id: Eagle.exe 344 | matching_strategy: Equals 345 | options: 346 | - tray_and_multi_window 347 | - name: ElectronMail 348 | identifier: 349 | kind: Exe 350 | id: ElectronMail.exe 351 | matching_strategy: Equals 352 | options: 353 | - tray_and_multi_window 354 | - name: Element 355 | identifier: 356 | kind: Exe 357 | id: Element.exe 358 | matching_strategy: Equals 359 | options: 360 | - tray_and_multi_window 361 | - name: Elephicon 362 | identifier: 363 | kind: Exe 364 | id: Elephicon.exe 365 | matching_strategy: Equals 366 | float_identifiers: 367 | - kind: Exe 368 | id: Elephicon.exe 369 | matching_strategy: Equals 370 | - name: ElevenClock 371 | identifier: 372 | kind: Exe 373 | id: ElevenClock.exe 374 | matching_strategy: Equals 375 | options: 376 | - tray_and_multi_window 377 | - name: Elgato Camera Hub 378 | identifier: 379 | kind: Exe 380 | id: Camera Hub.exe 381 | matching_strategy: Equals 382 | float_identifiers: 383 | - kind: Exe 384 | id: Camera Hub.exe 385 | matching_strategy: Equals 386 | - name: Elgato Control Center 387 | identifier: 388 | kind: Exe 389 | id: ControlCenter.exe 390 | matching_strategy: Equals 391 | float_identifiers: 392 | - kind: Exe 393 | id: ControlCenter.exe 394 | matching_strategy: Equals 395 | - name: Elgato Wave Link 396 | identifier: 397 | kind: Exe 398 | id: WaveLink.exe 399 | matching_strategy: Equals 400 | float_identifiers: 401 | - kind: Exe 402 | id: WaveLink.exe 403 | matching_strategy: Equals 404 | - name: Epic Games Launcher 405 | identifier: 406 | kind: Exe 407 | id: EpicGamesLauncher.exe 408 | matching_strategy: Equals 409 | options: 410 | - tray_and_multi_window 411 | - name: Everything 412 | identifier: 413 | kind: Class 414 | id: EVERYTHING 415 | matching_strategy: Legacy 416 | options: 417 | - tray_and_multi_window 418 | - name: Everything1.5a 419 | identifier: 420 | kind: Class 421 | id: EVERYTHING_(1.5a) 422 | matching_strategy: Legacy 423 | options: 424 | - force 425 | - tray_and_multi_window 426 | - name: FFMetrics 427 | identifier: 428 | kind: Exe 429 | id: FFMetrics.exe 430 | matching_strategy: Equals 431 | options: 432 | - tray_and_multi_window 433 | - name: Figma 434 | identifier: 435 | kind: Exe 436 | id: Figma.exe 437 | matching_strategy: Equals 438 | - name: Files 439 | identifier: 440 | kind: Exe 441 | id: Files.exe 442 | matching_strategy: Equals 443 | options: 444 | - tray_and_multi_window 445 | - name: Flow Launcher 446 | identifier: 447 | kind: Exe 448 | id: Flow.Launcher.exe 449 | matching_strategy: Equals 450 | - name: GOG Galaxy 451 | identifier: 452 | kind: Exe 453 | id: GalaxyClient.exe 454 | matching_strategy: Equals 455 | options: 456 | - force 457 | - tray_and_multi_window 458 | float_identifiers: 459 | - kind: Class 460 | id: Chrome_RenderWidgetHostHWND 461 | matching_strategy: Legacy 462 | - name: GitHub Credential Manager 463 | identifier: 464 | kind: Exe 465 | id: git-credential-manager.exe 466 | matching_strategy: Equals 467 | float_identifiers: 468 | - kind: Exe 469 | id: git-credential-manager.exe 470 | matching_strategy: Equals 471 | - name: GitHub Desktop 472 | identifier: 473 | kind: Exe 474 | id: GitHubDesktop.exe 475 | matching_strategy: Equals 476 | - name: GoPro Webcam 477 | identifier: 478 | kind: Class 479 | id: GoPro Webcam 480 | matching_strategy: Legacy 481 | options: 482 | - tray_and_multi_window 483 | - name: Godot Manager 484 | identifier: 485 | kind: Exe 486 | id: GodotManager.exe 487 | matching_strategy: Equals 488 | options: 489 | - force 490 | - object_name_change 491 | - name: Golden Dict 492 | identifier: 493 | kind: Exe 494 | id: GoldenDict.exe 495 | matching_strategy: Equals 496 | options: 497 | - tray_and_multi_window 498 | - name: Google Chrome 499 | identifier: 500 | kind: Exe 501 | id: chrome.exe 502 | matching_strategy: Equals 503 | options: 504 | - tray_and_multi_window 505 | - name: Google Drive 506 | identifier: 507 | kind: Exe 508 | id: GoogleDriveFS.exe 509 | matching_strategy: Equals 510 | options: 511 | - tray_and_multi_window 512 | float_identifiers: 513 | - kind: Exe 514 | id: GoogleDriveFS.exe 515 | matching_strategy: Equals 516 | - name: Guitar Rig 7 517 | identifier: 518 | kind: Exe 519 | id: Guitar Rig 7.exe 520 | matching_strategy: Equals 521 | float_identifiers: 522 | - kind: Exe 523 | id: Guitar Rig 7.exe 524 | matching_strategy: Equals 525 | - name: Honeyview 526 | identifier: 527 | kind: Class 528 | id: HoneyviewClassX 529 | matching_strategy: Legacy 530 | - name: Houdoku 531 | identifier: 532 | kind: Exe 533 | id: Houdoku.exe 534 | matching_strategy: Equals 535 | - name: IntelliJ IDEA 536 | identifier: 537 | kind: Exe 538 | id: idea64.exe 539 | matching_strategy: Equals 540 | options: 541 | - object_name_change 542 | - tray_and_multi_window 543 | float_identifiers: 544 | - kind: Class 545 | id: SunAwtDialog 546 | matching_strategy: Equals 547 | - name: Itch.io 548 | identifier: 549 | kind: Exe 550 | id: itch.exe 551 | matching_strategy: Equals 552 | options: 553 | - tray_and_multi_window 554 | - name: KOOK 555 | identifier: 556 | kind: Exe 557 | id: KOOK.exe 558 | matching_strategy: Equals 559 | options: 560 | - tray_and_multi_window 561 | - name: Keyviz 562 | identifier: 563 | kind: Exe 564 | id: keyviz.exe 565 | matching_strategy: Equals 566 | float_identifiers: 567 | - kind: Exe 568 | id: keyviz.exe 569 | matching_strategy: Equals 570 | - name: Kleopatra 571 | identifier: 572 | kind: Exe 573 | id: kleopatra.exe 574 | matching_strategy: Equals 575 | options: 576 | - tray_and_multi_window 577 | - name: Kotatogram 578 | identifier: 579 | kind: Exe 580 | id: Kotatogram.exe 581 | matching_strategy: Equals 582 | options: 583 | - tray_and_multi_window 584 | - name: LocalSend 585 | identifier: 586 | kind: Exe 587 | id: localsend_app.exe 588 | matching_strategy: Equals 589 | options: 590 | - tray_and_multi_window 591 | - name: Logi Bolt 592 | identifier: 593 | kind: Exe 594 | id: LogiBolt.exe 595 | matching_strategy: Equals 596 | float_identifiers: 597 | - kind: Exe 598 | id: LogiBolt.exe 599 | matching_strategy: Equals 600 | - name: LogiTune 601 | identifier: 602 | kind: Exe 603 | id: LogiTune.exe 604 | matching_strategy: Equals 605 | options: 606 | - tray_and_multi_window 607 | float_identifiers: 608 | - kind: Exe 609 | id: LogiTune.exe 610 | matching_strategy: Equals 611 | - name: Logitech G HUB 612 | identifier: 613 | kind: Exe 614 | id: lghub.exe 615 | matching_strategy: Equals 616 | options: 617 | - tray_and_multi_window 618 | - name: Logitech Options 619 | identifier: 620 | kind: Exe 621 | id: LogiOptionsUI.exe 622 | matching_strategy: Equals 623 | float_identifiers: 624 | - kind: Exe 625 | id: LogiOptionsUI.exe 626 | matching_strategy: Equals 627 | - name: Mailspring 628 | identifier: 629 | kind: Exe 630 | id: mailspring.exe 631 | matching_strategy: Equals 632 | options: 633 | - tray_and_multi_window 634 | - name: ManicTime 635 | identifier: 636 | kind: Exe 637 | id: ManicTimeClient.exe 638 | matching_strategy: Equals 639 | options: 640 | - force 641 | - object_name_change 642 | - tray_and_multi_window 643 | - name: ManyCam 644 | identifier: 645 | kind: Exe 646 | id: ManyCam.exe 647 | matching_strategy: Equals 648 | options: 649 | - tray_and_multi_window 650 | - name: Mattermost 651 | identifier: 652 | kind: Exe 653 | id: Mattermost.exe 654 | matching_strategy: Equals 655 | options: 656 | - tray_and_multi_window 657 | - name: Mica For Everyone 658 | identifier: 659 | kind: Exe 660 | id: MicaForEveryone.exe 661 | matching_strategy: Equals 662 | - name: Microsoft Active Accessibility 663 | identifier: 664 | kind: Class 665 | id: '' 666 | matching_strategy: Legacy 667 | float_identifiers: 668 | - kind: Class 669 | id: '#32770' 670 | matching_strategy: Legacy 671 | - name: Microsoft Excel 672 | identifier: 673 | kind: Exe 674 | id: EXCEL.EXE 675 | matching_strategy: Equals 676 | options: 677 | - layered 678 | float_identifiers: 679 | - kind: Class 680 | id: _WwB 681 | matching_strategy: Legacy 682 | - name: Microsoft Outlook 683 | identifier: 684 | kind: Exe 685 | id: OUTLOOK.EXE 686 | matching_strategy: Equals 687 | options: 688 | - layered 689 | - tray_and_multi_window 690 | float_identifiers: 691 | - kind: Class 692 | id: _WwB 693 | matching_strategy: Legacy 694 | - kind: Class 695 | id: MsoSplash 696 | matching_strategy: Equals 697 | - name: Microsoft PC Manager 698 | identifier: 699 | kind: Exe 700 | id: MSPCManager.exe 701 | matching_strategy: Equals 702 | float_identifiers: 703 | - kind: Exe 704 | id: MSPCManager.exe 705 | matching_strategy: Equals 706 | - name: Microsoft PowerPoint 707 | identifier: 708 | kind: Exe 709 | id: POWERPNT.EXE 710 | matching_strategy: Equals 711 | options: 712 | - layered 713 | float_identifiers: 714 | - kind: Class 715 | id: _WwB 716 | matching_strategy: Legacy 717 | - name: Microsoft SQL Server Management Studio 718 | identifier: 719 | kind: Exe 720 | id: Ssms.exe 721 | matching_strategy: Equals 722 | - name: Microsoft Teams 723 | identifier: 724 | kind: Class 725 | id: TeamsWebView 726 | matching_strategy: Legacy 727 | options: 728 | - tray_and_multi_window 729 | - name: Microsoft Teams classic 730 | identifier: 731 | kind: Exe 732 | id: Teams.exe 733 | matching_strategy: Equals 734 | float_identifiers: 735 | - kind: Title 736 | id: Microsoft Teams Notification 737 | matching_strategy: Legacy 738 | - kind: Title 739 | id: Microsoft Teams Call 740 | matching_strategy: Legacy 741 | - name: Microsoft Word 742 | identifier: 743 | kind: Exe 744 | id: WINWORD.EXE 745 | matching_strategy: Equals 746 | options: 747 | - layered 748 | float_identifiers: 749 | - kind: Class 750 | id: _WwB 751 | matching_strategy: Legacy 752 | - name: Modern Flyouts 753 | identifier: 754 | kind: Exe 755 | id: ModernFlyoutsHost.exe 756 | matching_strategy: Equals 757 | options: 758 | - tray_and_multi_window 759 | - name: Morgen 760 | identifier: 761 | kind: Exe 762 | id: Morgen.exe 763 | matching_strategy: Equals 764 | - name: Mozilla Firefox 765 | identifier: 766 | kind: Exe 767 | id: firefox.exe 768 | matching_strategy: Equals 769 | options: 770 | - object_name_change 771 | - tray_and_multi_window 772 | float_identifiers: 773 | - kind: Class 774 | id: MozillaTaskbarPreviewClass 775 | matching_strategy: Legacy 776 | - - kind: Title 777 | id: Picture-in-Picture 778 | matching_strategy: Equals 779 | - kind: Exe 780 | id: firefox.exe 781 | matching_strategy: Equals 782 | - name: MuseScore 783 | identifier: 784 | kind: Exe 785 | id: MuseScore.exe 786 | matching_strategy: Equals 787 | - name: NVIDIA GeForce Experience 788 | identifier: 789 | kind: Exe 790 | id: NVIDIA GeForce Experience.exe 791 | matching_strategy: Equals 792 | - name: NZXT CAM 793 | identifier: 794 | kind: Exe 795 | id: NZXT CAM.exe 796 | matching_strategy: Equals 797 | options: 798 | - tray_and_multi_window 799 | - name: NetEase Cloud Music 800 | identifier: 801 | kind: Exe 802 | id: cloudmusic.exe 803 | matching_strategy: Equals 804 | options: 805 | - tray_and_multi_window 806 | - name: NiceHash Miner 807 | identifier: 808 | kind: Exe 809 | id: nhm_app.exe 810 | matching_strategy: Equals 811 | options: 812 | - force 813 | - name: NohBoard 814 | identifier: 815 | kind: Exe 816 | id: NohBoard.exe 817 | matching_strategy: Equals 818 | float_identifiers: 819 | - kind: Exe 820 | id: NohBoard.exe 821 | matching_strategy: Equals 822 | - name: Notion Enhanced 823 | identifier: 824 | kind: Exe 825 | id: Notion Enhanced.exe 826 | matching_strategy: Equals 827 | options: 828 | - tray_and_multi_window 829 | - name: OBS Studio (32-bit) 830 | identifier: 831 | kind: Exe 832 | id: obs32.exe 833 | matching_strategy: Equals 834 | options: 835 | - tray_and_multi_window 836 | - name: OBS Studio (64-bit) 837 | identifier: 838 | kind: Exe 839 | id: obs64.exe 840 | matching_strategy: Equals 841 | options: 842 | - tray_and_multi_window 843 | - name: ONLYOFFICE Editors 844 | identifier: 845 | kind: Class 846 | id: DocEditorsWindowClass 847 | matching_strategy: Legacy 848 | options: 849 | - tray_and_multi_window 850 | - name: Obsidian 851 | identifier: 852 | kind: Exe 853 | id: Obsidian.exe 854 | matching_strategy: Equals 855 | - name: OneDrive 856 | identifier: 857 | kind: Exe 858 | id: OneDrive.exe 859 | matching_strategy: Equals 860 | float_identifiers: 861 | - kind: Class 862 | id: OneDriveReactNativeWin32WindowClass 863 | matching_strategy: Legacy 864 | - name: OneQuick 865 | identifier: 866 | kind: Exe 867 | id: OneQuick.exe 868 | matching_strategy: Equals 869 | options: 870 | - tray_and_multi_window 871 | - name: OpenRGB 872 | identifier: 873 | kind: Exe 874 | id: OpenRGB.exe 875 | matching_strategy: Equals 876 | options: 877 | - tray_and_multi_window 878 | - name: Paradox Launcher 879 | identifier: 880 | kind: Exe 881 | id: Paradox Launcher.exe 882 | matching_strategy: Equals 883 | float_identifiers: 884 | - kind: Exe 885 | id: Paradox Launcher.exe 886 | matching_strategy: Equals 887 | - name: Passware Kit Forensic 888 | identifier: 889 | kind: Exe 890 | id: PasswareKitForensic.exe 891 | matching_strategy: Equals 892 | - name: PhpStorm 893 | identifier: 894 | kind: Exe 895 | id: phpstorm64.exe 896 | matching_strategy: Equals 897 | options: 898 | - object_name_change 899 | - tray_and_multi_window 900 | float_identifiers: 901 | - kind: Class 902 | id: SunAwtDialog 903 | matching_strategy: Equals 904 | - name: Playnite 905 | identifier: 906 | kind: Exe 907 | id: Playnite.DesktopApp.exe 908 | matching_strategy: Equals 909 | options: 910 | - tray_and_multi_window 911 | float_identifiers: 912 | - kind: Exe 913 | id: Playnite.FullscreenApp.exe 914 | matching_strategy: Equals 915 | - name: Plexamp 916 | identifier: 917 | kind: Exe 918 | id: Plexamp.exe 919 | matching_strategy: Equals 920 | - name: Postman 921 | identifier: 922 | kind: Exe 923 | id: Postman.exe 924 | matching_strategy: Equals 925 | - name: PowerToys 926 | identifier: 927 | kind: Exe 928 | id: PowerToys.exe 929 | matching_strategy: Equals 930 | float_identifiers: 931 | - kind: Exe 932 | id: PowerToys.ColorPickerUI.exe 933 | matching_strategy: Equals 934 | - kind: Exe 935 | id: PowerToys.CropAndLock.exe 936 | matching_strategy: Equals 937 | - kind: Exe 938 | id: PowerToys.ImageResizer.exe 939 | matching_strategy: Equals 940 | - kind: Exe 941 | id: PowerToys.Peek.UI.exe 942 | matching_strategy: Equals 943 | - kind: Exe 944 | id: PowerToys.PowerLauncher.exe 945 | matching_strategy: Equals 946 | - kind: Exe 947 | id: PowerToys.PowerAccent.exe 948 | matching_strategy: Equals 949 | - name: Process Hacker 950 | identifier: 951 | kind: Exe 952 | id: ProcessHacker.exe 953 | matching_strategy: Equals 954 | options: 955 | - tray_and_multi_window 956 | float_identifiers: 957 | - kind: Exe 958 | id: ProcessHacker.exe 959 | matching_strategy: Equals 960 | - name: ProtonDrive 961 | identifier: 962 | kind: Exe 963 | id: ProtonDrive.exe 964 | matching_strategy: Equals 965 | options: 966 | - tray_and_multi_window 967 | - name: ProtonVPN 968 | identifier: 969 | kind: Exe 970 | id: ProtonVPN.exe 971 | matching_strategy: Equals 972 | options: 973 | - tray_and_multi_window 974 | - name: PyCharm 975 | identifier: 976 | kind: Exe 977 | id: pycharm64.exe 978 | matching_strategy: Equals 979 | options: 980 | - object_name_change 981 | - tray_and_multi_window 982 | float_identifiers: 983 | - kind: Class 984 | id: SunAwtDialog 985 | matching_strategy: Equals 986 | - name: QQ 987 | identifier: 988 | kind: Exe 989 | id: QQ.exe 990 | matching_strategy: Equals 991 | options: 992 | - tray_and_multi_window 993 | float_identifiers: 994 | - kind: Title 995 | id: 图片查看器 996 | matching_strategy: Legacy 997 | - kind: Title 998 | id: 群聊的聊天记录 999 | matching_strategy: Legacy 1000 | - kind: Title 1001 | id: 语音通话 1002 | matching_strategy: Legacy 1003 | - name: QtScrcpy 1004 | identifier: 1005 | kind: Exe 1006 | id: QtScrcpy.exe 1007 | matching_strategy: Equals 1008 | options: 1009 | - tray_and_multi_window 1010 | - name: QuickLook 1011 | identifier: 1012 | kind: Exe 1013 | id: QuickLook.exe 1014 | matching_strategy: Equals 1015 | float_identifiers: 1016 | - kind: Exe 1017 | id: QuickLook.exe 1018 | matching_strategy: Equals 1019 | - name: RepoZ 1020 | identifier: 1021 | kind: Exe 1022 | id: RepoZ.exe 1023 | matching_strategy: Equals 1024 | float_identifiers: 1025 | - kind: Exe 1026 | id: RepoZ.exe 1027 | matching_strategy: Equals 1028 | - name: Rider 1029 | identifier: 1030 | kind: Exe 1031 | id: rider64.exe 1032 | matching_strategy: Equals 1033 | options: 1034 | - object_name_change 1035 | - tray_and_multi_window 1036 | float_identifiers: 1037 | - kind: Class 1038 | id: SunAwtDialog 1039 | matching_strategy: Equals 1040 | - kind: Title 1041 | id: PopupMessageWindow 1042 | matching_strategy: Legacy 1043 | - name: Roblox FPS Unlocker 1044 | identifier: 1045 | kind: Exe 1046 | id: rbxfpsunlocker.exe 1047 | matching_strategy: Equals 1048 | options: 1049 | - tray_and_multi_window 1050 | - name: RoundedTB 1051 | identifier: 1052 | kind: Exe 1053 | id: RoundedTB.exe 1054 | matching_strategy: Equals 1055 | float_identifiers: 1056 | - kind: Exe 1057 | id: RoundedTB.exe 1058 | matching_strategy: Equals 1059 | - name: RoundedTB 1060 | identifier: 1061 | kind: Exe 1062 | id: RoundedTB.exe 1063 | matching_strategy: Equals 1064 | options: 1065 | - tray_and_multi_window 1066 | - name: RustRover 1067 | identifier: 1068 | kind: Exe 1069 | id: rustrover64.exe 1070 | matching_strategy: Equals 1071 | options: 1072 | - object_name_change 1073 | - tray_and_multi_window 1074 | float_identifiers: 1075 | - kind: Class 1076 | id: SunAwtDialog 1077 | matching_strategy: Equals 1078 | - name: Sandboxie Plus 1079 | identifier: 1080 | kind: Exe 1081 | id: SandMan.exe 1082 | matching_strategy: Equals 1083 | options: 1084 | - tray_and_multi_window 1085 | - name: ShareX 1086 | identifier: 1087 | kind: Exe 1088 | id: ShareX.exe 1089 | matching_strategy: Equals 1090 | options: 1091 | - tray_and_multi_window 1092 | - name: Sideloadly 1093 | identifier: 1094 | kind: Exe 1095 | id: sideloadly.exe 1096 | matching_strategy: Equals 1097 | float_identifiers: 1098 | - kind: Exe 1099 | id: sideloadly.exe 1100 | matching_strategy: Equals 1101 | - name: Signal 1102 | identifier: 1103 | kind: Exe 1104 | id: Signal.exe 1105 | matching_strategy: Equals 1106 | options: 1107 | - tray_and_multi_window 1108 | - name: SiriKali 1109 | identifier: 1110 | kind: Exe 1111 | id: sirikali.exe 1112 | matching_strategy: Equals 1113 | options: 1114 | - tray_and_multi_window 1115 | - name: Slack 1116 | identifier: 1117 | kind: Exe 1118 | id: Slack.exe 1119 | matching_strategy: Equals 1120 | options: 1121 | - tray_and_multi_window 1122 | float_identifiers: 1123 | - kind: Class 1124 | id: Chrome_RenderWidgetHostHWND 1125 | matching_strategy: Legacy 1126 | - name: Slack 1127 | identifier: 1128 | kind: Exe 1129 | id: slack.exe 1130 | matching_strategy: Equals 1131 | options: 1132 | - tray_and_multi_window 1133 | float_identifiers: 1134 | - kind: Class 1135 | id: Chrome_RenderWidgetHostHWND 1136 | matching_strategy: Legacy 1137 | - name: Smart Install Maker 1138 | identifier: 1139 | kind: Exe 1140 | id: SIM.exe 1141 | matching_strategy: Equals 1142 | float_identifiers: 1143 | - kind: Class 1144 | id: obj_App 1145 | matching_strategy: Legacy 1146 | - kind: Class 1147 | id: obj_Form 1148 | matching_strategy: Legacy 1149 | - name: SnippingTool 1150 | identifier: 1151 | kind: Exe 1152 | id: SnippingTool.exe 1153 | matching_strategy: Equals 1154 | float_identifiers: 1155 | - kind: Exe 1156 | id: SnippingTool.exe 1157 | matching_strategy: Equals 1158 | - name: SoulseekQt 1159 | identifier: 1160 | kind: Exe 1161 | id: SoulseekQt.exe 1162 | matching_strategy: Equals 1163 | options: 1164 | - tray_and_multi_window 1165 | - name: SpaceWalker.Desktop 1166 | identifier: 1167 | kind: Exe 1168 | id: SpaceWalker.Desktop.exe 1169 | matching_strategy: Equals 1170 | - name: SpaceWalker.Unity.exe 1171 | identifier: 1172 | kind: Exe 1173 | id: SpaceWalker.Unity.exe 1174 | matching_strategy: Equals 1175 | - name: Spotify 1176 | identifier: 1177 | kind: Exe 1178 | id: Spotify.exe 1179 | matching_strategy: Equals 1180 | options: 1181 | - tray_and_multi_window 1182 | - name: Steam 1183 | identifier: 1184 | kind: Class 1185 | id: vguiPopupWindow 1186 | matching_strategy: Legacy 1187 | float_identifiers: 1188 | - - kind: Exe 1189 | id: steamwebhelper.exe 1190 | matching_strategy: Equals 1191 | - kind: Title 1192 | id: Steam 1193 | matching_strategy: DoesNotEqual 1194 | - name: Steam Beta 1195 | identifier: 1196 | kind: Class 1197 | id: SDL_app 1198 | matching_strategy: Legacy 1199 | options: 1200 | - tray_and_multi_window 1201 | float_identifiers: 1202 | - kind: Title 1203 | id: notificationtoasts_ 1204 | matching_strategy: Legacy 1205 | - name: Stremio 1206 | identifier: 1207 | kind: Exe 1208 | id: stremio.exe 1209 | matching_strategy: Equals 1210 | options: 1211 | - tray_and_multi_window 1212 | - name: System Informer 1213 | identifier: 1214 | kind: Exe 1215 | id: SystemInformer.exe 1216 | matching_strategy: Equals 1217 | options: 1218 | - tray_and_multi_window 1219 | float_identifiers: 1220 | - kind: Exe 1221 | id: SystemInformer.exe 1222 | matching_strategy: Equals 1223 | - name: SystemSettings 1224 | identifier: 1225 | kind: Exe 1226 | id: SystemSettings.exe 1227 | matching_strategy: Equals 1228 | float_identifiers: 1229 | - kind: Class 1230 | id: Shell_Dialog 1231 | matching_strategy: Legacy 1232 | - name: Task Manager 1233 | identifier: 1234 | kind: Exe 1235 | id: Taskmgr.exe 1236 | matching_strategy: Equals 1237 | float_identifiers: 1238 | - kind: Class 1239 | id: TaskManagerWindow 1240 | matching_strategy: Legacy 1241 | - name: Telegram 1242 | identifier: 1243 | kind: Exe 1244 | id: Telegram.exe 1245 | matching_strategy: Equals 1246 | options: 1247 | - tray_and_multi_window 1248 | - name: TickTick 1249 | identifier: 1250 | kind: Exe 1251 | id: TickTick.exe 1252 | matching_strategy: Equals 1253 | options: 1254 | - tray_and_multi_window 1255 | - name: Total Commander 1256 | identifier: 1257 | kind: Exe 1258 | id: TotalCMD64.exe 1259 | matching_strategy: Equals 1260 | float_identifiers: 1261 | - kind: Class 1262 | id: TDLG2FILEACTIONMIN 1263 | matching_strategy: Equals 1264 | - name: TouchCursor 1265 | identifier: 1266 | kind: Exe 1267 | id: tcconfig.exe 1268 | matching_strategy: Equals 1269 | options: 1270 | - tray_and_multi_window 1271 | float_identifiers: 1272 | - kind: Exe 1273 | id: tcconfig.exe 1274 | matching_strategy: Equals 1275 | - name: TranslucentTB 1276 | identifier: 1277 | kind: Exe 1278 | id: TranslucentTB.exe 1279 | matching_strategy: Equals 1280 | float_identifiers: 1281 | - kind: Exe 1282 | id: TranslucentTB.exe 1283 | matching_strategy: Equals 1284 | - name: TranslucentTB 1285 | identifier: 1286 | kind: Exe 1287 | id: TranslucentTB.exe 1288 | matching_strategy: Equals 1289 | options: 1290 | - tray_and_multi_window 1291 | - name: UniGetUI 1292 | identifier: 1293 | kind: Exe 1294 | id: UniGetUI.exe 1295 | matching_strategy: Equals 1296 | options: 1297 | - tray_and_multi_window 1298 | - name: Unity Hub 1299 | identifier: 1300 | kind: Exe 1301 | id: Unity Hub.exe 1302 | matching_strategy: Equals 1303 | options: 1304 | - tray_and_multi_window 1305 | - name: Unreal Editor 1306 | identifier: 1307 | kind: Exe 1308 | id: UnrealEditor.exe 1309 | matching_strategy: Equals 1310 | options: 1311 | - tray_and_multi_window 1312 | - name: VMware Horizon Client 1313 | identifier: 1314 | kind: Exe 1315 | id: vmware-view.exe 1316 | matching_strategy: Equals 1317 | options: 1318 | - tray_and_multi_window 1319 | - name: VRCX 1320 | identifier: 1321 | kind: Exe 1322 | id: VRCX.exe 1323 | matching_strategy: Equals 1324 | options: 1325 | - tray_and_multi_window 1326 | - name: Visual Studio 1327 | identifier: 1328 | kind: Exe 1329 | id: devenv.exe 1330 | matching_strategy: Equals 1331 | options: 1332 | - object_name_change 1333 | - name: Visual Studio Code 1334 | identifier: 1335 | kind: Exe 1336 | id: Code.exe 1337 | matching_strategy: Equals 1338 | - name: Visual Studio Code - Insiders 1339 | identifier: 1340 | kind: Exe 1341 | id: Code - Insiders.exe 1342 | matching_strategy: Equals 1343 | - name: Voice.ai 1344 | identifier: 1345 | kind: Exe 1346 | id: VoiceAI.exe 1347 | matching_strategy: Equals 1348 | options: 1349 | - tray_and_multi_window 1350 | - name: WeChat 1351 | identifier: 1352 | kind: Class 1353 | id: WeChatMainWndForPC 1354 | matching_strategy: Equals 1355 | options: 1356 | - force 1357 | - tray_and_multi_window 1358 | float_identifiers: 1359 | - kind: Class 1360 | id: WeChatLoginWndForPC 1361 | matching_strategy: Equals 1362 | - kind: Class 1363 | id: FileListMgrWnd 1364 | matching_strategy: Equals 1365 | - kind: Class 1366 | id: CWebviewControlHostWnd 1367 | matching_strategy: Equals 1368 | - kind: Class 1369 | id: ChatWnd 1370 | matching_strategy: Equals 1371 | - kind: Class 1372 | id: EmotionTipWnd 1373 | matching_strategy: Equals 1374 | - kind: Class 1375 | id: ChatContactMenu 1376 | matching_strategy: Equals 1377 | - kind: Exe 1378 | id: WeChatAppEx.exe 1379 | matching_strategy: Equals 1380 | - name: WebStorm 1381 | identifier: 1382 | kind: Exe 1383 | id: webstorm64.exe 1384 | matching_strategy: Equals 1385 | options: 1386 | - object_name_change 1387 | - tray_and_multi_window 1388 | float_identifiers: 1389 | - kind: Class 1390 | id: SunAwtDialog 1391 | matching_strategy: Equals 1392 | - name: WebTorrent Desktop 1393 | identifier: 1394 | kind: Exe 1395 | id: WebTorrent.exe 1396 | matching_strategy: Equals 1397 | options: 1398 | - tray_and_multi_window 1399 | - name: WinZip (32-bit) 1400 | identifier: 1401 | kind: Exe 1402 | id: winzip32.exe 1403 | matching_strategy: Equals 1404 | float_identifiers: 1405 | - kind: Exe 1406 | id: winzip32.exe 1407 | matching_strategy: Equals 1408 | - name: WinZip (64-bit) 1409 | identifier: 1410 | kind: Exe 1411 | id: winzip64.exe 1412 | matching_strategy: Equals 1413 | float_identifiers: 1414 | - kind: Exe 1415 | id: winzip64.exe 1416 | matching_strategy: Equals 1417 | - name: Windows Console (conhost.exe) 1418 | identifier: 1419 | kind: Class 1420 | id: ConsoleWindowClass 1421 | matching_strategy: Equals 1422 | options: 1423 | - force 1424 | - name: Windows Explorer 1425 | identifier: 1426 | kind: Exe 1427 | id: explorer.exe 1428 | matching_strategy: Equals 1429 | float_identifiers: 1430 | - kind: Class 1431 | id: OperationStatusWindow 1432 | matching_strategy: Legacy 1433 | - kind: Title 1434 | id: Control Panel 1435 | matching_strategy: Legacy 1436 | - name: Windows Installer 1437 | identifier: 1438 | kind: Exe 1439 | id: msiexec.exe 1440 | matching_strategy: Equals 1441 | float_identifiers: 1442 | - kind: Exe 1443 | id: msiexec.exe 1444 | matching_strategy: Equals 1445 | - name: Windows Subsystem for Android 1446 | identifier: 1447 | kind: Exe 1448 | id: WsaClient.exe 1449 | matching_strategy: Equals 1450 | float_identifiers: 1451 | - kind: Class 1452 | id: android(splash) 1453 | matching_strategy: Legacy 1454 | - name: Windows Update Standalone Installer 1455 | identifier: 1456 | kind: Exe 1457 | id: wusa.exe 1458 | matching_strategy: Equals 1459 | float_identifiers: 1460 | - kind: Exe 1461 | id: wusa.exe 1462 | matching_strategy: Equals 1463 | - name: WingetUI 1464 | identifier: 1465 | kind: Exe 1466 | id: WingetUI.exe 1467 | matching_strategy: Equals 1468 | options: 1469 | - tray_and_multi_window 1470 | - name: WingetUI 1471 | identifier: 1472 | kind: Exe 1473 | id: wingetui.exe 1474 | matching_strategy: Equals 1475 | options: 1476 | - tray_and_multi_window 1477 | - name: Wox 1478 | identifier: 1479 | kind: Exe 1480 | id: Wox.exe 1481 | matching_strategy: Equals 1482 | float_identifiers: 1483 | - kind: Title 1484 | id: Hotkey sink 1485 | matching_strategy: Legacy 1486 | - name: XAMPP Control Panel 1487 | identifier: 1488 | kind: Exe 1489 | id: xampp-control.exe 1490 | matching_strategy: Equals 1491 | options: 1492 | - tray_and_multi_window 1493 | - name: Zebar 1494 | identifier: 1495 | kind: Exe 1496 | id: zebar.exe 1497 | matching_strategy: Equals 1498 | float_identifiers: 1499 | - kind: Exe 1500 | id: zebar.exe 1501 | matching_strategy: Equals 1502 | - name: Zen Browser 1503 | identifier: 1504 | kind: Exe 1505 | id: zen.exe 1506 | matching_strategy: Equals 1507 | options: 1508 | - object_name_change 1509 | - tray_and_multi_window 1510 | float_identifiers: 1511 | - kind: Class 1512 | id: MozillaTaskbarPreviewClass 1513 | matching_strategy: Legacy 1514 | - - kind: Title 1515 | id: Picture-in-Picture 1516 | matching_strategy: Equals 1517 | - kind: Exe 1518 | id: zen.exe 1519 | matching_strategy: Equals 1520 | - name: Zoom 1521 | identifier: 1522 | kind: Exe 1523 | id: Zoom.exe 1524 | matching_strategy: Equals 1525 | float_identifiers: 1526 | - kind: Exe 1527 | id: Zoom.exe 1528 | matching_strategy: Equals 1529 | - name: komorebi-gui 1530 | identifier: 1531 | kind: Exe 1532 | id: komorebi-gui.exe 1533 | matching_strategy: Equals 1534 | float_identifiers: 1535 | - kind: Exe 1536 | id: komorebi-gui.exe 1537 | matching_strategy: Equals 1538 | - name: mpv 1539 | identifier: 1540 | kind: Class 1541 | id: mpv 1542 | matching_strategy: Legacy 1543 | options: 1544 | - object_name_change 1545 | - name: mpv.net 1546 | identifier: 1547 | kind: Exe 1548 | id: mpvnet.exe 1549 | matching_strategy: Equals 1550 | options: 1551 | - object_name_change 1552 | - name: paint.net 1553 | identifier: 1554 | kind: Exe 1555 | id: paintdotnet.exe 1556 | matching_strategy: Equals 1557 | float_identifiers: 1558 | - kind: Exe 1559 | id: paintdotnet.exe 1560 | matching_strategy: Equals 1561 | - name: pinentry 1562 | identifier: 1563 | kind: Exe 1564 | id: pinentry.exe 1565 | matching_strategy: Equals 1566 | float_identifiers: 1567 | - kind: Exe 1568 | id: pinentry.exe 1569 | matching_strategy: Equals 1570 | - name: qBittorrent 1571 | identifier: 1572 | kind: Exe 1573 | id: qbittorrent.exe 1574 | matching_strategy: Equals 1575 | options: 1576 | - tray_and_multi_window 1577 | - name: todoist 1578 | identifier: 1579 | kind: Exe 1580 | id: Todoist.exe 1581 | matching_strategy: Equals 1582 | - name: ueli 1583 | identifier: 1584 | kind: Exe 1585 | id: ueli.exe 1586 | matching_strategy: Equals 1587 | options: 1588 | - tray_and_multi_window 1589 | float_identifiers: 1590 | - kind: Exe 1591 | id: ueli.exe 1592 | matching_strategy: Equals 1593 | - name: visio 1594 | identifier: 1595 | kind: Class 1596 | id: VISIOA 1597 | matching_strategy: Equals 1598 | options: 1599 | - force 1600 | float_identifiers: 1601 | - kind: Class 1602 | id: VISIOS 1603 | matching_strategy: Equals 1604 | - kind: Class 1605 | id: VISIOQ 1606 | matching_strategy: Equals 1607 | -------------------------------------------------------------------------------- /applications.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/master/schema.asc.json", 3 | "1Password": { 4 | "ignore": [ 5 | { 6 | "kind": "Exe", 7 | "id": "1Password.exe", 8 | "matching_strategy": "Equals" 9 | } 10 | ] 11 | }, 12 | "Ableton Live": { 13 | "ignore": [ 14 | { 15 | "kind": "Class", 16 | "id": "AbletonVstPlugClass", 17 | "matching_strategy": "Legacy" 18 | }, 19 | { 20 | "kind": "Class", 21 | "id": "Vst3PlugWindow", 22 | "matching_strategy": "Legacy" 23 | }, 24 | [ 25 | { 26 | "kind": "Class", 27 | "id": "Ableton Live Window Class", 28 | "matching_strategy": "Equals" 29 | }, 30 | { 31 | "kind": "Title", 32 | "id": "Ableton", 33 | "matching_strategy": "DoesNotContain" 34 | } 35 | ] 36 | ] 37 | }, 38 | "Adobe Creative Cloud": { 39 | "tray_and_multi_window": [ 40 | { 41 | "kind": "Class", 42 | "id": "CreativeCloudDesktopWindowClass", 43 | "matching_strategy": "Legacy" 44 | } 45 | ] 46 | }, 47 | "Adobe Photoshop": { 48 | "ignore": [ 49 | { 50 | "kind": "Class", 51 | "id": "PSDialogBox", 52 | "matching_strategy": "Equals" 53 | } 54 | ] 55 | }, 56 | "Adobe Premiere Pro": { 57 | "ignore": [ 58 | { 59 | "kind": "Class", 60 | "id": "DroverLord - Window Class", 61 | "matching_strategy": "Equals" 62 | } 63 | ] 64 | }, 65 | "Affinity Designer 2": { 66 | "ignore": [ 67 | { 68 | "kind": "Exe", 69 | "id": "Designer.exe", 70 | "matching_strategy": "Equals" 71 | } 72 | ], 73 | "manage": [ 74 | { 75 | "kind": "Title", 76 | "id": "Affinity Designer 2", 77 | "matching_strategy": "Equals" 78 | } 79 | ] 80 | }, 81 | "Affinity Photo 2": { 82 | "ignore": [ 83 | { 84 | "kind": "Exe", 85 | "id": "Photo.exe", 86 | "matching_strategy": "Equals" 87 | } 88 | ], 89 | "manage": [ 90 | { 91 | "kind": "Title", 92 | "id": "Affinity Photo 2", 93 | "matching_strategy": "Equals" 94 | } 95 | ] 96 | }, 97 | "Affinity Publisher 2": { 98 | "ignore": [ 99 | { 100 | "kind": "Exe", 101 | "id": "Publisher.exe", 102 | "matching_strategy": "Equals" 103 | } 104 | ], 105 | "manage": [ 106 | { 107 | "kind": "Title", 108 | "id": "Affinity Publisher 2", 109 | "matching_strategy": "Equals" 110 | } 111 | ] 112 | }, 113 | "Akiflow": { 114 | "tray_and_multi_window": [ 115 | { 116 | "kind": "Exe", 117 | "id": "Akiflow.exe", 118 | "matching_strategy": "Equals" 119 | } 120 | ] 121 | }, 122 | "Amazon Chime": { 123 | "ignore": [ 124 | { 125 | "kind": "Title", 126 | "id": "Meeting Controls", 127 | "matching_strategy": "EndsWith" 128 | } 129 | ] 130 | }, 131 | "Android Studio": { 132 | "object_name_change": [ 133 | { 134 | "kind": "Exe", 135 | "id": "studio64.exe", 136 | "matching_strategy": "Equals" 137 | } 138 | ] 139 | }, 140 | "Anki": { 141 | "tray_and_multi_window": [ 142 | { 143 | "kind": "Exe", 144 | "id": "anki.exe", 145 | "matching_strategy": "Equals" 146 | } 147 | ] 148 | }, 149 | "ApplicationFrameHost": { 150 | "tray_and_multi_window": [ 151 | { 152 | "kind": "Exe", 153 | "id": "ApplicationFrameHost.exe", 154 | "matching_strategy": "Equals" 155 | } 156 | ] 157 | }, 158 | "Arc Browser": { 159 | "ignore": [ 160 | { 161 | "kind": "Title", 162 | "id": "Arc picture in picture", 163 | "matching_strategy": "Equals" 164 | }, 165 | { 166 | "kind": "Title", 167 | "id": "Arc extension popup", 168 | "matching_strategy": "Equals" 169 | } 170 | ] 171 | }, 172 | "ArmCord": { 173 | "tray_and_multi_window": [ 174 | { 175 | "kind": "Exe", 176 | "id": "ArmCord.exe", 177 | "matching_strategy": "Equals" 178 | } 179 | ] 180 | }, 181 | "AutoDesk AutoCAD Suite": { 182 | "ignore": [ 183 | [ 184 | { 185 | "kind": "Class", 186 | "id": "Afx:", 187 | "matching_strategy": "Contains" 188 | }, 189 | { 190 | "kind": "Exe", 191 | "id": "acad.exe", 192 | "matching_strategy": "Equals" 193 | } 194 | ], 195 | [ 196 | { 197 | "kind": "Class", 198 | "id": "HwndWrapper[DefaultDomain", 199 | "matching_strategy": "StartsWith" 200 | }, 201 | { 202 | "kind": "Exe", 203 | "id": "acad.exe", 204 | "matching_strategy": "Equals" 205 | } 206 | ], 207 | [ 208 | { 209 | "kind": "Class", 210 | "id": "WindowsForms10.Window", 211 | "matching_strategy": "StartsWith" 212 | }, 213 | { 214 | "kind": "Exe", 215 | "id": "acad.exe", 216 | "matching_strategy": "Equals" 217 | } 218 | ] 219 | ] 220 | }, 221 | "AutoHotkey": { 222 | "ignore": [ 223 | { 224 | "kind": "Title", 225 | "id": "Window Spy", 226 | "matching_strategy": "StartsWith" 227 | }, 228 | { 229 | "kind": "Exe", 230 | "id": "AutoHotkeyUX.exe", 231 | "matching_strategy": "Equals" 232 | } 233 | ], 234 | "tray_and_multi_window": [ 235 | { 236 | "kind": "Exe", 237 | "id": "AutoHotkeyU64.exe", 238 | "matching_strategy": "Equals" 239 | } 240 | ] 241 | }, 242 | "Ayugram": { 243 | "tray_and_multi_window": [ 244 | { 245 | "kind": "Exe", 246 | "id": "ayugram.exe", 247 | "matching_strategy": "Equals" 248 | } 249 | ] 250 | }, 251 | "Balabolka": { 252 | "ignore": [ 253 | [ 254 | { 255 | "kind": "Exe", 256 | "id": "balabolka.exe", 257 | "matching_strategy": "Equals" 258 | }, 259 | { 260 | "kind": "Class", 261 | "id": "TBalabolkaForm", 262 | "matching_strategy": "DoesNotEqual" 263 | } 264 | ] 265 | ] 266 | }, 267 | "Barrier": { 268 | "floating": [ 269 | { 270 | "kind": "Exe", 271 | "id": "barrier.exe", 272 | "matching_strategy": "Equals" 273 | } 274 | ] 275 | }, 276 | "Battlestate Games Launcher": { 277 | "floating": [ 278 | { 279 | "kind": "Exe", 280 | "id": "BsgLauncher.exe", 281 | "matching_strategy": "Equals" 282 | } 283 | ] 284 | }, 285 | "Beeper": { 286 | "tray_and_multi_window": [ 287 | { 288 | "kind": "Exe", 289 | "id": "Beeper.exe", 290 | "matching_strategy": "Equals" 291 | } 292 | ] 293 | }, 294 | "Bitwarden": { 295 | "tray_and_multi_window": [ 296 | { 297 | "kind": "Exe", 298 | "id": "Bitwarden.exe", 299 | "matching_strategy": "Equals" 300 | } 301 | ] 302 | }, 303 | "Blender": { 304 | "floating": [ 305 | [ 306 | { 307 | "kind": "Exe", 308 | "id": "blender.exe", 309 | "matching_strategy": "Equals" 310 | }, 311 | { 312 | "kind": "Title", 313 | "id": "Blender", 314 | "matching_strategy": "DoesNotContain" 315 | } 316 | ] 317 | ], 318 | "slow_application": [ 319 | { 320 | "kind": "Exe", 321 | "id": "blender.exe", 322 | "matching_strategy": "Equals" 323 | } 324 | ] 325 | }, 326 | "Blitz": { 327 | "tray_and_multi_window": [ 328 | { 329 | "kind": "Exe", 330 | "id": "Blitz.exe", 331 | "matching_strategy": "Equals" 332 | } 333 | ] 334 | }, 335 | "Bloxstrap": { 336 | "ignore": [ 337 | { 338 | "kind": "Exe", 339 | "id": "Bloxstrap.exe", 340 | "matching_strategy": "Equals" 341 | } 342 | ] 343 | }, 344 | "Brave Browser": { 345 | "tray_and_multi_window": [ 346 | { 347 | "kind": "Exe", 348 | "id": "brave.exe", 349 | "matching_strategy": "Equals" 350 | } 351 | ] 352 | }, 353 | "Browser Tamer": { 354 | "ignore": [ 355 | { 356 | "kind": "Exe", 357 | "id": "bt.exe", 358 | "matching_strategy": "Equals" 359 | } 360 | ] 361 | }, 362 | "Calculator": { 363 | "ignore": [ 364 | { 365 | "kind": "Title", 366 | "id": "Calculator", 367 | "matching_strategy": "Equals" 368 | } 369 | ] 370 | }, 371 | "Citrix Receiver": { 372 | "ignore": [ 373 | { 374 | "kind": "Exe", 375 | "id": "SelfService.exe", 376 | "matching_strategy": "Equals" 377 | } 378 | ], 379 | "tray_and_multi_window": [ 380 | { 381 | "kind": "Exe", 382 | "id": "SelfService.exe", 383 | "matching_strategy": "Equals" 384 | } 385 | ] 386 | }, 387 | "Clash Verge": { 388 | "tray_and_multi_window": [ 389 | { 390 | "kind": "Exe", 391 | "id": "Clash Verge.exe", 392 | "matching_strategy": "Equals" 393 | } 394 | ] 395 | }, 396 | "Clementine": { 397 | "tray_and_multi_window": [ 398 | { 399 | "kind": "Exe", 400 | "id": "clementine.exe", 401 | "matching_strategy": "Equals" 402 | } 403 | ] 404 | }, 405 | "CLion": { 406 | "ignore": [ 407 | { 408 | "kind": "Class", 409 | "id": "SunAwtDialog", 410 | "matching_strategy": "Equals" 411 | } 412 | ], 413 | "tray_and_multi_window": [ 414 | { 415 | "kind": "Exe", 416 | "id": "clion64.exe", 417 | "matching_strategy": "Equals" 418 | } 419 | ], 420 | "object_name_change": [ 421 | { 422 | "kind": "Exe", 423 | "id": "clion64.exe", 424 | "matching_strategy": "Equals" 425 | } 426 | ] 427 | }, 428 | "Clumsy": { 429 | "floating": [ 430 | { 431 | "kind": "Exe", 432 | "id": "clumsy.exe", 433 | "matching_strategy": "Equals" 434 | } 435 | ] 436 | }, 437 | "CopyQ": { 438 | "ignore": [ 439 | { 440 | "kind": "Exe", 441 | "id": "copyq.exe", 442 | "matching_strategy": "Equals" 443 | } 444 | ] 445 | }, 446 | "Core Temp": { 447 | "ignore": [ 448 | { 449 | "kind": "Exe", 450 | "id": "Core Temp.exe", 451 | "matching_strategy": "Equals" 452 | } 453 | ] 454 | }, 455 | "Credential Manager UI Host": { 456 | "ignore": [ 457 | { 458 | "kind": "Exe", 459 | "id": "CredentialUIBroker.exe", 460 | "matching_strategy": "Equals" 461 | } 462 | ] 463 | }, 464 | "Cron": { 465 | "tray_and_multi_window": [ 466 | { 467 | "kind": "Exe", 468 | "id": "Cron.exe", 469 | "matching_strategy": "Equals" 470 | } 471 | ] 472 | }, 473 | "DataGrip": { 474 | "tray_and_multi_window": [ 475 | { 476 | "kind": "Exe", 477 | "id": "datagrip64.exe", 478 | "matching_strategy": "Equals" 479 | } 480 | ], 481 | "object_name_change": [ 482 | { 483 | "kind": "Exe", 484 | "id": "datagrip64.exe", 485 | "matching_strategy": "Equals" 486 | } 487 | ] 488 | }, 489 | "Delphi applications": { 490 | "ignore": [ 491 | { 492 | "kind": "Class", 493 | "id": "TApplication", 494 | "matching_strategy": "Legacy" 495 | }, 496 | { 497 | "kind": "Class", 498 | "id": "TWizardForm", 499 | "matching_strategy": "Legacy" 500 | } 501 | ] 502 | }, 503 | "DesktopMate": { 504 | "ignore": [ 505 | { 506 | "kind": "Exe", 507 | "id": "DesktopMate.exe", 508 | "matching_strategy": "Equals" 509 | } 510 | ] 511 | }, 512 | "Discord": { 513 | "tray_and_multi_window": [ 514 | { 515 | "kind": "Exe", 516 | "id": "Discord.exe", 517 | "matching_strategy": "Equals" 518 | } 519 | ], 520 | "layered": [ 521 | { 522 | "kind": "Exe", 523 | "id": "Discord.exe", 524 | "matching_strategy": "Equals" 525 | } 526 | ] 527 | }, 528 | "DiscordCanary": { 529 | "tray_and_multi_window": [ 530 | { 531 | "kind": "Exe", 532 | "id": "DiscordCanary.exe", 533 | "matching_strategy": "Equals" 534 | } 535 | ], 536 | "layered": [ 537 | { 538 | "kind": "Exe", 539 | "id": "DiscordCanary.exe", 540 | "matching_strategy": "Equals" 541 | } 542 | ] 543 | }, 544 | "DiscordDevelopment": { 545 | "tray_and_multi_window": [ 546 | { 547 | "kind": "Exe", 548 | "id": "DiscordDevelopment.exe", 549 | "matching_strategy": "Equals" 550 | } 551 | ], 552 | "layered": [ 553 | { 554 | "kind": "Exe", 555 | "id": "DiscordDevelopment.exe", 556 | "matching_strategy": "Equals" 557 | } 558 | ] 559 | }, 560 | "DiscordPTB": { 561 | "tray_and_multi_window": [ 562 | { 563 | "kind": "Exe", 564 | "id": "DiscordPTB.exe", 565 | "matching_strategy": "Equals" 566 | } 567 | ], 568 | "layered": [ 569 | { 570 | "kind": "Exe", 571 | "id": "DiscordPTB.exe", 572 | "matching_strategy": "Equals" 573 | } 574 | ] 575 | }, 576 | "Dropbox": { 577 | "ignore": [ 578 | { 579 | "kind": "Exe", 580 | "id": "Dropbox.exe", 581 | "matching_strategy": "Equals" 582 | } 583 | ] 584 | }, 585 | "DS4Windows": { 586 | "tray_and_multi_window": [ 587 | { 588 | "kind": "Exe", 589 | "id": "DS4Windows.exe", 590 | "matching_strategy": "Equals" 591 | } 592 | ] 593 | }, 594 | "EA Desktop": { 595 | "tray_and_multi_window": [ 596 | { 597 | "kind": "Exe", 598 | "id": "EADesktop.exe", 599 | "matching_strategy": "Equals" 600 | } 601 | ] 602 | }, 603 | "Eagle": { 604 | "tray_and_multi_window": [ 605 | { 606 | "kind": "Exe", 607 | "id": "Eagle.exe", 608 | "matching_strategy": "Equals" 609 | } 610 | ] 611 | }, 612 | "Eclipse SWT": { 613 | "object_name_change": [ 614 | { 615 | "kind": "Class", 616 | "id": "SWT_Window", 617 | "matching_strategy": "StartsWith" 618 | } 619 | ] 620 | }, 621 | "ElectronMail": { 622 | "tray_and_multi_window": [ 623 | { 624 | "kind": "Exe", 625 | "id": "ElectronMail.exe", 626 | "matching_strategy": "Equals" 627 | } 628 | ] 629 | }, 630 | "Electrum": { 631 | "ignore": [ 632 | { 633 | "kind": "Title", 634 | "id": "Create/Restore wallet", 635 | "matching_strategy": "Equals" 636 | } 637 | ] 638 | }, 639 | "Element": { 640 | "tray_and_multi_window": [ 641 | { 642 | "kind": "Exe", 643 | "id": "Element.exe", 644 | "matching_strategy": "Equals" 645 | } 646 | ] 647 | }, 648 | "Elephicon": { 649 | "ignore": [ 650 | { 651 | "kind": "Exe", 652 | "id": "Elephicon.exe", 653 | "matching_strategy": "Equals" 654 | } 655 | ] 656 | }, 657 | "ElevenClock": { 658 | "tray_and_multi_window": [ 659 | { 660 | "kind": "Exe", 661 | "id": "ElevenClock.exe", 662 | "matching_strategy": "Equals" 663 | } 664 | ] 665 | }, 666 | "Elgato Camera Hub": { 667 | "ignore": [ 668 | { 669 | "kind": "Exe", 670 | "id": "Camera Hub.exe", 671 | "matching_strategy": "Equals" 672 | } 673 | ] 674 | }, 675 | "Elgato Control Center": { 676 | "ignore": [ 677 | { 678 | "kind": "Exe", 679 | "id": "ControlCenter.exe", 680 | "matching_strategy": "Equals" 681 | } 682 | ] 683 | }, 684 | "Elgato Wave Link": { 685 | "ignore": [ 686 | { 687 | "kind": "Exe", 688 | "id": "WaveLink.exe", 689 | "matching_strategy": "Equals" 690 | } 691 | ] 692 | }, 693 | "Epic Games Launcher": { 694 | "tray_and_multi_window": [ 695 | { 696 | "kind": "Exe", 697 | "id": "EpicGamesLauncher.exe", 698 | "matching_strategy": "Equals" 699 | } 700 | ] 701 | }, 702 | "Everything": { 703 | "tray_and_multi_window": [ 704 | { 705 | "kind": "Class", 706 | "id": "EVERYTHING", 707 | "matching_strategy": "Legacy" 708 | } 709 | ] 710 | }, 711 | "Everything1.5a": { 712 | "manage": [ 713 | { 714 | "kind": "Class", 715 | "id": "EVERYTHING_(1.5a)", 716 | "matching_strategy": "Legacy" 717 | } 718 | ], 719 | "tray_and_multi_window": [ 720 | { 721 | "kind": "Class", 722 | "id": "EVERYTHING_(1.5a)", 723 | "matching_strategy": "Legacy" 724 | } 725 | ] 726 | }, 727 | "f.lux": { 728 | "ignore": [ 729 | { 730 | "kind": "Exe", 731 | "id": "flux.exe", 732 | "matching_strategy": "Equals" 733 | } 734 | ], 735 | "tray_and_multi_window": [ 736 | { 737 | "kind": "Exe", 738 | "id": "flux.exe", 739 | "matching_strategy": "Equals" 740 | } 741 | ] 742 | }, 743 | "FFMetrics": { 744 | "tray_and_multi_window": [ 745 | { 746 | "kind": "Exe", 747 | "id": "FFMetrics.exe", 748 | "matching_strategy": "Equals" 749 | } 750 | ] 751 | }, 752 | "Files": { 753 | "tray_and_multi_window": [ 754 | { 755 | "kind": "Exe", 756 | "id": "Files.exe", 757 | "matching_strategy": "Equals" 758 | } 759 | ] 760 | }, 761 | "Fork": { 762 | "ignore": [ 763 | [ 764 | { 765 | "kind": "Exe", 766 | "id": "Fork.exe", 767 | "matching_strategy": "Equals" 768 | }, 769 | { 770 | "kind": "Title", 771 | "id": "Fork -", 772 | "matching_strategy": "DoesNotStartWith" 773 | } 774 | ] 775 | ] 776 | }, 777 | "FreeCAD": { 778 | "floating": [ 779 | [ 780 | { 781 | "kind": "Exe", 782 | "id": "freecad.exe", 783 | "matching_strategy": "Equals" 784 | }, 785 | { 786 | "kind": "Class", 787 | "id": "Qt51515QWindowIcon", 788 | "matching_strategy": "Equals" 789 | } 790 | ] 791 | ] 792 | }, 793 | "FreeTube": { 794 | "tray_and_multi_window": [ 795 | { 796 | "kind": "Exe", 797 | "id": "FreeTube.exe", 798 | "matching_strategy": "Equals" 799 | } 800 | ], 801 | "ignore": [ 802 | [ 803 | { 804 | "kind": "Exe", 805 | "id": "FreeTube.exe", 806 | "matching_strategy": "Equals" 807 | }, 808 | { 809 | "kind": "Title", 810 | "id": "Picture in picture", 811 | "matching_strategy": "Equals" 812 | } 813 | ] 814 | ] 815 | }, 816 | "GIMP": { 817 | "floating": [ 818 | [ 819 | { 820 | "kind": "Exe", 821 | "id": "gimp", 822 | "matching_strategy": "StartsWith" 823 | }, 824 | { 825 | "kind": "Title", 826 | "id": "GNU", 827 | "matching_strategy": "DoesNotContain" 828 | }, 829 | { 830 | "kind": "Title", 831 | "id": "GIMP", 832 | "matching_strategy": "DoesNotEndWith" 833 | } 834 | ], 835 | [ 836 | { 837 | "kind": "Exe", 838 | "id": "gimp", 839 | "matching_strategy": "StartsWith" 840 | }, 841 | { 842 | "kind": "Title", 843 | "id": "About GIMP", 844 | "matching_strategy": "Equals" 845 | } 846 | ] 847 | ] 848 | }, 849 | "GitHub Credential Manager": { 850 | "ignore": [ 851 | { 852 | "kind": "Exe", 853 | "id": "git-credential-manager.exe", 854 | "matching_strategy": "Equals" 855 | } 856 | ] 857 | }, 858 | "Godot Engine": { 859 | "object_name_change": [ 860 | { 861 | "kind": "Exe", 862 | "id": "Godot_v", 863 | "matching_strategy": "StartsWith" 864 | } 865 | ] 866 | }, 867 | "Godot Manager": { 868 | "manage": [ 869 | { 870 | "kind": "Exe", 871 | "id": "GodotManager.exe", 872 | "matching_strategy": "Equals" 873 | } 874 | ], 875 | "object_name_change": [ 876 | { 877 | "kind": "Exe", 878 | "id": "GodotManager.exe", 879 | "matching_strategy": "Equals" 880 | } 881 | ] 882 | }, 883 | "GOG Galaxy": { 884 | "ignore": [ 885 | { 886 | "kind": "Class", 887 | "id": "Chrome_RenderWidgetHostHWND", 888 | "matching_strategy": "Legacy" 889 | } 890 | ], 891 | "manage": [ 892 | { 893 | "kind": "Exe", 894 | "id": "GalaxyClient.exe", 895 | "matching_strategy": "Equals" 896 | } 897 | ], 898 | "tray_and_multi_window": [ 899 | { 900 | "kind": "Exe", 901 | "id": "GalaxyClient.exe", 902 | "matching_strategy": "Equals" 903 | } 904 | ] 905 | }, 906 | "GoLand": { 907 | "ignore": [ 908 | { 909 | "kind": "Class", 910 | "id": "SunAwtDialog", 911 | "matching_strategy": "Equals" 912 | } 913 | ], 914 | "tray_and_multi_window": [ 915 | { 916 | "kind": "Exe", 917 | "id": "goland64.exe", 918 | "matching_strategy": "Equals" 919 | } 920 | ], 921 | "object_name_change": [ 922 | { 923 | "kind": "Exe", 924 | "id": "goland64.exe", 925 | "matching_strategy": "Equals" 926 | } 927 | ] 928 | }, 929 | "Golden Dict": { 930 | "tray_and_multi_window": [ 931 | { 932 | "kind": "Exe", 933 | "id": "GoldenDict.exe", 934 | "matching_strategy": "Equals" 935 | } 936 | ] 937 | }, 938 | "Google Chrome": { 939 | "tray_and_multi_window": [ 940 | { 941 | "kind": "Exe", 942 | "id": "chrome.exe", 943 | "matching_strategy": "Equals" 944 | } 945 | ] 946 | }, 947 | "Google Drive": { 948 | "ignore": [ 949 | { 950 | "kind": "Exe", 951 | "id": "GoogleDriveFS.exe", 952 | "matching_strategy": "Equals" 953 | } 954 | ], 955 | "tray_and_multi_window": [ 956 | { 957 | "kind": "Exe", 958 | "id": "GoogleDriveFS.exe", 959 | "matching_strategy": "Equals" 960 | } 961 | ] 962 | }, 963 | "Google Earth Pro": { 964 | "ignore": [ 965 | [ 966 | { 967 | "kind": "Class", 968 | "id": "Qt5QWindowToolSaveBits", 969 | "matching_strategy": "Equals" 970 | }, 971 | { 972 | "kind": "Exe", 973 | "id": "googleearth.exe", 974 | "matching_strategy": "Equals" 975 | } 976 | ], 977 | [ 978 | { 979 | "kind": "Class", 980 | "id": "Qt5QWindowIcon", 981 | "matching_strategy": "Equals" 982 | }, 983 | { 984 | "kind": "Title", 985 | "id": "Google Earth Pro", 986 | "matching_strategy": "DoesNotEqual" 987 | }, 988 | { 989 | "kind": "Exe", 990 | "id": "googleearth.exe", 991 | "matching_strategy": "Equals" 992 | } 993 | ] 994 | ] 995 | }, 996 | "GoPro Webcam": { 997 | "tray_and_multi_window": [ 998 | { 999 | "kind": "Class", 1000 | "id": "GoPro Webcam", 1001 | "matching_strategy": "Legacy" 1002 | } 1003 | ] 1004 | }, 1005 | "Grayjay": { 1006 | "manage": [ 1007 | [ 1008 | { 1009 | "kind": "Exe", 1010 | "id": "dotcefnative.exe", 1011 | "matching_strategy": "Equals" 1012 | }, 1013 | { 1014 | "kind": "Title", 1015 | "id": "Grayjay", 1016 | "matching_strategy": "Equals" 1017 | } 1018 | ], 1019 | [ 1020 | { 1021 | "kind": "Exe", 1022 | "id": "dotcefnative.exe", 1023 | "matching_strategy": "Equals" 1024 | }, 1025 | { 1026 | "kind": "Title", 1027 | "id": "Grayjay (Sub)", 1028 | "matching_strategy": "Equals" 1029 | } 1030 | ] 1031 | ] 1032 | }, 1033 | "Guitar Rig 7": { 1034 | "ignore": [ 1035 | { 1036 | "kind": "Exe", 1037 | "id": "Guitar Rig 7.exe", 1038 | "matching_strategy": "Equals" 1039 | } 1040 | ] 1041 | }, 1042 | "Hammer": { 1043 | "tray_and_multi_window": [ 1044 | { 1045 | "kind": "Exe", 1046 | "id": "hammer.exe", 1047 | "matching_strategy": "Equals" 1048 | } 1049 | ], 1050 | "ignore": [ 1051 | [ 1052 | { 1053 | "kind": "Exe", 1054 | "id": "hammer.exe", 1055 | "matching_strategy": "Equals" 1056 | }, 1057 | { 1058 | "kind": "Class", 1059 | "id": "Afx:", 1060 | "matching_strategy": "StartsWith" 1061 | } 1062 | ] 1063 | ], 1064 | "slow_application": [ 1065 | { 1066 | "kind": "Exe", 1067 | "id": "hammer.exe", 1068 | "matching_strategy": "Equals" 1069 | } 1070 | ] 1071 | }, 1072 | "Honkai Star Rail": { 1073 | "manage": [ 1074 | { 1075 | "kind": "Exe", 1076 | "id": "StarRail.Exe", 1077 | "matching_strategy": "Equals" 1078 | } 1079 | ] 1080 | }, 1081 | "HWiNFO64": { 1082 | "tray_and_multi_window": [ 1083 | { 1084 | "kind": "Exe", 1085 | "id": "HWiNFO64.EXE", 1086 | "matching_strategy": "Equals" 1087 | } 1088 | ] 1089 | }, 1090 | "HxD": { 1091 | "tray_and_multi_window": [ 1092 | { 1093 | "kind": "Exe", 1094 | "id": "HxD.exe", 1095 | "matching_strategy": "Equals" 1096 | } 1097 | ], 1098 | "ignore": [ 1099 | [ 1100 | { 1101 | "kind": "Exe", 1102 | "id": "HxD.exe", 1103 | "matching_strategy": "Equals" 1104 | }, 1105 | { 1106 | "kind": "Class", 1107 | "id": "TFormHexView", 1108 | "matching_strategy": "Equals" 1109 | } 1110 | ] 1111 | ] 1112 | }, 1113 | "IDA": { 1114 | "tray_and_multi_window": [ 1115 | { 1116 | "kind": "Exe", 1117 | "id": "ida.exe", 1118 | "matching_strategy": "Equals" 1119 | }, 1120 | { 1121 | "kind": "Exe", 1122 | "id": "ida64.exe", 1123 | "matching_strategy": "Equals" 1124 | } 1125 | ], 1126 | "floating": [ 1127 | [ 1128 | { 1129 | "kind": "Exe", 1130 | "id": "ida.exe", 1131 | "matching_strategy": "Equals" 1132 | }, 1133 | { 1134 | "kind": "Title", 1135 | "id": "IDA -", 1136 | "matching_strategy": "DoesNotStartWith" 1137 | }, 1138 | { 1139 | "kind": "Title", 1140 | "id": "IDA v", 1141 | "matching_strategy": "DoesNotStartWith" 1142 | } 1143 | ], 1144 | [ 1145 | { 1146 | "kind": "Exe", 1147 | "id": "ida64.exe", 1148 | "matching_strategy": "Equals" 1149 | }, 1150 | { 1151 | "kind": "Title", 1152 | "id": "IDA -", 1153 | "matching_strategy": "DoesNotStartWith" 1154 | }, 1155 | { 1156 | "kind": "Title", 1157 | "id": "IDA v", 1158 | "matching_strategy": "DoesNotStartWith" 1159 | } 1160 | ] 1161 | ] 1162 | }, 1163 | "IntelliJ IDEA": { 1164 | "ignore": [ 1165 | { 1166 | "kind": "Class", 1167 | "id": "SunAwtDialog", 1168 | "matching_strategy": "Equals" 1169 | } 1170 | ], 1171 | "tray_and_multi_window": [ 1172 | { 1173 | "kind": "Exe", 1174 | "id": "idea64.exe", 1175 | "matching_strategy": "Equals" 1176 | } 1177 | ], 1178 | "object_name_change": [ 1179 | { 1180 | "kind": "Exe", 1181 | "id": "idea64.exe", 1182 | "matching_strategy": "Equals" 1183 | } 1184 | ] 1185 | }, 1186 | "Itch.io": { 1187 | "tray_and_multi_window": [ 1188 | { 1189 | "kind": "Exe", 1190 | "id": "itch.exe", 1191 | "matching_strategy": "Equals" 1192 | } 1193 | ] 1194 | }, 1195 | "JavaFX": { 1196 | "object_name_change": [ 1197 | { 1198 | "kind": "Class", 1199 | "id": "GlassWndClass-GlassWindowClass", 1200 | "matching_strategy": "StartsWith" 1201 | } 1202 | ] 1203 | }, 1204 | "JetBrains Client": { 1205 | "ignore": [ 1206 | { 1207 | "kind": "Class", 1208 | "id": "SunAwtDialog", 1209 | "matching_strategy": "Equals" 1210 | } 1211 | ], 1212 | "tray_and_multi_window": [ 1213 | { 1214 | "kind": "Exe", 1215 | "id": "jetbrains_client64.exe", 1216 | "matching_strategy": "Equals" 1217 | } 1218 | ], 1219 | "object_name_change": [ 1220 | { 1221 | "kind": "Exe", 1222 | "id": "jetbrains_client64.exe", 1223 | "matching_strategy": "Equals" 1224 | } 1225 | ] 1226 | }, 1227 | "Keyviz": { 1228 | "ignore": [ 1229 | { 1230 | "kind": "Exe", 1231 | "id": "keyviz.exe", 1232 | "matching_strategy": "Equals" 1233 | } 1234 | ] 1235 | }, 1236 | "Kleopatra": { 1237 | "tray_and_multi_window": [ 1238 | { 1239 | "kind": "Exe", 1240 | "id": "kleopatra.exe", 1241 | "matching_strategy": "Equals" 1242 | } 1243 | ] 1244 | }, 1245 | "komorebi-bar": { 1246 | "ignore": [ 1247 | { 1248 | "kind": "Exe", 1249 | "id": "komorebi-bar.exe", 1250 | "matching_strategy": "Equals" 1251 | } 1252 | ] 1253 | }, 1254 | "komorebi-gui": { 1255 | "ignore": [ 1256 | { 1257 | "kind": "Exe", 1258 | "id": "komorebi-gui.exe", 1259 | "matching_strategy": "Equals" 1260 | } 1261 | ] 1262 | }, 1263 | "KOOK": { 1264 | "tray_and_multi_window": [ 1265 | { 1266 | "kind": "Exe", 1267 | "id": "KOOK.exe", 1268 | "matching_strategy": "Equals" 1269 | } 1270 | ] 1271 | }, 1272 | "Kotatogram": { 1273 | "tray_and_multi_window": [ 1274 | { 1275 | "kind": "Exe", 1276 | "id": "Kotatogram.exe", 1277 | "matching_strategy": "Equals" 1278 | } 1279 | ] 1280 | }, 1281 | "Lens": { 1282 | "ignore": [ 1283 | [ 1284 | { 1285 | "kind": "Exe", 1286 | "id": "Lens.exe", 1287 | "matching_strategy": "Equals" 1288 | }, 1289 | { 1290 | "kind": "Title", 1291 | "id": "Loading", 1292 | "matching_strategy": "Equals" 1293 | } 1294 | ] 1295 | ] 1296 | }, 1297 | "Libre Hardware Monitor": { 1298 | "tray_and_multi_window": [ 1299 | { 1300 | "kind": "Exe", 1301 | "id": "LibreHardwareMonitor.exe", 1302 | "matching_strategy": "Equals" 1303 | } 1304 | ] 1305 | }, 1306 | "LibreCAD": { 1307 | "ignore": [ 1308 | [ 1309 | { 1310 | "kind": "Title", 1311 | "id": "LibreCAD", 1312 | "matching_strategy": "DoesNotStartWith" 1313 | }, 1314 | { 1315 | "kind": "Exe", 1316 | "id": "LibreCAD.exe", 1317 | "matching_strategy": "Equals" 1318 | } 1319 | ] 1320 | ] 1321 | }, 1322 | "LibreOffice": { 1323 | "object_name_change": [ 1324 | { 1325 | "kind": "Exe", 1326 | "id": "soffice.bin", 1327 | "matching_strategy": "Equals" 1328 | } 1329 | ] 1330 | }, 1331 | "Line": { 1332 | "floating": [ 1333 | { 1334 | "kind": "Exe", 1335 | "id": "LineMediaPlayer.exe", 1336 | "matching_strategy": "Equals" 1337 | } 1338 | ] 1339 | }, 1340 | "LocalSend": { 1341 | "tray_and_multi_window": [ 1342 | { 1343 | "kind": "Exe", 1344 | "id": "localsend_app.exe", 1345 | "matching_strategy": "Equals" 1346 | } 1347 | ] 1348 | }, 1349 | "Logi Bolt": { 1350 | "ignore": [ 1351 | { 1352 | "kind": "Exe", 1353 | "id": "LogiBolt.exe", 1354 | "matching_strategy": "Equals" 1355 | } 1356 | ] 1357 | }, 1358 | "Logitech G HUB": { 1359 | "tray_and_multi_window": [ 1360 | { 1361 | "kind": "Exe", 1362 | "id": "lghub.exe", 1363 | "matching_strategy": "Equals" 1364 | } 1365 | ] 1366 | }, 1367 | "Logitech Options": { 1368 | "ignore": [ 1369 | { 1370 | "kind": "Exe", 1371 | "id": "LogiOptionsUI.exe", 1372 | "matching_strategy": "Equals" 1373 | } 1374 | ] 1375 | }, 1376 | "LogiTune": { 1377 | "ignore": [ 1378 | { 1379 | "kind": "Exe", 1380 | "id": "LogiTune.exe", 1381 | "matching_strategy": "Equals" 1382 | } 1383 | ], 1384 | "tray_and_multi_window": [ 1385 | { 1386 | "kind": "Exe", 1387 | "id": "LogiTune.exe", 1388 | "matching_strategy": "Equals" 1389 | } 1390 | ] 1391 | }, 1392 | "MacType": { 1393 | "tray_and_multi_window": [ 1394 | { 1395 | "kind": "Exe", 1396 | "id": "MacTray.exe", 1397 | "matching_strategy": "Equals" 1398 | } 1399 | ] 1400 | }, 1401 | "Mailspring": { 1402 | "tray_and_multi_window": [ 1403 | { 1404 | "kind": "Exe", 1405 | "id": "mailspring.exe", 1406 | "matching_strategy": "Equals" 1407 | } 1408 | ] 1409 | }, 1410 | "ManicTime": { 1411 | "manage": [ 1412 | { 1413 | "kind": "Exe", 1414 | "id": "ManicTimeClient.exe", 1415 | "matching_strategy": "Equals" 1416 | } 1417 | ], 1418 | "tray_and_multi_window": [ 1419 | { 1420 | "kind": "Exe", 1421 | "id": "ManicTimeClient.exe", 1422 | "matching_strategy": "Equals" 1423 | } 1424 | ], 1425 | "object_name_change": [ 1426 | { 1427 | "kind": "Exe", 1428 | "id": "ManicTimeClient.exe", 1429 | "matching_strategy": "Equals" 1430 | } 1431 | ] 1432 | }, 1433 | "ManyCam": { 1434 | "tray_and_multi_window": [ 1435 | { 1436 | "kind": "Exe", 1437 | "id": "ManyCam.exe", 1438 | "matching_strategy": "Equals" 1439 | } 1440 | ] 1441 | }, 1442 | "Mattermost": { 1443 | "tray_and_multi_window": [ 1444 | { 1445 | "kind": "Exe", 1446 | "id": "Mattermost.exe", 1447 | "matching_strategy": "Equals" 1448 | } 1449 | ] 1450 | }, 1451 | "MaxxAudioPro": { 1452 | "ignore": [ 1453 | [ 1454 | { 1455 | "kind": "Exe", 1456 | "id": "ApplicationFrameHost.exe", 1457 | "matching_strategy": "Equals" 1458 | }, 1459 | { 1460 | "kind": "Title", 1461 | "id": "MaxxAudioPro", 1462 | "matching_strategy": "Equals" 1463 | } 1464 | ] 1465 | ] 1466 | }, 1467 | "MicMute": { 1468 | "floating": [ 1469 | { 1470 | "kind": "Exe", 1471 | "id": "MicMute.exe", 1472 | "matching_strategy": "Equals" 1473 | } 1474 | ] 1475 | }, 1476 | "Microsoft Active Accessibility": { 1477 | "ignore": [ 1478 | { 1479 | "kind": "Class", 1480 | "id": "#32770", 1481 | "matching_strategy": "Legacy" 1482 | } 1483 | ] 1484 | }, 1485 | "Microsoft Edge": { 1486 | "ignore": [ 1487 | [ 1488 | { 1489 | "kind": "Exe", 1490 | "id": "msedge.exe", 1491 | "matching_strategy": "Equals" 1492 | }, 1493 | { 1494 | "kind": "Class", 1495 | "id": "Chrome_WidgetWin_2", 1496 | "matching_strategy": "Equals" 1497 | } 1498 | ] 1499 | ] 1500 | }, 1501 | "Microsoft Excel": { 1502 | "ignore": [ 1503 | { 1504 | "kind": "Class", 1505 | "id": "_WwB", 1506 | "matching_strategy": "Legacy" 1507 | } 1508 | ], 1509 | "layered": [ 1510 | { 1511 | "kind": "Exe", 1512 | "id": "EXCEL.EXE", 1513 | "matching_strategy": "Equals" 1514 | } 1515 | ] 1516 | }, 1517 | "Microsoft IME Pad": { 1518 | "floating": [ 1519 | { 1520 | "kind": "Exe", 1521 | "id": "IMEPADSV.EXE", 1522 | "matching_strategy": "Equals" 1523 | } 1524 | ] 1525 | }, 1526 | "Microsoft Outlook": { 1527 | "ignore": [ 1528 | { 1529 | "kind": "Class", 1530 | "id": "_WwB", 1531 | "matching_strategy": "Legacy" 1532 | }, 1533 | { 1534 | "kind": "Class", 1535 | "id": "MsoSplash", 1536 | "matching_strategy": "Equals" 1537 | } 1538 | ], 1539 | "tray_and_multi_window": [ 1540 | { 1541 | "kind": "Exe", 1542 | "id": "OUTLOOK.EXE", 1543 | "matching_strategy": "Equals" 1544 | } 1545 | ], 1546 | "layered": [ 1547 | { 1548 | "kind": "Exe", 1549 | "id": "OUTLOOK.EXE", 1550 | "matching_strategy": "Equals" 1551 | } 1552 | ] 1553 | }, 1554 | "Microsoft PC Manager": { 1555 | "ignore": [ 1556 | { 1557 | "kind": "Exe", 1558 | "id": "MSPCManager.exe", 1559 | "matching_strategy": "Equals" 1560 | } 1561 | ] 1562 | }, 1563 | "Microsoft PowerPoint": { 1564 | "ignore": [ 1565 | { 1566 | "kind": "Class", 1567 | "id": "_WwB", 1568 | "matching_strategy": "Legacy" 1569 | } 1570 | ], 1571 | "layered": [ 1572 | { 1573 | "kind": "Exe", 1574 | "id": "POWERPNT.EXE", 1575 | "matching_strategy": "Equals" 1576 | } 1577 | ] 1578 | }, 1579 | "Microsoft SQL Server Management Studio": { 1580 | "floating": [ 1581 | [ 1582 | { 1583 | "kind": "Exe", 1584 | "id": "Ssms.exe", 1585 | "matching_strategy": "Equals" 1586 | }, 1587 | { 1588 | "kind": "Class", 1589 | "id": "WindowsForms10.Window.8.app", 1590 | "matching_strategy": "StartsWith" 1591 | } 1592 | ] 1593 | ] 1594 | }, 1595 | "Microsoft Teams": { 1596 | "tray_and_multi_window": [ 1597 | { 1598 | "kind": "Class", 1599 | "id": "TeamsWebView", 1600 | "matching_strategy": "Equals" 1601 | } 1602 | ], 1603 | "object_name_change": [ 1604 | { 1605 | "kind": "Class", 1606 | "id": "TeamsWebView", 1607 | "matching_strategy": "Equals" 1608 | } 1609 | ] 1610 | }, 1611 | "Microsoft Teams classic": { 1612 | "ignore": [ 1613 | { 1614 | "kind": "Title", 1615 | "id": "Microsoft Teams Notification", 1616 | "matching_strategy": "Legacy" 1617 | }, 1618 | { 1619 | "kind": "Title", 1620 | "id": "Microsoft Teams Call", 1621 | "matching_strategy": "Legacy" 1622 | } 1623 | ] 1624 | }, 1625 | "Microsoft Terminal Services Client": { 1626 | "ignore": [ 1627 | { 1628 | "kind": "Class", 1629 | "id": "OPContainerClass", 1630 | "matching_strategy": "Equals" 1631 | }, 1632 | { 1633 | "kind": "Class", 1634 | "id": "IHWindowClass", 1635 | "matching_strategy": "Equals" 1636 | } 1637 | ] 1638 | }, 1639 | "Microsoft Word": { 1640 | "ignore": [ 1641 | { 1642 | "kind": "Class", 1643 | "id": "_WwB", 1644 | "matching_strategy": "Legacy" 1645 | } 1646 | ], 1647 | "layered": [ 1648 | { 1649 | "kind": "Exe", 1650 | "id": "WINWORD.EXE", 1651 | "matching_strategy": "Equals" 1652 | } 1653 | ], 1654 | "tray_and_multi_window": [ 1655 | { 1656 | "kind": "Exe", 1657 | "id": "WINWORD.exe", 1658 | "matching_strategy": "Equals" 1659 | } 1660 | ] 1661 | }, 1662 | "MobaXterm": { 1663 | "manage": [ 1664 | [ 1665 | { 1666 | "kind": "Exe", 1667 | "id": "MobaXterm.exe", 1668 | "matching_strategy": "Equals" 1669 | }, 1670 | { 1671 | "kind": "Class", 1672 | "id": "TMobaXtermForm", 1673 | "matching_strategy": "Equals" 1674 | } 1675 | ] 1676 | ] 1677 | }, 1678 | "Mod Organizer 2": { 1679 | "ignore": [ 1680 | [ 1681 | { 1682 | "kind": "Exe", 1683 | "id": "ModOrganizer.exe", 1684 | "matching_strategy": "Equals" 1685 | }, 1686 | { 1687 | "kind": "Title", 1688 | "id": "Extracting files", 1689 | "matching_strategy": "Equals" 1690 | } 1691 | ] 1692 | ] 1693 | }, 1694 | "Modern Flyouts": { 1695 | "tray_and_multi_window": [ 1696 | { 1697 | "kind": "Exe", 1698 | "id": "ModernFlyoutsHost.exe", 1699 | "matching_strategy": "Equals" 1700 | } 1701 | ] 1702 | }, 1703 | "MOTU M-Series": { 1704 | "floating": [ 1705 | { 1706 | "kind": "Exe", 1707 | "id": "MOTUMSeries.exe", 1708 | "matching_strategy": "Equals" 1709 | } 1710 | ] 1711 | }, 1712 | "Mozilla Firefox": { 1713 | "ignore": [ 1714 | { 1715 | "kind": "Class", 1716 | "id": "MozillaDialogClass", 1717 | "matching_strategy": "Equals" 1718 | }, 1719 | { 1720 | "kind": "Class", 1721 | "id": "MozillaTaskbarPreviewClass", 1722 | "matching_strategy": "Legacy" 1723 | }, 1724 | [ 1725 | { 1726 | "kind": "Title", 1727 | "id": "Picture-in-Picture", 1728 | "matching_strategy": "Equals" 1729 | }, 1730 | { 1731 | "kind": "Exe", 1732 | "id": "firefox.exe", 1733 | "matching_strategy": "Equals" 1734 | } 1735 | ] 1736 | ], 1737 | "tray_and_multi_window": [ 1738 | { 1739 | "kind": "Exe", 1740 | "id": "firefox.exe", 1741 | "matching_strategy": "Equals" 1742 | } 1743 | ], 1744 | "object_name_change": [ 1745 | { 1746 | "kind": "Exe", 1747 | "id": "firefox.exe", 1748 | "matching_strategy": "Equals" 1749 | } 1750 | ], 1751 | "slow_application": [ 1752 | { 1753 | "kind": "Exe", 1754 | "id": "firefox.exe", 1755 | "matching_strategy": "Equals" 1756 | } 1757 | ] 1758 | }, 1759 | "mpv": { 1760 | "object_name_change": [ 1761 | { 1762 | "kind": "Class", 1763 | "id": "mpv", 1764 | "matching_strategy": "Legacy" 1765 | } 1766 | ] 1767 | }, 1768 | "mpv.net": { 1769 | "object_name_change": [ 1770 | { 1771 | "kind": "Exe", 1772 | "id": "mpvnet.exe", 1773 | "matching_strategy": "Equals" 1774 | } 1775 | ] 1776 | }, 1777 | "NetEase Cloud Music": { 1778 | "tray_and_multi_window": [ 1779 | { 1780 | "kind": "Exe", 1781 | "id": "cloudmusic.exe", 1782 | "matching_strategy": "Equals" 1783 | } 1784 | ] 1785 | }, 1786 | "NiceHash Miner": { 1787 | "manage": [ 1788 | { 1789 | "kind": "Exe", 1790 | "id": "nhm_app.exe", 1791 | "matching_strategy": "Equals" 1792 | } 1793 | ] 1794 | }, 1795 | "NohBoard": { 1796 | "ignore": [ 1797 | { 1798 | "kind": "Exe", 1799 | "id": "NohBoard.exe", 1800 | "matching_strategy": "Equals" 1801 | } 1802 | ] 1803 | }, 1804 | "Notion": { 1805 | "ignore": [ 1806 | { 1807 | "kind": "Title", 1808 | "id": "Notion - Command Search", 1809 | "matching_strategy": "Equals" 1810 | } 1811 | ], 1812 | "tray_and_multi_window": [ 1813 | { 1814 | "kind": "Exe", 1815 | "id": "Notion.exe", 1816 | "matching_strategy": "Equals" 1817 | } 1818 | ] 1819 | }, 1820 | "Notion Calendar": { 1821 | "tray_and_multi_window": [ 1822 | { 1823 | "kind": "Exe", 1824 | "id": "Notion Calendar.exe", 1825 | "matching_strategy": "Equals" 1826 | } 1827 | ] 1828 | }, 1829 | "Notion Enhanced": { 1830 | "tray_and_multi_window": [ 1831 | { 1832 | "kind": "Exe", 1833 | "id": "Notion Enhanced.exe", 1834 | "matching_strategy": "Equals" 1835 | } 1836 | ] 1837 | }, 1838 | "NZXT CAM": { 1839 | "tray_and_multi_window": [ 1840 | { 1841 | "kind": "Exe", 1842 | "id": "NZXT CAM.exe", 1843 | "matching_strategy": "Equals" 1844 | } 1845 | ] 1846 | }, 1847 | "OBS Studio (32-bit)": { 1848 | "tray_and_multi_window": [ 1849 | { 1850 | "kind": "Exe", 1851 | "id": "obs32.exe", 1852 | "matching_strategy": "Equals" 1853 | } 1854 | ] 1855 | }, 1856 | "OBS Studio (64-bit)": { 1857 | "tray_and_multi_window": [ 1858 | { 1859 | "kind": "Exe", 1860 | "id": "obs64.exe", 1861 | "matching_strategy": "Equals" 1862 | } 1863 | ] 1864 | }, 1865 | "OneDrive": { 1866 | "ignore": [ 1867 | { 1868 | "kind": "Class", 1869 | "id": "OneDriveReactNativeWin32WindowClass", 1870 | "matching_strategy": "Legacy" 1871 | } 1872 | ] 1873 | }, 1874 | "OneQuick": { 1875 | "tray_and_multi_window": [ 1876 | { 1877 | "kind": "Exe", 1878 | "id": "OneQuick.exe", 1879 | "matching_strategy": "Equals" 1880 | } 1881 | ] 1882 | }, 1883 | "ONLYOFFICE Editors": { 1884 | "tray_and_multi_window": [ 1885 | { 1886 | "kind": "Class", 1887 | "id": "DocEditorsWindowClass", 1888 | "matching_strategy": "Legacy" 1889 | } 1890 | ] 1891 | }, 1892 | "OpenRGB": { 1893 | "tray_and_multi_window": [ 1894 | { 1895 | "kind": "Exe", 1896 | "id": "OpenRGB.exe", 1897 | "matching_strategy": "Equals" 1898 | } 1899 | ] 1900 | }, 1901 | "paint.net": { 1902 | "ignore": [ 1903 | { 1904 | "kind": "Exe", 1905 | "id": "paintdotnet.exe", 1906 | "matching_strategy": "Equals" 1907 | } 1908 | ] 1909 | }, 1910 | "Paradox Launcher": { 1911 | "ignore": [ 1912 | { 1913 | "kind": "Exe", 1914 | "id": "Paradox Launcher.exe", 1915 | "matching_strategy": "Equals" 1916 | } 1917 | ] 1918 | }, 1919 | "PAYDAY 2": { 1920 | "ignore": [ 1921 | { 1922 | "kind": "Exe", 1923 | "id": "payday2_win32_release.exe", 1924 | "matching_strategy": "Equals" 1925 | } 1926 | ] 1927 | }, 1928 | "PhpStorm": { 1929 | "ignore": [ 1930 | { 1931 | "kind": "Class", 1932 | "id": "SunAwtDialog", 1933 | "matching_strategy": "Equals" 1934 | } 1935 | ], 1936 | "tray_and_multi_window": [ 1937 | { 1938 | "kind": "Exe", 1939 | "id": "phpstorm64.exe", 1940 | "matching_strategy": "Equals" 1941 | } 1942 | ], 1943 | "object_name_change": [ 1944 | { 1945 | "kind": "Exe", 1946 | "id": "phpstorm64.exe", 1947 | "matching_strategy": "Equals" 1948 | } 1949 | ] 1950 | }, 1951 | "pinentry": { 1952 | "ignore": [ 1953 | { 1954 | "kind": "Exe", 1955 | "id": "pinentry.exe", 1956 | "matching_strategy": "Equals" 1957 | } 1958 | ] 1959 | }, 1960 | "Playnite": { 1961 | "ignore": [ 1962 | { 1963 | "kind": "Exe", 1964 | "id": "Playnite.FullscreenApp.exe", 1965 | "matching_strategy": "Equals" 1966 | } 1967 | ], 1968 | "tray_and_multi_window": [ 1969 | { 1970 | "kind": "Exe", 1971 | "id": "Playnite.DesktopApp.exe", 1972 | "matching_strategy": "Equals" 1973 | } 1974 | ] 1975 | }, 1976 | "PowerToys": { 1977 | "ignore": [ 1978 | { 1979 | "kind": "Exe", 1980 | "id": "PowerToys.ColorPickerUI.exe", 1981 | "matching_strategy": "Equals" 1982 | }, 1983 | { 1984 | "kind": "Exe", 1985 | "id": "PowerToys.CropAndLock.exe", 1986 | "matching_strategy": "Equals" 1987 | }, 1988 | { 1989 | "kind": "Exe", 1990 | "id": "PowerToys.ImageResizer.exe", 1991 | "matching_strategy": "Equals" 1992 | }, 1993 | { 1994 | "kind": "Exe", 1995 | "id": "PowerToys.Peek.UI.exe", 1996 | "matching_strategy": "Equals" 1997 | }, 1998 | { 1999 | "kind": "Exe", 2000 | "id": "PowerToys.PowerLauncher.exe", 2001 | "matching_strategy": "Equals" 2002 | }, 2003 | { 2004 | "kind": "Exe", 2005 | "id": "PowerToys.PowerAccent.exe", 2006 | "matching_strategy": "Equals" 2007 | }, 2008 | { 2009 | "kind": "Exe", 2010 | "id": "PowerToys.AdvancedPaste.exe", 2011 | "matching_strategy": "Equals" 2012 | }, 2013 | { 2014 | "kind": "Exe", 2015 | "id": "PowerToys.FileLocksmithUI.exe", 2016 | "matching_strategy": "Equals" 2017 | }, 2018 | { 2019 | "kind": "Exe", 2020 | "id": "Microsoft.CmdPal.UI.exe", 2021 | "matching_strategy": "Equals" 2022 | } 2023 | ] 2024 | }, 2025 | "Prime95": { 2026 | "floating": [ 2027 | { 2028 | "kind": "Exe", 2029 | "id": "prime95.exe", 2030 | "matching_strategy": "Equals" 2031 | } 2032 | ] 2033 | }, 2034 | "Prism Launcher": { 2035 | "floating": [ 2036 | [ 2037 | { 2038 | "kind": "Exe", 2039 | "id": "prismlauncher.exe", 2040 | "matching_strategy": "Equals" 2041 | }, 2042 | { 2043 | "kind": "Title", 2044 | "id": "- Prism Launcher", 2045 | "matching_strategy": "Contains" 2046 | } 2047 | ] 2048 | ] 2049 | }, 2050 | "Process Hacker": { 2051 | "ignore": [ 2052 | { 2053 | "kind": "Exe", 2054 | "id": "ProcessHacker.exe", 2055 | "matching_strategy": "Equals" 2056 | } 2057 | ], 2058 | "tray_and_multi_window": [ 2059 | { 2060 | "kind": "Exe", 2061 | "id": "ProcessHacker.exe", 2062 | "matching_strategy": "Equals" 2063 | } 2064 | ] 2065 | }, 2066 | "ProtonDrive": { 2067 | "tray_and_multi_window": [ 2068 | { 2069 | "kind": "Exe", 2070 | "id": "ProtonDrive.exe", 2071 | "matching_strategy": "Equals" 2072 | } 2073 | ] 2074 | }, 2075 | "ProtonVPN": { 2076 | "tray_and_multi_window": [ 2077 | { 2078 | "kind": "Exe", 2079 | "id": "ProtonVPN.exe", 2080 | "matching_strategy": "Equals" 2081 | } 2082 | ] 2083 | }, 2084 | "PyCharm": { 2085 | "ignore": [ 2086 | { 2087 | "kind": "Class", 2088 | "id": "SunAwtDialog", 2089 | "matching_strategy": "Equals" 2090 | } 2091 | ], 2092 | "tray_and_multi_window": [ 2093 | { 2094 | "kind": "Exe", 2095 | "id": "pycharm64.exe", 2096 | "matching_strategy": "Equals" 2097 | } 2098 | ], 2099 | "object_name_change": [ 2100 | { 2101 | "kind": "Exe", 2102 | "id": "pycharm64.exe", 2103 | "matching_strategy": "Equals" 2104 | } 2105 | ] 2106 | }, 2107 | "qBittorrent": { 2108 | "tray_and_multi_window": [ 2109 | { 2110 | "kind": "Exe", 2111 | "id": "qbittorrent.exe", 2112 | "matching_strategy": "Equals" 2113 | } 2114 | ], 2115 | "ignore": [ 2116 | [ 2117 | { 2118 | "kind": "Exe", 2119 | "id": "qbittorrent.exe", 2120 | "matching_strategy": "Equals" 2121 | }, 2122 | { 2123 | "kind": "Title", 2124 | "id": "Exiting qBittorrent", 2125 | "matching_strategy": "Equals" 2126 | } 2127 | ] 2128 | ] 2129 | }, 2130 | "QGIS": { 2131 | "floating": [ 2132 | [ 2133 | { 2134 | "kind": "Exe", 2135 | "id": "qgis-bin.exe", 2136 | "matching_strategy": "Equals" 2137 | }, 2138 | { 2139 | "kind": "Title", 2140 | "id": "QGIS", 2141 | "matching_strategy": "DoesNotContain" 2142 | } 2143 | ], 2144 | [ 2145 | { 2146 | "kind": "Exe", 2147 | "id": "qgis-ltr-bin.exe", 2148 | "matching_strategy": "Equals" 2149 | }, 2150 | { 2151 | "kind": "Title", 2152 | "id": "QGIS", 2153 | "matching_strategy": "DoesNotContain" 2154 | } 2155 | ] 2156 | ] 2157 | }, 2158 | "QQ": { 2159 | "ignore": [ 2160 | { 2161 | "kind": "Title", 2162 | "id": "图片查看器", 2163 | "matching_strategy": "Legacy" 2164 | }, 2165 | { 2166 | "kind": "Title", 2167 | "id": "群聊的聊天记录", 2168 | "matching_strategy": "Legacy" 2169 | }, 2170 | { 2171 | "kind": "Title", 2172 | "id": "语音通话", 2173 | "matching_strategy": "Legacy" 2174 | } 2175 | ], 2176 | "tray_and_multi_window": [ 2177 | { 2178 | "kind": "Exe", 2179 | "id": "QQ.exe", 2180 | "matching_strategy": "Equals" 2181 | } 2182 | ] 2183 | }, 2184 | "QtScrcpy": { 2185 | "tray_and_multi_window": [ 2186 | { 2187 | "kind": "Exe", 2188 | "id": "QtScrcpy.exe", 2189 | "matching_strategy": "Equals" 2190 | } 2191 | ] 2192 | }, 2193 | "QuickLook": { 2194 | "ignore": [ 2195 | { 2196 | "kind": "Exe", 2197 | "id": "QuickLook.exe", 2198 | "matching_strategy": "Equals" 2199 | } 2200 | ] 2201 | }, 2202 | "RepoZ": { 2203 | "ignore": [ 2204 | { 2205 | "kind": "Exe", 2206 | "id": "RepoZ.exe", 2207 | "matching_strategy": "Equals" 2208 | } 2209 | ] 2210 | }, 2211 | "Rider": { 2212 | "ignore": [ 2213 | { 2214 | "kind": "Class", 2215 | "id": "SunAwtDialog", 2216 | "matching_strategy": "Equals" 2217 | }, 2218 | { 2219 | "kind": "Title", 2220 | "id": "PopupMessageWindow", 2221 | "matching_strategy": "Legacy" 2222 | } 2223 | ], 2224 | "tray_and_multi_window": [ 2225 | { 2226 | "kind": "Exe", 2227 | "id": "rider64.exe", 2228 | "matching_strategy": "Equals" 2229 | } 2230 | ], 2231 | "object_name_change": [ 2232 | { 2233 | "kind": "Exe", 2234 | "id": "rider64.exe", 2235 | "matching_strategy": "Equals" 2236 | } 2237 | ] 2238 | }, 2239 | "Roblox FPS Unlocker": { 2240 | "tray_and_multi_window": [ 2241 | { 2242 | "kind": "Exe", 2243 | "id": "rbxfpsunlocker.exe", 2244 | "matching_strategy": "Equals" 2245 | } 2246 | ] 2247 | }, 2248 | "RoundedTB": { 2249 | "tray_and_multi_window": [ 2250 | { 2251 | "kind": "Exe", 2252 | "id": "RoundedTB.exe", 2253 | "matching_strategy": "Equals" 2254 | } 2255 | ] 2256 | }, 2257 | "RustRover": { 2258 | "ignore": [ 2259 | { 2260 | "kind": "Class", 2261 | "id": "SunAwtDialog", 2262 | "matching_strategy": "Equals" 2263 | } 2264 | ], 2265 | "tray_and_multi_window": [ 2266 | { 2267 | "kind": "Exe", 2268 | "id": "rustrover64.exe", 2269 | "matching_strategy": "Equals" 2270 | } 2271 | ], 2272 | "object_name_change": [ 2273 | { 2274 | "kind": "Exe", 2275 | "id": "rustrover64.exe", 2276 | "matching_strategy": "Equals" 2277 | } 2278 | ] 2279 | }, 2280 | "Sandboxie Plus": { 2281 | "tray_and_multi_window": [ 2282 | { 2283 | "kind": "Exe", 2284 | "id": "SandMan.exe", 2285 | "matching_strategy": "Equals" 2286 | } 2287 | ] 2288 | }, 2289 | "ShareX": { 2290 | "tray_and_multi_window": [ 2291 | { 2292 | "kind": "Exe", 2293 | "id": "ShareX.exe", 2294 | "matching_strategy": "Equals" 2295 | } 2296 | ] 2297 | }, 2298 | "Sideloadly": { 2299 | "ignore": [ 2300 | { 2301 | "kind": "Exe", 2302 | "id": "sideloadly.exe", 2303 | "matching_strategy": "Equals" 2304 | } 2305 | ] 2306 | }, 2307 | "Signal": { 2308 | "tray_and_multi_window": [ 2309 | { 2310 | "kind": "Exe", 2311 | "id": "Signal.exe", 2312 | "matching_strategy": "Equals" 2313 | } 2314 | ] 2315 | }, 2316 | "SiriKali": { 2317 | "tray_and_multi_window": [ 2318 | { 2319 | "kind": "Exe", 2320 | "id": "sirikali.exe", 2321 | "matching_strategy": "Equals" 2322 | } 2323 | ] 2324 | }, 2325 | "Slack": { 2326 | "ignore": [ 2327 | { 2328 | "kind": "Class", 2329 | "id": "Chrome_RenderWidgetHostHWND", 2330 | "matching_strategy": "Legacy" 2331 | } 2332 | ], 2333 | "tray_and_multi_window": [ 2334 | { 2335 | "kind": "Exe", 2336 | "id": "slack.exe", 2337 | "matching_strategy": "Equals" 2338 | } 2339 | ] 2340 | }, 2341 | "Smart Install Maker": { 2342 | "ignore": [ 2343 | { 2344 | "kind": "Class", 2345 | "id": "obj_App", 2346 | "matching_strategy": "Legacy" 2347 | }, 2348 | { 2349 | "kind": "Class", 2350 | "id": "obj_Form", 2351 | "matching_strategy": "Legacy" 2352 | } 2353 | ] 2354 | }, 2355 | "SnippingTool": { 2356 | "ignore": [ 2357 | { 2358 | "kind": "Exe", 2359 | "id": "SnippingTool.exe", 2360 | "matching_strategy": "Equals" 2361 | } 2362 | ] 2363 | }, 2364 | "SoulseekQt": { 2365 | "tray_and_multi_window": [ 2366 | { 2367 | "kind": "Exe", 2368 | "id": "SoulseekQt.exe", 2369 | "matching_strategy": "Equals" 2370 | } 2371 | ] 2372 | }, 2373 | "Spotify": { 2374 | "tray_and_multi_window": [ 2375 | { 2376 | "kind": "Exe", 2377 | "id": "Spotify.exe", 2378 | "matching_strategy": "Equals" 2379 | } 2380 | ] 2381 | }, 2382 | "Steam": { 2383 | "layered": [ 2384 | { 2385 | "kind": "Exe", 2386 | "id": "steam.exe", 2387 | "matching_strategy": "Equals" 2388 | } 2389 | ], 2390 | "tray_and_multi_window": [ 2391 | { 2392 | "kind": "Exe", 2393 | "id": "steam.exe", 2394 | "matching_strategy": "Equals" 2395 | } 2396 | ], 2397 | "ignore": [ 2398 | [ 2399 | { 2400 | "kind": "Exe", 2401 | "id": "steamwebhelper.exe", 2402 | "matching_strategy": "Equals" 2403 | }, 2404 | { 2405 | "kind": "Title", 2406 | "id": "Steam", 2407 | "matching_strategy": "DoesNotEqual" 2408 | } 2409 | ] 2410 | ], 2411 | "floating": [ 2412 | [ 2413 | { 2414 | "kind": "Exe", 2415 | "id": "steam.exe", 2416 | "matching_strategy": "Equals" 2417 | }, 2418 | { 2419 | "kind": "Class", 2420 | "id": "BootstrapUpdateUIClass", 2421 | "matching_strategy": "Equals" 2422 | } 2423 | ] 2424 | ] 2425 | }, 2426 | "Steam Beta": { 2427 | "ignore": [ 2428 | { 2429 | "kind": "Title", 2430 | "id": "notificationtoasts_", 2431 | "matching_strategy": "Legacy" 2432 | } 2433 | ], 2434 | "tray_and_multi_window": [ 2435 | { 2436 | "kind": "Class", 2437 | "id": "SDL_app", 2438 | "matching_strategy": "Legacy" 2439 | } 2440 | ] 2441 | }, 2442 | "Stremio": { 2443 | "tray_and_multi_window": [ 2444 | { 2445 | "kind": "Exe", 2446 | "id": "stremio.exe", 2447 | "matching_strategy": "Equals" 2448 | } 2449 | ] 2450 | }, 2451 | "Stremio Desktop Community": { 2452 | "tray_and_multi_window": [ 2453 | { 2454 | "kind": "Exe", 2455 | "id": "stremio-shell-ng.exe", 2456 | "matching_strategy": "Equals" 2457 | } 2458 | ] 2459 | }, 2460 | "System Informer": { 2461 | "ignore": [ 2462 | { 2463 | "kind": "Exe", 2464 | "id": "SystemInformer.exe", 2465 | "matching_strategy": "Equals" 2466 | } 2467 | ], 2468 | "tray_and_multi_window": [ 2469 | { 2470 | "kind": "Exe", 2471 | "id": "SystemInformer.exe", 2472 | "matching_strategy": "Equals" 2473 | } 2474 | ] 2475 | }, 2476 | "SystemSettings": { 2477 | "ignore": [ 2478 | { 2479 | "kind": "Class", 2480 | "id": "Shell_Dialog", 2481 | "matching_strategy": "Legacy" 2482 | } 2483 | ] 2484 | }, 2485 | "Tabby": { 2486 | "manage": [ 2487 | [ 2488 | { 2489 | "kind": "Class", 2490 | "id": "Chrome_WidgetWin_1", 2491 | "matching_strategy": "Equals" 2492 | }, 2493 | { 2494 | "kind": "Exe", 2495 | "id": "Tabby.exe", 2496 | "matching_strategy": "Equals" 2497 | } 2498 | ] 2499 | ] 2500 | }, 2501 | "TablePlus": { 2502 | "object_name_change": [ 2503 | { 2504 | "kind": "Exe", 2505 | "id": "TablePlus.exe", 2506 | "matching_strategy": "Equals" 2507 | } 2508 | ] 2509 | }, 2510 | "Task Manager": { 2511 | "ignore": [ 2512 | { 2513 | "kind": "Class", 2514 | "id": "TaskManagerWindow", 2515 | "matching_strategy": "Legacy" 2516 | } 2517 | ] 2518 | }, 2519 | "Telegram": { 2520 | "tray_and_multi_window": [ 2521 | { 2522 | "kind": "Exe", 2523 | "id": "Telegram.exe", 2524 | "matching_strategy": "Equals" 2525 | } 2526 | ] 2527 | }, 2528 | "TeraCopy": { 2529 | "ignore": [ 2530 | { 2531 | "kind": "Exe", 2532 | "id": "TeraCopy.exe", 2533 | "matching_strategy": "Equals" 2534 | } 2535 | ] 2536 | }, 2537 | "TickTick": { 2538 | "tray_and_multi_window": [ 2539 | { 2540 | "kind": "Exe", 2541 | "id": "TickTick.exe", 2542 | "matching_strategy": "Equals" 2543 | } 2544 | ] 2545 | }, 2546 | "Tobit.Team": { 2547 | "tray_and_multi_window": [ 2548 | { 2549 | "kind": "Class", 2550 | "id": "TobitTeamFrame", 2551 | "matching_strategy": "Equals" 2552 | } 2553 | ] 2554 | }, 2555 | "Total Commander": { 2556 | "ignore": [ 2557 | { 2558 | "kind": "Class", 2559 | "id": "TDLG2FILEACTIONMIN", 2560 | "matching_strategy": "Equals" 2561 | }, 2562 | { 2563 | "kind": "Class", 2564 | "id": "TFindFile", 2565 | "matching_strategy": "Equals" 2566 | }, 2567 | { 2568 | "kind": "Class", 2569 | "id": "TLister", 2570 | "matching_strategy": "Equals" 2571 | }, 2572 | { 2573 | "kind": "Class", 2574 | "id": "TCHANGETREEDLG", 2575 | "matching_strategy": "Equals" 2576 | }, 2577 | { 2578 | "kind": "Class", 2579 | "id": "TCONNECT", 2580 | "matching_strategy": "Equals" 2581 | }, 2582 | { 2583 | "kind": "Class", 2584 | "id": "TSEARCHTEXT", 2585 | "matching_strategy": "Equals" 2586 | } 2587 | ] 2588 | }, 2589 | "TouchCursor": { 2590 | "ignore": [ 2591 | { 2592 | "kind": "Exe", 2593 | "id": "tcconfig.exe", 2594 | "matching_strategy": "Equals" 2595 | } 2596 | ], 2597 | "tray_and_multi_window": [ 2598 | { 2599 | "kind": "Exe", 2600 | "id": "tcconfig.exe", 2601 | "matching_strategy": "Equals" 2602 | } 2603 | ] 2604 | }, 2605 | "TranslucentTB": { 2606 | "tray_and_multi_window": [ 2607 | { 2608 | "kind": "Exe", 2609 | "id": "TranslucentTB.exe", 2610 | "matching_strategy": "Equals" 2611 | } 2612 | ] 2613 | }, 2614 | "ueli": { 2615 | "ignore": [ 2616 | { 2617 | "kind": "Exe", 2618 | "id": "ueli.exe", 2619 | "matching_strategy": "Equals" 2620 | } 2621 | ], 2622 | "tray_and_multi_window": [ 2623 | { 2624 | "kind": "Exe", 2625 | "id": "ueli.exe", 2626 | "matching_strategy": "Equals" 2627 | } 2628 | ] 2629 | }, 2630 | "UniGetUI": { 2631 | "tray_and_multi_window": [ 2632 | { 2633 | "kind": "Exe", 2634 | "id": "UniGetUI.exe", 2635 | "matching_strategy": "Equals" 2636 | } 2637 | ] 2638 | }, 2639 | "Unity": { 2640 | "ignore": [ 2641 | { 2642 | "kind": "Class", 2643 | "id": "UnityWndClass", 2644 | "matching_strategy": "Equals" 2645 | } 2646 | ] 2647 | }, 2648 | "Unity Editor": { 2649 | "transparency_ignore": [ 2650 | { 2651 | "kind": "Exe", 2652 | "id": "Unity.exe", 2653 | "matching_strategy": "Equals" 2654 | } 2655 | ], 2656 | "tray_and_multi_window": [ 2657 | { 2658 | "kind": "Exe", 2659 | "id": "Unity.exe", 2660 | "matching_strategy": "Equals" 2661 | } 2662 | ] 2663 | }, 2664 | "Unity Hub": { 2665 | "tray_and_multi_window": [ 2666 | { 2667 | "kind": "Exe", 2668 | "id": "Unity Hub.exe", 2669 | "matching_strategy": "Equals" 2670 | } 2671 | ] 2672 | }, 2673 | "Unreal Editor": { 2674 | "tray_and_multi_window": [ 2675 | { 2676 | "kind": "Exe", 2677 | "id": "UnrealEditor.exe", 2678 | "matching_strategy": "Equals" 2679 | } 2680 | ], 2681 | "floating": [ 2682 | [ 2683 | { 2684 | "kind": "Exe", 2685 | "id": "UnrealEditor.exe", 2686 | "matching_strategy": "Equals" 2687 | }, 2688 | { 2689 | "kind": "Title", 2690 | "id": "- Unreal Editor", 2691 | "matching_strategy": "DoesNotEndWith" 2692 | } 2693 | ] 2694 | ] 2695 | }, 2696 | "Unreal Engine": { 2697 | "ignore": [ 2698 | { 2699 | "kind": "Class", 2700 | "id": "UnrealWindow", 2701 | "matching_strategy": "Equals" 2702 | }, 2703 | { 2704 | "kind": "Title", 2705 | "id": "SplashScreenGuard", 2706 | "matching_strategy": "Equals" 2707 | } 2708 | ] 2709 | }, 2710 | "visio": { 2711 | "ignore": [ 2712 | { 2713 | "kind": "Class", 2714 | "id": "VISIOS", 2715 | "matching_strategy": "Equals" 2716 | }, 2717 | { 2718 | "kind": "Class", 2719 | "id": "VISIOQ", 2720 | "matching_strategy": "Equals" 2721 | } 2722 | ], 2723 | "manage": [ 2724 | { 2725 | "kind": "Class", 2726 | "id": "VISIOA", 2727 | "matching_strategy": "Equals" 2728 | } 2729 | ] 2730 | }, 2731 | "Visual Studio": { 2732 | "object_name_change": [ 2733 | { 2734 | "kind": "Exe", 2735 | "id": "devenv.exe", 2736 | "matching_strategy": "Equals" 2737 | } 2738 | ], 2739 | "floating": [ 2740 | [ 2741 | { 2742 | "kind": "Exe", 2743 | "id": "devenv.exe", 2744 | "matching_strategy": "Equals" 2745 | }, 2746 | { 2747 | "kind": "Title", 2748 | "id": "QuickWatch", 2749 | "matching_strategy": "Equals" 2750 | } 2751 | ], 2752 | [ 2753 | { 2754 | "kind": "Exe", 2755 | "id": "devenv.exe", 2756 | "matching_strategy": "Equals" 2757 | }, 2758 | { 2759 | "kind": "Title", 2760 | "id": " - Microsoft Visual Studio", 2761 | "matching_strategy": "DoesNotEndWith" 2762 | } 2763 | ] 2764 | ], 2765 | "ignore": [ 2766 | { 2767 | "kind": "Exe", 2768 | "id": "VsDebugConsole.exe", 2769 | "matching_strategy": "Equals" 2770 | }, 2771 | [ 2772 | { 2773 | "kind": "Exe", 2774 | "id": "iisexpresstray.exe", 2775 | "matching_strategy": "Equals" 2776 | }, 2777 | { 2778 | "kind": "Class", 2779 | "id": "WindowsForms10.Window", 2780 | "matching_strategy": "StartsWith" 2781 | } 2782 | ], 2783 | { 2784 | "kind": "Title", 2785 | "id": "WindowsFormsParkingWindow", 2786 | "matching_strategy": "Equals" 2787 | }, 2788 | [ 2789 | { 2790 | "kind": "Exe", 2791 | "id": "devenv.exe", 2792 | "matching_strategy": "Equals" 2793 | }, 2794 | { 2795 | "kind": "Title", 2796 | "id": "Move files to a new location?", 2797 | "matching_strategy": "Equals" 2798 | } 2799 | ], 2800 | { 2801 | "kind": "Exe", 2802 | "id": "ServiceHub.ThreadedWaitDialog.exe", 2803 | "matching_strategy": "Equals" 2804 | } 2805 | ] 2806 | }, 2807 | "VLC": { 2808 | "object_name_change": [ 2809 | { 2810 | "kind": "Exe", 2811 | "id": "vlc.exe", 2812 | "matching_strategy": "Equals" 2813 | } 2814 | ], 2815 | "ignore": [ 2816 | [ 2817 | { 2818 | "kind": "Exe", 2819 | "id": "vlc.exe", 2820 | "matching_strategy": "Equals" 2821 | }, 2822 | { 2823 | "kind": "Title", 2824 | "id": "Open URL", 2825 | "matching_strategy": "Equals" 2826 | } 2827 | ], 2828 | [ 2829 | { 2830 | "kind": "Exe", 2831 | "id": "vlc.exe", 2832 | "matching_strategy": "Equals" 2833 | }, 2834 | { 2835 | "kind": "Title", 2836 | "id": "About", 2837 | "matching_strategy": "Equals" 2838 | } 2839 | ], 2840 | [ 2841 | { 2842 | "kind": "Exe", 2843 | "id": "vlc.exe", 2844 | "matching_strategy": "Equals" 2845 | }, 2846 | { 2847 | "kind": "Title", 2848 | "id": "Preferences", 2849 | "matching_strategy": "Contains" 2850 | } 2851 | ], 2852 | [ 2853 | { 2854 | "kind": "Exe", 2855 | "id": "vlc.exe", 2856 | "matching_strategy": "Equals" 2857 | }, 2858 | { 2859 | "kind": "Title", 2860 | "id": "Adjustments and Effects", 2861 | "matching_strategy": "Equals" 2862 | } 2863 | ], 2864 | [ 2865 | { 2866 | "kind": "Exe", 2867 | "id": "vlc.exe", 2868 | "matching_strategy": "Equals" 2869 | }, 2870 | { 2871 | "kind": "Title", 2872 | "id": "Open Media", 2873 | "matching_strategy": "Equals" 2874 | } 2875 | ], 2876 | [ 2877 | { 2878 | "kind": "Exe", 2879 | "id": "vlc.exe", 2880 | "matching_strategy": "Equals" 2881 | }, 2882 | { 2883 | "kind": "Title", 2884 | "id": "Current Media Information", 2885 | "matching_strategy": "Equals" 2886 | } 2887 | ], 2888 | [ 2889 | { 2890 | "kind": "Exe", 2891 | "id": "vlc.exe", 2892 | "matching_strategy": "Equals" 2893 | }, 2894 | { 2895 | "kind": "Title", 2896 | "id": "Messages", 2897 | "matching_strategy": "Equals" 2898 | } 2899 | ], 2900 | [ 2901 | { 2902 | "kind": "Exe", 2903 | "id": "vlc.exe", 2904 | "matching_strategy": "Equals" 2905 | }, 2906 | { 2907 | "kind": "Title", 2908 | "id": "VLC media player updates", 2909 | "matching_strategy": "Equals" 2910 | } 2911 | ], 2912 | [ 2913 | { 2914 | "kind": "Exe", 2915 | "id": "vlc.exe", 2916 | "matching_strategy": "Equals" 2917 | }, 2918 | { 2919 | "kind": "Title", 2920 | "id": "Help", 2921 | "matching_strategy": "Equals" 2922 | } 2923 | ], 2924 | [ 2925 | { 2926 | "kind": "Exe", 2927 | "id": "vlc.exe", 2928 | "matching_strategy": "Equals" 2929 | }, 2930 | { 2931 | "kind": "Title", 2932 | "id": "Plugins and extensions", 2933 | "matching_strategy": "Equals" 2934 | } 2935 | ], 2936 | [ 2937 | { 2938 | "kind": "Exe", 2939 | "id": "vlc.exe", 2940 | "matching_strategy": "Equals" 2941 | }, 2942 | { 2943 | "kind": "Title", 2944 | "id": "Building font cache", 2945 | "matching_strategy": "Equals" 2946 | } 2947 | ] 2948 | ] 2949 | }, 2950 | "VMware Horizon Client": { 2951 | "tray_and_multi_window": [ 2952 | { 2953 | "kind": "Exe", 2954 | "id": "vmware-view.exe", 2955 | "matching_strategy": "Equals" 2956 | } 2957 | ] 2958 | }, 2959 | "Voice.ai": { 2960 | "tray_and_multi_window": [ 2961 | { 2962 | "kind": "Exe", 2963 | "id": "VoiceAI.exe", 2964 | "matching_strategy": "Equals" 2965 | } 2966 | ] 2967 | }, 2968 | "VRCX": { 2969 | "tray_and_multi_window": [ 2970 | { 2971 | "kind": "Exe", 2972 | "id": "VRCX.exe", 2973 | "matching_strategy": "Equals" 2974 | } 2975 | ] 2976 | }, 2977 | "WebStorm": { 2978 | "ignore": [ 2979 | { 2980 | "kind": "Class", 2981 | "id": "SunAwtDialog", 2982 | "matching_strategy": "Equals" 2983 | } 2984 | ], 2985 | "tray_and_multi_window": [ 2986 | { 2987 | "kind": "Exe", 2988 | "id": "webstorm64.exe", 2989 | "matching_strategy": "Equals" 2990 | } 2991 | ], 2992 | "object_name_change": [ 2993 | { 2994 | "kind": "Exe", 2995 | "id": "webstorm64.exe", 2996 | "matching_strategy": "Equals" 2997 | } 2998 | ] 2999 | }, 3000 | "WebTorrent Desktop": { 3001 | "tray_and_multi_window": [ 3002 | { 3003 | "kind": "Exe", 3004 | "id": "WebTorrent.exe", 3005 | "matching_strategy": "Equals" 3006 | } 3007 | ] 3008 | }, 3009 | "WeChat": { 3010 | "ignore": [ 3011 | { 3012 | "kind": "Class", 3013 | "id": "WeChatLoginWndForPC", 3014 | "matching_strategy": "Equals" 3015 | }, 3016 | { 3017 | "kind": "Class", 3018 | "id": "FileListMgrWnd", 3019 | "matching_strategy": "Equals" 3020 | }, 3021 | { 3022 | "kind": "Class", 3023 | "id": "CWebviewControlHostWnd", 3024 | "matching_strategy": "Equals" 3025 | }, 3026 | { 3027 | "kind": "Class", 3028 | "id": "ChatWnd", 3029 | "matching_strategy": "Equals" 3030 | }, 3031 | { 3032 | "kind": "Class", 3033 | "id": "EmotionTipWnd", 3034 | "matching_strategy": "Equals" 3035 | }, 3036 | { 3037 | "kind": "Class", 3038 | "id": "ChatContactMenu", 3039 | "matching_strategy": "Equals" 3040 | }, 3041 | { 3042 | "kind": "Exe", 3043 | "id": "WeChatAppEx.exe", 3044 | "matching_strategy": "Equals" 3045 | } 3046 | ], 3047 | "manage": [ 3048 | { 3049 | "kind": "Class", 3050 | "id": "WeChatMainWndForPC", 3051 | "matching_strategy": "Equals" 3052 | } 3053 | ], 3054 | "tray_and_multi_window": [ 3055 | { 3056 | "kind": "Class", 3057 | "id": "WeChatMainWndForPC", 3058 | "matching_strategy": "Equals" 3059 | } 3060 | ] 3061 | }, 3062 | "WinCompose": { 3063 | "tray_and_multi_window": [ 3064 | { 3065 | "kind": "Exe", 3066 | "id": "wincompose.exe", 3067 | "matching_strategy": "Equals" 3068 | } 3069 | ] 3070 | }, 3071 | "Windows Console (conhost.exe)": { 3072 | "manage": [ 3073 | { 3074 | "kind": "Class", 3075 | "id": "ConsoleWindowClass", 3076 | "matching_strategy": "Equals" 3077 | } 3078 | ] 3079 | }, 3080 | "Windows Explorer": { 3081 | "tray_and_multi_window": [ 3082 | { 3083 | "kind": "Exe", 3084 | "id": "explorer.exe", 3085 | "matching_strategy": "Equals" 3086 | } 3087 | ], 3088 | "ignore": [ 3089 | { 3090 | "kind": "Class", 3091 | "id": "NativeHWNDHost", 3092 | "matching_strategy": "Equals" 3093 | }, 3094 | { 3095 | "kind": "Class", 3096 | "id": "OperationStatusWindow", 3097 | "matching_strategy": "Legacy" 3098 | }, 3099 | { 3100 | "kind": "Title", 3101 | "id": "Control Panel", 3102 | "matching_strategy": "Legacy" 3103 | } 3104 | ] 3105 | }, 3106 | "Windows Installer": { 3107 | "ignore": [ 3108 | { 3109 | "kind": "Exe", 3110 | "id": "msiexec.exe", 3111 | "matching_strategy": "Equals" 3112 | } 3113 | ] 3114 | }, 3115 | "Windows Subsystem for Android": { 3116 | "ignore": [ 3117 | { 3118 | "kind": "Class", 3119 | "id": "android(splash)", 3120 | "matching_strategy": "Legacy" 3121 | } 3122 | ] 3123 | }, 3124 | "Windows Terminal": { 3125 | "tray_and_multi_window": [ 3126 | { 3127 | "kind": "Exe", 3128 | "id": "WindowsTerminal.exe", 3129 | "matching_strategy": "Equals" 3130 | } 3131 | ] 3132 | }, 3133 | "Windows Update Standalone Installer": { 3134 | "ignore": [ 3135 | { 3136 | "kind": "Exe", 3137 | "id": "wusa.exe", 3138 | "matching_strategy": "Equals" 3139 | } 3140 | ] 3141 | }, 3142 | "WingetUI": { 3143 | "tray_and_multi_window": [ 3144 | { 3145 | "kind": "Exe", 3146 | "id": "wingetui.exe", 3147 | "matching_strategy": "Equals" 3148 | } 3149 | ] 3150 | }, 3151 | "WinZip (32-bit)": { 3152 | "ignore": [ 3153 | { 3154 | "kind": "Exe", 3155 | "id": "winzip32.exe", 3156 | "matching_strategy": "Equals" 3157 | } 3158 | ] 3159 | }, 3160 | "WinZip (64-bit)": { 3161 | "ignore": [ 3162 | { 3163 | "kind": "Exe", 3164 | "id": "winzip64.exe", 3165 | "matching_strategy": "Equals" 3166 | } 3167 | ] 3168 | }, 3169 | "Wox": { 3170 | "ignore": [ 3171 | { 3172 | "kind": "Title", 3173 | "id": "Hotkey sink", 3174 | "matching_strategy": "Legacy" 3175 | } 3176 | ] 3177 | }, 3178 | "XAMPP Control Panel": { 3179 | "tray_and_multi_window": [ 3180 | { 3181 | "kind": "Exe", 3182 | "id": "xampp-control.exe", 3183 | "matching_strategy": "Equals" 3184 | } 3185 | ] 3186 | }, 3187 | "Zebar": { 3188 | "ignore": [ 3189 | { 3190 | "kind": "Exe", 3191 | "id": "zebar.exe", 3192 | "matching_strategy": "Equals" 3193 | } 3194 | ] 3195 | }, 3196 | "Zed": { 3197 | "layered": [ 3198 | { 3199 | "kind": "Exe", 3200 | "id": "zed.exe", 3201 | "matching_strategy": "Equals" 3202 | } 3203 | ] 3204 | }, 3205 | "Zen Browser": { 3206 | "ignore": [ 3207 | { 3208 | "kind": "Class", 3209 | "id": "MozillaDialogClass", 3210 | "matching_strategy": "Equals" 3211 | }, 3212 | { 3213 | "kind": "Class", 3214 | "id": "MozillaTaskbarPreviewClass", 3215 | "matching_strategy": "Legacy" 3216 | }, 3217 | [ 3218 | { 3219 | "kind": "Title", 3220 | "id": "Picture-in-Picture", 3221 | "matching_strategy": "Equals" 3222 | }, 3223 | { 3224 | "kind": "Exe", 3225 | "id": "zen.exe", 3226 | "matching_strategy": "Equals" 3227 | } 3228 | ] 3229 | ], 3230 | "tray_and_multi_window": [ 3231 | { 3232 | "kind": "Exe", 3233 | "id": "zen.exe", 3234 | "matching_strategy": "Equals" 3235 | } 3236 | ], 3237 | "object_name_change": [ 3238 | { 3239 | "kind": "Exe", 3240 | "id": "zen.exe", 3241 | "matching_strategy": "Equals" 3242 | } 3243 | ], 3244 | "slow_application": [ 3245 | { 3246 | "kind": "Exe", 3247 | "id": "zen.exe", 3248 | "matching_strategy": "Equals" 3249 | } 3250 | ] 3251 | }, 3252 | "Zoom": { 3253 | "ignore": [ 3254 | { 3255 | "kind": "Exe", 3256 | "id": "Zoom.exe", 3257 | "matching_strategy": "Equals" 3258 | } 3259 | ] 3260 | } 3261 | } 3262 | --------------------------------------------------------------------------------