diff options
Diffstat (limited to '')
| -rw-r--r-- | src/defs.h | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -67,7 +67,6 @@ typedef struct client_t { Window win; int x, y, w, h; int orig_x, orig_y, orig_w, orig_h; - int custom_stack_height; int ws; Bool fixed; Bool floating; @@ -84,10 +83,7 @@ typedef struct { long border_foc_col; long border_ufoc_col; long border_swap_col; - float master_width; int motion_throttle; - int resize_master_amt; - int resize_stack_amt; int snap_distance; int n_binds; int move_window_amt; @@ -95,7 +91,6 @@ typedef struct { Bool new_win_focus; Bool warp_cursor; Bool floating_on_top; - Bool new_win_master; binding_t binds[MAX_ITEMS]; char *to_run[MAX_ITEMS]; } config_t; @@ -173,8 +168,8 @@ void hdl_property_ntf(XEvent *xev); void hdl_unmap_ntf(XEvent *xev); void init_defaults(void); Bool is_child_proc(pid_t pid1, pid_t pid2); -void move_master_next(void); -void move_master_prev(void); +void move_focused_next(void); +void move_focused_prev(void); void move_to_workspace(int ws); void move_win_down(void); void move_win_left(void); @@ -184,10 +179,6 @@ void other_wm(void); int other_wm_err(Display *d, XErrorEvent *ee); long parse_col(const char *hex); void quit(void); -void resize_master_add(void); -void resize_master_sub(void); -void resize_stack_add(void); -void resize_stack_sub(void); void resize_win_down(void); void resize_win_left(void); void resize_win_right(void); |
