X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=settings.c;h=c20f3d714606db424f493a7ea8f6a24a2cf527f2;hb=516c9741f2cc41e545755328f3f793cb7c07ecc6;hp=4a8e8c4508f7f2beeacba909de4a5c7c4753e3c5;hpb=493eaa78aaabae35a2f41acc887a5f9536de1b50;p=bspwm.git diff --git a/settings.c b/settings.c index 4a8e8c4..c20f3d7 100644 --- a/settings.c +++ b/settings.c @@ -1,83 +1,80 @@ -/* * Copyright (c) 2012-2013 Bastien Dejean +/* Copyright (c) 2012, Bastien Dejean * All rights reserved. * - * Redistribution and use in source and binary forms, with or without modification, - * are permitted provided that the following conditions are met: + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: * - * * Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation and/or - * other materials provided with the distribution. + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include #include -#include #include "bspwm.h" #include "settings.h" void run_config(void) { - if (fork() == 0) { - if (dpy != NULL) - close(xcb_get_file_descriptor(dpy)); - if (fork() == 0) { - setsid(); - execl(config_path, config_path, NULL); - err("Couldn't execute the configuration file.\n"); - } - exit(EXIT_SUCCESS); - } - - wait(NULL); + if (fork() == 0) { + if (dpy != NULL) + close(xcb_get_file_descriptor(dpy)); + setsid(); + execl(config_path, config_path, NULL); + err("Couldn't execute the configuration file.\n"); + } } void load_settings(void) { - snprintf(rule_command, sizeof(rule_command), "%s", RULE_COMMAND); - snprintf(status_prefix, sizeof(status_prefix), "%s", STATUS_PREFIX); - - snprintf(normal_border_color, sizeof(normal_border_color), "%s", NORMAL_BORDER_COLOR); - snprintf(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR); - snprintf(active_border_color, sizeof(active_border_color), "%s", ACTIVE_BORDER_COLOR); - snprintf(presel_border_color, sizeof(presel_border_color), "%s", PRESEL_BORDER_COLOR); - snprintf(focused_locked_border_color, sizeof(focused_locked_border_color), "%s", FOCUSED_LOCKED_BORDER_COLOR); - snprintf(active_locked_border_color, sizeof(active_locked_border_color), "%s", ACTIVE_LOCKED_BORDER_COLOR); - snprintf(normal_locked_border_color, sizeof(normal_locked_border_color), "%s", NORMAL_LOCKED_BORDER_COLOR); - snprintf(focused_sticky_border_color, sizeof(focused_sticky_border_color), "%s", FOCUSED_STICKY_BORDER_COLOR); - snprintf(active_sticky_border_color, sizeof(active_sticky_border_color), "%s", ACTIVE_STICKY_BORDER_COLOR); - snprintf(normal_sticky_border_color, sizeof(normal_sticky_border_color), "%s", NORMAL_STICKY_BORDER_COLOR); - snprintf(focused_private_border_color, sizeof(focused_private_border_color), "%s", FOCUSED_PRIVATE_BORDER_COLOR); - snprintf(active_private_border_color, sizeof(active_private_border_color), "%s", ACTIVE_PRIVATE_BORDER_COLOR); - snprintf(normal_private_border_color, sizeof(normal_private_border_color), "%s", NORMAL_PRIVATE_BORDER_COLOR); - snprintf(urgent_border_color, sizeof(urgent_border_color), "%s", URGENT_BORDER_COLOR); + snprintf(external_rules_command, sizeof(external_rules_command), "%s", EXTERNAL_RULES_COMMAND); + snprintf(status_prefix, sizeof(status_prefix), "%s", STATUS_PREFIX); - focused_frame_opacity = FOCUSED_FRAME_OPACITY; - active_frame_opacity = ACTIVE_FRAME_OPACITY; - normal_frame_opacity = NORMAL_FRAME_OPACITY; + snprintf(normal_border_color, sizeof(normal_border_color), "%s", NORMAL_BORDER_COLOR); + snprintf(focused_border_color, sizeof(focused_border_color), "%s", FOCUSED_BORDER_COLOR); + snprintf(active_border_color, sizeof(active_border_color), "%s", ACTIVE_BORDER_COLOR); + snprintf(presel_border_color, sizeof(presel_border_color), "%s", PRESEL_BORDER_COLOR); + snprintf(focused_locked_border_color, sizeof(focused_locked_border_color), "%s", FOCUSED_LOCKED_BORDER_COLOR); + snprintf(active_locked_border_color, sizeof(active_locked_border_color), "%s", ACTIVE_LOCKED_BORDER_COLOR); + snprintf(normal_locked_border_color, sizeof(normal_locked_border_color), "%s", NORMAL_LOCKED_BORDER_COLOR); + snprintf(focused_sticky_border_color, sizeof(focused_sticky_border_color), "%s", FOCUSED_STICKY_BORDER_COLOR); + snprintf(active_sticky_border_color, sizeof(active_sticky_border_color), "%s", ACTIVE_STICKY_BORDER_COLOR); + snprintf(normal_sticky_border_color, sizeof(normal_sticky_border_color), "%s", NORMAL_STICKY_BORDER_COLOR); + snprintf(focused_private_border_color, sizeof(focused_private_border_color), "%s", FOCUSED_PRIVATE_BORDER_COLOR); + snprintf(active_private_border_color, sizeof(active_private_border_color), "%s", ACTIVE_PRIVATE_BORDER_COLOR); + snprintf(normal_private_border_color, sizeof(normal_private_border_color), "%s", NORMAL_PRIVATE_BORDER_COLOR); + snprintf(urgent_border_color, sizeof(urgent_border_color), "%s", URGENT_BORDER_COLOR); - split_ratio = SPLIT_RATIO; - growth_factor = GROWTH_FACTOR; + split_ratio = SPLIT_RATIO; + window_gap = WINDOW_GAP; + border_width = BORDER_WIDTH; + initial_polarity = FIRST_CHILD; - borderless_monocle = BORDERLESS_MONOCLE; - gapless_monocle = GAPLESS_MONOCLE; - focus_follows_pointer = FOCUS_FOLLOWS_POINTER; - pointer_follows_monitor = POINTER_FOLLOWS_MONITOR; - apply_floating_atom = APPLY_FLOATING_ATOM; - auto_alternate = AUTO_ALTERNATE; - auto_cancel = AUTO_CANCEL; - history_aware_focus = HISTORY_AWARE_FOCUS; - ignore_ewmh_focus = IGNORE_EWMH_FOCUS; + borderless_monocle = BORDERLESS_MONOCLE; + gapless_monocle = GAPLESS_MONOCLE; + leaf_monocle = LEAF_MONOCLE; + focus_follows_pointer = FOCUS_FOLLOWS_POINTER; + pointer_follows_focus = POINTER_FOLLOWS_FOCUS; + pointer_follows_monitor = POINTER_FOLLOWS_MONITOR; + apply_floating_atom = APPLY_FLOATING_ATOM; + auto_alternate = AUTO_ALTERNATE; + auto_cancel = AUTO_CANCEL; + history_aware_focus = HISTORY_AWARE_FOCUS; + ignore_ewmh_focus = IGNORE_EWMH_FOCUS; + center_pseudo_tiled = CENTER_PSEUDO_TILED; + remove_disabled_monitors = REMOVE_DISABLED_MONITORS; + remove_unplugged_monitors = REMOVE_UNPLUGGED_MONITORS; + merge_overlapping_monitors = MERGE_OVERLAPPING_MONITORS; }