Update wiki

Palanix 2024-02-15 19:07:15 +01:00
parent 02f2b7464d
commit 3512b23543
No known key found for this signature in database
GPG Key ID: 439CD6BD9905FAC5
4 changed files with 77 additions and 0 deletions

@ -28,6 +28,7 @@ Additionally, when you have write access to this repository, remove the `.md` fi
## Clients Placement
* [alwayscenter](https://codeberg.org/dwl/dwl-patches/wiki/alwayscenter)
* [center-terminal](https://codeberg.org/dwl/dwl-patches/wiki/center-terminal)
* [cfact](https://codeberg.org/dwl/dwl-patches/wiki/cfact)
* [swallow](https://codeberg.org/dwl/dwl-patches/wiki/swallow)
## Clients & Tags Manipulation
* [focusdir](https://codeberg.org/dwl/dwl-patches/wiki/focusdir)
@ -39,6 +40,7 @@ Additionally, when you have write access to this repository, remove the `.md` fi
* [titleurgent](https://codeberg.org/dwl/dwl-patches/wiki/titleurgent)
* [viewnextocctag](https://codeberg.org/dwl/dwl-patches/wiki/viewnextocctag)
* [winview](https://codeberg.org/dwl/dwl-patches/wiki/winview)
* [zoomswap](https://codeberg.org/dwl/dwl-patches/wiki/zoomswap)
## Rules
* [skipfocus](https://codeberg.org/dwl/dwl-patches/wiki/skipfocus)
## Input

@ -5,6 +5,7 @@
* [autostart](https://codeberg.org/dwl/dwl-patches/wiki/autostart)
* [chainkeys](https://codeberg.org/dwl/dwl-patches/wiki/chainkeys)
* [center-terminal](https://codeberg.org/dwl/dwl-patches/wiki/center-terminal)
* [cfact](https://codeberg.org/dwl/dwl-patches/wiki/cfact)
* [client-opacity](https://codeberg.org/dwl/dwl-patches/wiki/client-opacity)
* [column](https://codeberg.org/dwl/dwl-patches/wiki/column)
* [coredump](https://codeberg.org/dwl/dwl-patches/wiki/coredump)
@ -41,3 +42,4 @@
* [viewnextocctag](https://codeberg.org/dwl/dwl-patches/wiki/viewnextocctag)
* [winview](https://codeberg.org/dwl/dwl-patches/wiki/winview)
* [focusdir](https://codeberg.org/dwl/dwl-patches/wiki/focusdir)
* [zoomswap](https://codeberg.org/dwl/dwl-patches/wiki/zoomswap)

21
cfacts.md Normal file

@ -0,0 +1,21 @@
### Description
A port of the [dwm cfacts patch](https://dwm.suckless.org/patches/cfacts/) (with the limits removed)
Clients with higher weight are allocated more space!
```
+---------------------+
| | 0.5 |
| 1.0 +----------+
+----------+ |
| | 1.0 |
| +----------+
| 2.0 | |
| | 1.0 |
+----------+----------+`
```
### Download
- [git branch](https://codeberg.org/Palanix/dwl/src/branch/cfact)
- [2024-02-15](https://codeberg.org/dwl/dwl-patches/raw/branch/main/cfact/cfact.patch)
### Authors
- [Palanix](https://codeberg.org/Palanix)

52
zoomswap.md Normal file

@ -0,0 +1,52 @@
### Description
This patch swaps the current window (C) with the previous master (P) when zooming.
```
Original behaviour :
+-----------------+-------+
| | |
| | |
| | |
| P +-------|
| | |
| | C |
| | |
+-----------------+-------+
+-----------------+-------+
| | |
| | P |
| | |
| C +-------|
| | |
| | |
| | |
+-----------------+-------+
New Behaviour :
+-----------------+-------+
| | |
| | |
| | |
| C +-------+
| | |
| | P |
| | |
+-----------------+-------+
+-----------------+-------+
| | |
| | |
| | |
| P +-------+
| | |
| | C |
| | |
+-----------------+-------+
```
### Download
- [git branch](https://codeberg.org/Palanix/dwl/src/branch/zoomswap)
- [2024-02-15](https://codeberg.org/dwl/dwl-patches/raw/branch/main/zoomswap/zoomswap.patch)
### Authors
- [Palanix](https://codeberg.org/Palanix)