summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorAbhinav <abhinav.prsai@gmail.com>2025-06-03 01:02:13 +0100
committerAbhinav <abhinav.prsai@gmail.com>2025-06-03 01:02:13 +0100
commit6709c1685acabad5c3e5a0444c689087c2f6777e (patch)
tree9a328a88253a3f9f4a2347f618b482fa6ef45ccb /src/defs.h
parent52f977f77276cf4eb6939ddcb5d772d0860789a4 (diff)
added vertical stack resizing
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index 310b49c..6115df3 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -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);