diff options
| author | Abhinav <abhinav.prsai@gmail.com> | 2025-06-03 01:02:13 +0100 |
|---|---|---|
| committer | Abhinav <abhinav.prsai@gmail.com> | 2025-06-03 01:02:13 +0100 |
| commit | 6709c1685acabad5c3e5a0444c689087c2f6777e (patch) | |
| tree | 9a328a88253a3f9f4a2347f618b482fa6ef45ccb /src/defs.h | |
| parent | 52f977f77276cf4eb6939ddcb5d772d0860789a4 (diff) | |
added vertical stack resizing
Diffstat (limited to 'src/defs.h')
| -rw-r--r-- | src/defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -68,6 +68,7 @@ typedef struct Client{ Window win; int x, y, h, w; int orig_x, orig_y, orig_w, orig_h; + int custom_stack_height; int mon; int ws; Bool fixed; @@ -87,6 +88,7 @@ typedef struct { float master_width[MAX_MONITORS]; int motion_throttle; int resize_master_amt; + int resize_stack_amt; int snap_distance; int bindsn; Bool new_win_focus; @@ -112,6 +114,8 @@ extern void quit(void); extern void reload_config(void); extern void resize_master_add(void); extern void resize_master_sub(void); +extern void resize_stack_add(void); +extern void resize_stack_sub(void); extern void toggle_floating(void); extern void toggle_floating_global(void); extern void toggle_fullscreen(void); |
