mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
Adding tapresize notes to README.md
This commit is contained in:
parent
6b1225d3b3
commit
647c5935b3
@ -15,6 +15,8 @@ Refer to [https://dwm.suckless.org/](https://dwm.suckless.org/) for details on t
|
||||
|
||||
### Changelog:
|
||||
|
||||
2021-03-31 - Added tapresize patch (contributed by [verschmelzen](https://github.com/verschmelzen))
|
||||
|
||||
2021-03-29 - Removed alwaysfullscreen patch (merged into dwm 6.2)
|
||||
|
||||
2021-03-09 - Added the tab patch and the LG3D patch
|
||||
@ -612,6 +614,10 @@ Refer to [https://dwm.suckless.org/](https://dwm.suckless.org/) for details on t
|
||||
- [tagswapmon](https://github.com/bakkeby/patches/wiki/tagswapmon/)
|
||||
- swap all visible windows on one monitor with those of an adjacent monitor
|
||||
|
||||
- [tapresize](https://dwm.suckless.org/patches/tapresize/)
|
||||
- allows resizing of windows using a touchpad
|
||||
- uses vertical and horizontal scroll events allowing you to use one-finger tap for moving windows and two-finger tap for resizing
|
||||
|
||||
- [~titlecolor~](https://dwm.suckless.org/patches/titlecolor/)
|
||||
- ~adds a new color scheme used by the (selected) window title in the bar~
|
||||
|
||||
|
@ -543,7 +543,7 @@ static const int scrollargs[][2] = {
|
||||
{ 0, +scrollsensetivity },
|
||||
{ 0, -scrollsensetivity },
|
||||
};
|
||||
#endif
|
||||
#endif // TAPRESIZE_PATCH
|
||||
|
||||
#if FLEXTILE_DELUXE_LAYOUT
|
||||
static const Layout layouts[] = {
|
||||
@ -1225,7 +1225,7 @@ static Button buttons[] = {
|
||||
{ ClkClientWin, MODKEY, Button5, resizemousescroll, {.v = &scrollargs[1]} },
|
||||
{ ClkClientWin, MODKEY, Button6, resizemousescroll, {.v = &scrollargs[2]} },
|
||||
{ ClkClientWin, MODKEY, Button7, resizemousescroll, {.v = &scrollargs[3]} },
|
||||
#endif // TAPRESIZE_PATCH
|
||||
#endif // TAPRESIZE_PATCH
|
||||
#if DRAGCFACT_PATCH && CFACTS_PATCH
|
||||
{ ClkClientWin, MODKEY|ShiftMask, Button3, dragcfact, {0} },
|
||||
#endif // DRAGCFACT_PATCH
|
||||
|
Loading…
Reference in New Issue
Block a user