]> git.lizzy.rs Git - bspwm.git/blobdiff - settings.c
Update TODO regarding pointer grabbing
[bspwm.git] / settings.c
index 219199c96c9e96f495c55aa786709a840bd4a3d6..e6ab7cca0de201501cfd69a71e31e2167325c8e2 100644 (file)
@@ -1,89 +1,79 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
+/* 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:
+ *
+ * 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 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
+ * (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 <unistd.h>
-#include <lua.h>
-#include <lualib.h>
-#include <lauxlib.h>
-#include <xcb/xcb.h>
-#include <xcb/xcb_event.h>
-#include "helpers.h"
-#include "types.h"
 #include "bspwm.h"
-#include "utils.h"
-#include "luautils.h"
-#include "common.h"
 #include "settings.h"
 
-void load_settings(void)
+void run_config(void)
 {
-    char path[MAXLEN];
-    lua_State *L = lua_open();
-    luaopen_base(L);
-    /* luaL_openlibs(L); */
-
-    snprintf(path, sizeof(path), "%s/%s/%s", getenv("XDG_CONFIG_HOME"), WM_NAME, CONFIG_FILE);
-
-    if (luaL_loadfile(L, path) == 0) {
-        if (lua_pcall(L, 0, 0, 0) == 0)
-            apply_settings(L);
-        else
-            PUTS("error: cannot interpret configuration file");
-    } else {
-        PUTS("error: could not load configuration file");
-    }
-
-    lua_close(L);
+       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 run_autostart(void)
-{
-    char path[MAXLEN];
-
-    snprintf(path, sizeof(path), "%s/%s/%s", getenv("XDG_CONFIG_HOME"), WM_NAME, AUTOSTART_FILE);
-
-    if (fork() != 0)
-        return;
-
-    if (dpy != NULL)
-        close(xcb_get_file_descriptor(dpy));
-
-    setsid();
-    execl(path, path, NULL);
-        
-    PUTS("error: could not load autostart file");
-    exit(EXIT_SUCCESS);
-}
-
-void apply_settings(lua_State *L)
+void load_settings(void)
 {
-    string_expr(L, normal_border_color, "normal_border_color", NORMAL_BORDER_COLOR);
-    string_expr(L, active_border_color, "active_border_color", ACTIVE_BORDER_COLOR);
-    string_expr(L, inner_border_color, "inner_border_color", INNER_BORDER_COLOR);
-    string_expr(L, outer_border_color, "outer_border_color", OUTER_BORDER_COLOR);
-    string_expr(L, presel_border_color, "presel_border_color", PRESEL_BORDER_COLOR);
-    string_expr(L, locked_border_color, "locked_border_color", LOCKED_BORDER_COLOR);
-
-    normal_border_color_pxl = get_color(normal_border_color);
-    active_border_color_pxl = get_color(active_border_color);
-    inner_border_color_pxl = get_color(inner_border_color);
-    outer_border_color_pxl = get_color(outer_border_color);
-    presel_border_color_pxl = get_color(presel_border_color);
-    locked_border_color_pxl = get_color(locked_border_color);
-
-    string_expr(L, wm_name, "wm_name", WM_NAME);
-
-    adaptive_window_border = bool_expr(L, "adaptive_window_border", ADAPTIVE_WINDOW_BORDER);
-
-    inner_border_width = int_expr(L, "inner_border_width", INNER_BORDER_WIDTH);
-    main_border_width = int_expr(L, "main_border_width", MAIN_BORDER_WIDTH);
-    outer_border_width = int_expr(L, "outer_border_width", OUTER_BORDER_WIDTH);
-
-    border_width = inner_border_width + main_border_width + outer_border_width;
-
-    window_gap = int_expr(L, "window_gap", WINDOW_GAP);
-    left_padding = int_expr(L, "left_padding", LEFT_PADDING);
-    right_padding = int_expr(L, "right_padding", RIGHT_PADDING);
-    top_padding = int_expr(L, "top_padding", TOP_PADDING);
-    bottom_padding = int_expr(L, "bottom_padding", BOTTOM_PADDING);
+       snprintf(external_rules_command, sizeof(external_rules_command), "%s", EXTERNAL_RULES_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);
+
+       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_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;
 }