index.md (707B)
1 nocornermonocle 2 =============== 3 4 Description 5 ----------- 6 Adds EWMH support (`_NET_WM_STATE_MAXIMIZED_VERT` and 7 `_NET_WM_STATE_MAXIMIZED_HORZ` atoms) for clients in monocle layout. 8 This allows external compositors (like picom) to detect when a window 9 is in monocle mode and disable visual effects, such as rounded corners. 10 11 ### Configuration 12 Add the following rule to your `picom.conf` to disable rounded corners 13 for monocle windows: 14 15 ``` 16 rules = ( 17 { 18 match = "_NET_WM_STATE@[0]:a = '_NET_WM_STATE_MAXIMIZED_VERT'"; 19 corner-radius = 0; 20 } 21 ) 22 ``` 23 24 Download 25 -------- 26 * [dwm-nocornermonocle-20260112-1dcbe74.diff](dwm-nocornermonocle-20260112-1dcbe74.diff) 27 28 Author 29 ------ 30 * Savar - <savar95x@gmail.com>