remove moveresizekb from stale folder

export moveresize patch with `git format-patch`
This commit is contained in:
wochap 2024-03-08 13:26:37 -05:00
parent 33588e9fe4
commit 516a4eecff
No known key found for this signature in database
GPG Key ID: FE4CF844E73095E1
2 changed files with 13 additions and 20 deletions

View File

@ -1,20 +0,0 @@
### Description
This allows the user to change size and placement of floating windows using only the keyboard, default keybindings:
| Keybinding | Action |
| :--- | :--- |
| <kbd>MODKEY</kbd> + <kbd>Up</kbd> | move 40px up |
| <kbd>MODKEY</kbd> + <kbd>Down</kbd> | move 40px down |
| <kbd>MODKEY</kbd> + <kbd>Left</kbd> | move 40px left |
| <kbd>MODKEY</kbd> + <kbd>Right</kbd> | move 40px right |
| <kbd>MODKEY</kbd> + <kbd>Shift</kbd> + <kbd>Up</kbd> | shrink height 40px |
| <kbd>MODKEY</kbd> + <kbd>Shift</kbd> + <kbd>Down</kbd> | grow height 40px |
| <kbd>MODKEY</kbd> + <kbd>Shift</kbd> + <kbd>Left</kbd> | shrink width 40px |
| <kbd>MODKEY</kbd> + <kbd>Shift</kbd> + <kbd>Right</kbd> | grow width 40px |
### Download
- [2023-09-11](https://github.com/djpohly/dwl/compare/main...wochap:moveresizekb.patch)
### Authors
- [wochap](https://github.com/wochap)

View File

@ -1,3 +1,14 @@
From c8af428f964679089599e4ffbe7d28d08a4e875f Mon Sep 17 00:00:00 2001
From: wochap <gean.marroquin@gmail.com>
Date: Tue, 5 Mar 2024 23:42:55 -0500
Subject: [PATCH] implement keybindings to move and resize focused floating
window
---
config.def.h | 8 ++++++++
dwl.c | 19 +++++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/config.def.h b/config.def.h
index db0babc..d0570b8 100644
--- a/config.def.h
@ -54,4 +65,6 @@ index ef27a1d..251472b 100644
void
toggletag(const Arg *arg)
{
--
2.42.0