]> git.lizzy.rs Git - bspwm.git/blob - src/settings.c
bspwm: port rounded corners patch to latest version
[bspwm.git] / src / settings.c
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 #include <stdio.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include "bspwm.h"
29 #include "settings.h"
30
31 char external_rules_command[MAXLEN];
32 char status_prefix[MAXLEN];
33
34 char normal_border_color[MAXLEN];
35 char active_border_color[MAXLEN];
36 char focused_border_color[MAXLEN];
37 char presel_feedback_color[MAXLEN];
38
39 padding_t padding;
40 padding_t monocle_padding;
41 int window_gap;
42 unsigned int border_width;
43 unsigned int border_radius;
44 double split_ratio;
45 child_polarity_t initial_polarity;
46 automatic_scheme_t automatic_scheme;
47 bool removal_adjustment;
48 tightness_t directional_focus_tightness;
49
50 uint16_t pointer_modifier;
51 uint32_t pointer_motion_interval;
52 pointer_action_t pointer_actions[3];
53 int8_t mapping_events_count;
54
55 bool presel_feedback;
56 bool borderless_monocle;
57 bool gapless_monocle;
58 bool single_monocle;
59 bool borderless_singleton;
60
61 bool focus_follows_pointer;
62 bool pointer_follows_focus;
63 bool pointer_follows_monitor;
64 int8_t click_to_focus;
65 bool swallow_first_click;
66 bool ignore_ewmh_focus;
67 bool ignore_ewmh_struts;
68 state_transition_t ignore_ewmh_fullscreen;
69
70 bool center_pseudo_tiled;
71 bool honor_size_hints;
72
73 bool remove_disabled_monitors;
74 bool remove_unplugged_monitors;
75 bool merge_overlapping_monitors;
76
77 void run_config(int run_level)
78 {
79         if (fork() == 0) {
80                 if (dpy != NULL) {
81                         close(xcb_get_file_descriptor(dpy));
82                 }
83                 setsid();
84                 char arg1[2];
85                 snprintf(arg1, 2, "%i", run_level);
86                 execl(config_path, config_path, arg1, (char *) NULL);
87                 err("Couldn't execute the configuration file.\n");
88         }
89 }
90
91 void load_settings(void)
92 {
93         snprintf(external_rules_command, sizeof(external_rules_command), "%s", EXTERNAL_RULES_COMMAND);
94         snprintf(status_prefix, sizeof(status_prefix), "%s", STATUS_PREFIX);
95
96         snprintf(normal_border_color, sizeof(normal_border_color), "%s", NORMAL_BORDER_COLOR);
97         snprintf(active_border_color, sizeof(active_border_color), "%s", ACTIVE_BORDER_COLOR);
98         snprintf(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR);
99         snprintf(presel_feedback_color, sizeof(presel_feedback_color), "%s", PRESEL_FEEDBACK_COLOR);
100
101         padding = (padding_t) PADDING;
102         monocle_padding = (padding_t) MONOCLE_PADDING;
103         window_gap = WINDOW_GAP;
104         border_width = BORDER_WIDTH;
105         border_radius = BORDER_RADIUS;
106         split_ratio = SPLIT_RATIO;
107         initial_polarity = SECOND_CHILD;
108         automatic_scheme = AUTOMATIC_SCHEME;
109         removal_adjustment = REMOVAL_ADJUSTMENT;
110         directional_focus_tightness = TIGHTNESS_HIGH;
111
112         pointer_modifier = POINTER_MODIFIER;
113         pointer_motion_interval = POINTER_MOTION_INTERVAL;
114         pointer_actions[0] = ACTION_MOVE;
115         pointer_actions[1] = ACTION_RESIZE_SIDE;
116         pointer_actions[2] = ACTION_RESIZE_CORNER;
117         mapping_events_count = MAPPING_EVENTS_COUNT;
118
119         presel_feedback = PRESEL_FEEDBACK;
120         borderless_monocle = BORDERLESS_MONOCLE;
121         gapless_monocle = GAPLESS_MONOCLE;
122         single_monocle = SINGLE_MONOCLE;
123         borderless_singleton = BORDERLESS_SINGLETON;
124
125         focus_follows_pointer = FOCUS_FOLLOWS_POINTER;
126         pointer_follows_focus = POINTER_FOLLOWS_FOCUS;
127         pointer_follows_monitor = POINTER_FOLLOWS_MONITOR;
128         click_to_focus = CLICK_TO_FOCUS;
129         swallow_first_click = SWALLOW_FIRST_CLICK;
130         ignore_ewmh_focus = IGNORE_EWMH_FOCUS;
131         ignore_ewmh_fullscreen = IGNORE_EWMH_FULLSCREEN;
132         ignore_ewmh_struts = IGNORE_EWMH_STRUTS;
133
134         center_pseudo_tiled = CENTER_PSEUDO_TILED;
135         honor_size_hints = HONOR_SIZE_HINTS;
136
137         remove_disabled_monitors = REMOVE_DISABLED_MONITORS;
138         remove_unplugged_monitors = REMOVE_UNPLUGGED_MONITORS;
139         merge_overlapping_monitors = MERGE_OVERLAPPING_MONITORS;
140 }