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

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

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 },
};
```