summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authoruint23 <abhinav.prsai@gmail.com>2025-04-28 07:40:40 +0100
committeruint23 <abhinav.prsai@gmail.com>2025-04-28 07:40:40 +0100
commit0a1816addb7dcc1462767d6cafb2bf51dcc1c122 (patch)
tree6a655e649052f978d6a2d98d74f41ccc415c111d /src/defs.h
parentbc2401064614e9a87a01189e177a2a7978ff5522 (diff)
parser not stable, testing
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 000e842..e7f1144 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -95,6 +95,7 @@ typedef struct Client{
} Client;
typedef struct {
+ int modkey;
int gaps;
int border_width;
long border_foc_col;
@@ -103,6 +104,7 @@ typedef struct {
int master_width;
int resize_master_amt;
int snap_distance;
+ int bindsn;
Binding binds[256];
} Config;
@@ -118,7 +120,9 @@ extern void focus_prev(void);
extern void inc_gaps(void);
extern void move_master_next(void);
extern void move_master_prev(void);
+extern long parse_col(const char *hex);
extern void quit(void);
+extern void reload_config(void);
extern void resize_master_add(void);
extern void resize_master_sub(void);
extern void toggle_floating(void);