]> git.lizzy.rs Git - bspwm.git/blob - settings.c
Indentation: convert spaces to tabs
[bspwm.git] / settings.c
1 /*
2  * Copyright (c) 2012-2014, Bastien Dejean
3  * All rights reserved.
4  * 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * 
8  * 1. Redistributions of source code must retain the above copyright notice, this
9  *    list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright notice,
11  *    this list of conditions and the following disclaimer in the documentation
12  *    and/or other materials provided with the distribution.
13  * 
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  * 
25  * The views and conclusions contained in the software and documentation are those
26  * of the authors and should not be interpreted as representing official policies,
27  * either expressed or implied, of the FreeBSD Project.
28  */
29
30 #include <unistd.h>
31 #include "bspwm.h"
32 #include "settings.h"
33
34 void run_config(void)
35 {
36         if (fork() == 0) {
37                 if (dpy != NULL)
38                         close(xcb_get_file_descriptor(dpy));
39                 setsid();
40                 execl(config_path, config_path, NULL);
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(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR);
52         snprintf(active_border_color, sizeof(active_border_color), "%s", ACTIVE_BORDER_COLOR);
53         snprintf(presel_border_color, sizeof(presel_border_color), "%s", PRESEL_BORDER_COLOR);
54         snprintf(focused_locked_border_color, sizeof(focused_locked_border_color), "%s", FOCUSED_LOCKED_BORDER_COLOR);
55         snprintf(active_locked_border_color, sizeof(active_locked_border_color), "%s", ACTIVE_LOCKED_BORDER_COLOR);
56         snprintf(normal_locked_border_color, sizeof(normal_locked_border_color), "%s", NORMAL_LOCKED_BORDER_COLOR);
57         snprintf(focused_sticky_border_color, sizeof(focused_sticky_border_color), "%s", FOCUSED_STICKY_BORDER_COLOR);
58         snprintf(active_sticky_border_color, sizeof(active_sticky_border_color), "%s", ACTIVE_STICKY_BORDER_COLOR);
59         snprintf(normal_sticky_border_color, sizeof(normal_sticky_border_color), "%s", NORMAL_STICKY_BORDER_COLOR);
60         snprintf(focused_private_border_color, sizeof(focused_private_border_color), "%s", FOCUSED_PRIVATE_BORDER_COLOR);
61         snprintf(active_private_border_color, sizeof(active_private_border_color), "%s", ACTIVE_PRIVATE_BORDER_COLOR);
62         snprintf(normal_private_border_color, sizeof(normal_private_border_color), "%s", NORMAL_PRIVATE_BORDER_COLOR);
63         snprintf(urgent_border_color, sizeof(urgent_border_color), "%s", URGENT_BORDER_COLOR);
64
65         split_ratio = SPLIT_RATIO;
66
67         borderless_monocle = BORDERLESS_MONOCLE;
68         gapless_monocle = GAPLESS_MONOCLE;
69         focus_follows_pointer = FOCUS_FOLLOWS_POINTER;
70         pointer_follows_monitor = POINTER_FOLLOWS_MONITOR;
71         apply_floating_atom = APPLY_FLOATING_ATOM;
72         auto_alternate = AUTO_ALTERNATE;
73         auto_cancel = AUTO_CANCEL;
74         history_aware_focus = HISTORY_AWARE_FOCUS;
75         ignore_ewmh_focus = IGNORE_EWMH_FOCUS;
76         remove_disabled_monitor = REMOVE_DISABLED_MONITOR;
77 }