]> git.lizzy.rs Git - bspwm.git/blob - src/settings.c
Add setting: ignore_ewmh_fullscreen
[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 extern char **environ;
32
33 void run_config(void)
34 {
35         if (fork() == 0) {
36                 if (dpy != NULL) {
37                         close(xcb_get_file_descriptor(dpy));
38                 }
39                 setsid();
40                 execle(config_path, config_path, (char *) NULL, environ);
41                 err("Couldn't execute the configuration file.\n");
42         }
43 }
44
45 void load_settings(void)
46 {
47         snprintf(external_rules_command, sizeof(external_rules_command), "%s", EXTERNAL_RULES_COMMAND);
48         snprintf(status_prefix, sizeof(status_prefix), "%s", STATUS_PREFIX);
49
50         snprintf(normal_border_color, sizeof(normal_border_color), "%s", NORMAL_BORDER_COLOR);
51         snprintf(active_border_color, sizeof(active_border_color), "%s", ACTIVE_BORDER_COLOR);
52         snprintf(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR);
53         snprintf(presel_feedback_color, sizeof(presel_feedback_color), "%s", PRESEL_FEEDBACK_COLOR);
54
55         padding = (padding_t) PADDING;
56         window_gap = WINDOW_GAP;
57         border_width = BORDER_WIDTH;
58         split_ratio = SPLIT_RATIO;
59         initial_polarity = FIRST_CHILD;
60         directional_focus_tightness = TIGHTNESS_HIGH;
61         pointer_modifier = POINTER_MODIFIER;
62         pointer_motion_interval = POINTER_MOTION_INTERVAL;
63         mapping_events_count = MAPPING_EVENTS_COUNT;
64
65         pointer_actions[0] = ACTION_MOVE;
66         pointer_actions[1] = ACTION_RESIZE_SIDE;
67         pointer_actions[2] = ACTION_RESIZE_CORNER;
68
69         borderless_monocle = BORDERLESS_MONOCLE;
70         gapless_monocle = GAPLESS_MONOCLE;
71         paddingless_monocle = PADDINGLESS_MONOCLE;
72         single_monocle = SINGLE_MONOCLE;
73
74         focus_follows_pointer = FOCUS_FOLLOWS_POINTER;
75         pointer_follows_focus = POINTER_FOLLOWS_FOCUS;
76         pointer_follows_monitor = POINTER_FOLLOWS_MONITOR;
77         click_to_focus = CLICK_TO_FOCUS;
78         swallow_first_click = SWALLOW_FIRST_CLICK;
79         ignore_ewmh_focus = IGNORE_EWMH_FOCUS;
80         ignore_ewmh_fullscreen = IGNORE_EWMH_FULLSCREEN;
81
82         center_pseudo_tiled = CENTER_PSEUDO_TILED;
83         honor_size_hints = HONOR_SIZE_HINTS;
84
85         remove_disabled_monitors = REMOVE_DISABLED_MONITORS;
86         remove_unplugged_monitors = REMOVE_UNPLUGGED_MONITORS;
87         merge_overlapping_monitors = MERGE_OVERLAPPING_MONITORS;
88 }