https://github.com/quantumvoid0/dwm-dwindle-patch
dwindle layout patch for DWM
https://github.com/quantumvoid0/dwm-dwindle-patch
Last synced: 5 months ago
JSON representation
dwindle layout patch for DWM
- Host: GitHub
- URL: https://github.com/quantumvoid0/dwm-dwindle-patch
- Owner: quantumvoid0
- License: mit
- Created: 2025-07-13T14:57:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-13T15:46:12.000Z (about 1 year ago)
- Last Synced: 2025-07-20T18:42:16.908Z (12 months ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dwm-dwindle
dwindle layout patch for DWM
### Usage
step 1 : download the `dwindle.patch` file from this repo to ur DWM folder
step 2 : `cd` to ur dwm folder and then run `patch -p1 < dwindle.patch`
step 3 : at the top of your `config.h` add `void dwindle(Monitor *m);`
step 4 : in ur layout section in `config.h` add dwindle like so :
```c
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile },
{ "[D]", dwindle }, // added dwindle layout
{ "><>", NULL },
};
```