An open API service indexing awesome lists of open source software.

https://github.com/midnighttale/winnodeco


https://github.com/midnighttale/winnodeco

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# WinNoDeco - Window Decoration Remover

⚠️ **USE AT YOUR OWN RISK** ⚠️

This is an experimental program that removes window decorations (title bars) from Windows applications. I am not a skill dev, and this software is provided as-is without any guarantees.

## Configuration

You can exclude specific programs from having their decorations removed by adding their process names to the `$USERHOME/.config/winnodeco/config.json` file:

```json
{
"$schema": "https://raw.githubusercontent.com/MidnightTale/winnodeco/refs/heads/master/schema.json",
"ignore_patterns": {
"process_names": ["SearchApp", "SystemSettings", "zen", "trae", "WindowsTerminal", "notepad", "SearchHost", "Explorer", "ShellExperienceHost", "StartMenuExperienceHost"],
"window_classes": ["Shell_TrayWnd", "Windows.UI.Core.CoreWindow"]
},
"override_settings": {
"exampleapp": {
"title_bar": true,
"window_buttons": false,
"border_radius": "Round",
"border_visible": false
}
},
"default_settings": {
"title_bar": false,
"window_buttons": false,
"border_radius": "Default",
"border_visible": false
}
}s
```