]> git.lizzy.rs Git - bspwm.git/blob - settings.h
Remove setting: history_aware_focus
[bspwm.git] / settings.h
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #ifndef BSPWM_SETTINGS_H
26 #define BSPWM_SETTINGS_H
27
28 #include "types.h"
29
30 #define WM_NAME                 "bspwm"
31 #define CONFIG_NAME             WM_NAME "rc"
32 #define CONFIG_HOME_ENV         "XDG_CONFIG_HOME"
33 #define POINTER_MODIFIER        XCB_MOD_MASK_4
34 #define EXTERNAL_RULES_COMMAND  ""
35 #define STATUS_PREFIX           "W"
36
37 #define NORMAL_BORDER_COLOR           "#30302f"
38 #define ACTIVE_BORDER_COLOR           "#474645"
39 #define FOCUSED_BORDER_COLOR          "#817f7f"
40 #define PRESEL_FEEDBACK_COLOR         "#f4d775"
41
42 #define PADDING              {0, 0, 0, 0}
43 #define WINDOW_GAP           6
44 #define BORDER_WIDTH         1
45 #define SPLIT_RATIO          0.5
46
47 #define BORDERLESS_MONOCLE          false
48 #define GAPLESS_MONOCLE             false
49 #define PADDINGLESS_MONOCLE         false
50 #define SINGLE_MONOCLE              false
51 #define FOCUS_FOLLOWS_POINTER       false
52 #define POINTER_FOLLOWS_FOCUS       false
53 #define POINTER_FOLLOWS_MONITOR     false
54 #define IGNORE_EWMH_FOCUS           false
55 #define CENTER_PSEUDO_TILED         true
56 #define CLICK_TO_FOCUS              false
57 #define HONOR_SIZE_HINTS            false
58 #define REMOVE_DISABLED_MONITORS    false
59 #define REMOVE_UNPLUGGED_MONITORS   false
60 #define MERGE_OVERLAPPING_MONITORS  false
61
62 char external_rules_command[MAXLEN];
63 char status_prefix[MAXLEN];
64
65 char normal_border_color[MAXLEN];
66 char active_border_color[MAXLEN];
67 char focused_border_color[MAXLEN];
68 char presel_feedback_color[MAXLEN];
69
70 padding_t padding;
71 int window_gap;
72 unsigned int border_width;
73 double split_ratio;
74
75 child_polarity_t initial_polarity;
76 uint16_t pointer_modifier;
77 pointer_action_t pointer_actions[3];
78
79 bool borderless_monocle;
80 bool gapless_monocle;
81 bool paddingless_monocle;
82 bool single_monocle;
83 bool focus_follows_pointer;
84 bool pointer_follows_focus;
85 bool pointer_follows_monitor;
86 bool ignore_ewmh_focus;
87 bool center_pseudo_tiled;
88 bool click_to_focus;
89 bool honor_size_hints;
90 bool remove_disabled_monitors;
91 bool remove_unplugged_monitors;
92 bool merge_overlapping_monitors;
93
94 void run_config(void);
95 void load_settings(void);
96
97 #endif