2009-02-25 00:50:30 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
|
|
|
|
* © 2009 Michael Stapelberg and contributors
|
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
2009-11-22 20:25:33 +01:00
|
|
|
|
* src/config.c: Contains all functions handling the configuration file (calling
|
|
|
|
|
* the parser (src/cfgparse.y) with the correct path, switching key bindings
|
|
|
|
|
* mode).
|
|
|
|
|
*
|
2009-02-25 00:50:30 +01:00
|
|
|
|
*/
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <stdlib.h>
|
2009-03-04 09:16:18 +01:00
|
|
|
|
#include <glob.h>
|
2009-02-25 00:50:30 +01:00
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
/* We need Xlib for XStringToKeysym */
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
|
|
#include <xcb/xcb_keysyms.h>
|
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
|
#include "i3.h"
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "config.h"
|
2009-06-01 15:14:45 +02:00
|
|
|
|
#include "xcb.h"
|
2009-07-24 19:30:27 +02:00
|
|
|
|
#include "table.h"
|
2009-07-28 13:55:09 +02:00
|
|
|
|
#include "workspace.h"
|
2009-12-19 22:39:00 +01:00
|
|
|
|
#include "log.h"
|
2009-02-25 00:50:30 +01:00
|
|
|
|
|
|
|
|
|
Config config;
|
2009-09-27 18:45:39 +02:00
|
|
|
|
struct modes_head modes;
|
2009-02-25 00:50:30 +01:00
|
|
|
|
|
|
|
|
|
/*
|
2009-03-04 09:16:18 +01:00
|
|
|
|
* This function resolves ~ in pathnames.
|
2009-02-25 00:50:30 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 09:16:18 +01:00
|
|
|
|
static char *glob_path(const char *path) {
|
2009-05-30 22:24:05 +02:00
|
|
|
|
static glob_t globbuf;
|
|
|
|
|
if (glob(path, GLOB_NOCHECK | GLOB_TILDE, NULL, &globbuf) < 0)
|
|
|
|
|
die("glob() failed");
|
|
|
|
|
char *result = sstrdup(globbuf.gl_pathc > 0 ? globbuf.gl_pathv[0] : path);
|
|
|
|
|
globfree(&globbuf);
|
|
|
|
|
return result;
|
2009-03-04 09:16:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
/**
|
|
|
|
|
* Ungrabs all keys, to be called before re-grabbing the keys because of a
|
|
|
|
|
* mapping_notify event or a configuration file reload
|
2009-07-23 20:36:48 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-07-23 18:14:24 +02:00
|
|
|
|
void ungrab_all_keys(xcb_connection_t *conn) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Ungrabbing all keys\n");
|
2009-08-07 15:35:12 +02:00
|
|
|
|
xcb_ungrab_key(conn, XCB_GRAB_ANY, root, XCB_BUTTON_MASK_ANY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void grab_keycode_for_binding(xcb_connection_t *conn, Binding *bind, uint32_t keycode) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Grabbing %d\n", keycode);
|
2009-08-07 15:35:12 +02:00
|
|
|
|
if ((bind->mods & BIND_MODE_SWITCH) != 0)
|
|
|
|
|
xcb_grab_key(conn, 0, root, 0, keycode,
|
|
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_SYNC);
|
|
|
|
|
else {
|
|
|
|
|
/* Grab the key in all combinations */
|
|
|
|
|
#define GRAB_KEY(modifier) xcb_grab_key(conn, 0, root, modifier, keycode, \
|
|
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC)
|
|
|
|
|
GRAB_KEY(bind->mods);
|
|
|
|
|
GRAB_KEY(bind->mods | xcb_numlock_mask);
|
|
|
|
|
GRAB_KEY(bind->mods | xcb_numlock_mask | XCB_MOD_MASK_LOCK);
|
2009-07-23 18:14:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 20:36:48 +02:00
|
|
|
|
/*
|
|
|
|
|
* Grab the bound keys (tell X to send us keypress events for those keycodes)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-07-23 18:14:24 +02:00
|
|
|
|
void grab_all_keys(xcb_connection_t *conn) {
|
|
|
|
|
Binding *bind;
|
2009-09-27 18:45:39 +02:00
|
|
|
|
TAILQ_FOREACH(bind, bindings, bindings) {
|
2009-08-07 15:35:12 +02:00
|
|
|
|
/* The easy case: the user specified a keycode directly. */
|
|
|
|
|
if (bind->keycode > 0) {
|
|
|
|
|
grab_keycode_for_binding(conn, bind, bind->keycode);
|
|
|
|
|
continue;
|
2009-07-23 18:14:24 +02:00
|
|
|
|
}
|
2009-08-07 15:35:12 +02:00
|
|
|
|
|
|
|
|
|
/* We need to translate the symbol to a keycode */
|
|
|
|
|
xcb_keysym_t keysym = XStringToKeysym(bind->symbol);
|
|
|
|
|
if (keysym == NoSymbol) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
ELOG("Could not translate string to key symbol: \"%s\"\n", bind->symbol);
|
2009-08-07 15:35:12 +02:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-02 23:15:08 +01:00
|
|
|
|
#ifdef OLD_XCB_KEYSYMS_API
|
|
|
|
|
bind->number_keycodes = 1;
|
|
|
|
|
xcb_keycode_t code = xcb_key_symbols_get_keycode(keysyms, keysym);
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Translated symbol \"%s\" to 1 keycode (%d)\n", bind->symbol, code);
|
2009-11-02 23:15:08 +01:00
|
|
|
|
grab_keycode_for_binding(conn, bind, code);
|
|
|
|
|
bind->translated_to = smalloc(sizeof(xcb_keycode_t));
|
|
|
|
|
memcpy(bind->translated_to, &code, sizeof(xcb_keycode_t));
|
|
|
|
|
#else
|
|
|
|
|
uint32_t last_keycode = 0;
|
2009-08-07 15:35:12 +02:00
|
|
|
|
xcb_keycode_t *keycodes = xcb_key_symbols_get_keycode(keysyms, keysym);
|
|
|
|
|
if (keycodes == NULL) {
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Could not translate symbol \"%s\"\n", bind->symbol);
|
2009-08-07 15:35:12 +02:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bind->number_keycodes = 0;
|
2009-11-02 23:15:08 +01:00
|
|
|
|
|
2009-08-07 15:35:12 +02:00
|
|
|
|
for (xcb_keycode_t *walk = keycodes; *walk != 0; walk++) {
|
|
|
|
|
/* We hope duplicate keycodes will be returned in order
|
|
|
|
|
* and skip them */
|
|
|
|
|
if (last_keycode == *walk)
|
|
|
|
|
continue;
|
|
|
|
|
grab_keycode_for_binding(conn, bind, *walk);
|
|
|
|
|
last_keycode = *walk;
|
|
|
|
|
bind->number_keycodes++;
|
|
|
|
|
}
|
2009-12-19 22:39:00 +01:00
|
|
|
|
DLOG("Translated symbol \"%s\" to %d keycode\n", bind->symbol, bind->number_keycodes);
|
2009-08-07 15:35:12 +02:00
|
|
|
|
bind->translated_to = smalloc(bind->number_keycodes * sizeof(xcb_keycode_t));
|
|
|
|
|
memcpy(bind->translated_to, keycodes, bind->number_keycodes * sizeof(xcb_keycode_t));
|
|
|
|
|
free(keycodes);
|
2009-11-02 23:15:08 +01:00
|
|
|
|
#endif
|
2009-07-23 18:14:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-27 18:45:39 +02:00
|
|
|
|
/*
|
|
|
|
|
* Switches the key bindings to the given mode, if the mode exists
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void switch_mode(xcb_connection_t *conn, const char *new_mode) {
|
|
|
|
|
struct Mode *mode;
|
|
|
|
|
|
|
|
|
|
LOG("Switching to mode %s\n", new_mode);
|
|
|
|
|
|
|
|
|
|
SLIST_FOREACH(mode, &modes, modes) {
|
|
|
|
|
if (strcasecmp(mode->name, new_mode) != 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
ungrab_all_keys(conn);
|
|
|
|
|
bindings = mode->bindings;
|
|
|
|
|
grab_all_keys(conn);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-19 22:39:00 +01:00
|
|
|
|
ELOG("ERROR: Mode not found\n");
|
2009-09-27 18:45:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 09:16:18 +01:00
|
|
|
|
/*
|
2009-11-22 20:25:33 +01:00
|
|
|
|
* Finds the configuration file to use (either the one specified by
|
|
|
|
|
* override_configpath), the user’s one or the system default) and calls
|
|
|
|
|
* parse_file().
|
2009-03-04 09:16:18 +01:00
|
|
|
|
*
|
2009-11-22 20:25:33 +01:00
|
|
|
|
*/
|
|
|
|
|
static void parse_configuration(const char *override_configpath) {
|
|
|
|
|
if (override_configpath != NULL) {
|
|
|
|
|
parse_file(override_configpath);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FILE *handle;
|
|
|
|
|
char *globbed = glob_path("~/.i3/config");
|
|
|
|
|
if ((handle = fopen(globbed, "r")) == NULL) {
|
|
|
|
|
if ((handle = fopen("/etc/i3/config", "r")) == NULL)
|
|
|
|
|
die("Neither \"%s\" nor /etc/i3/config could be opened\n", globbed);
|
|
|
|
|
|
|
|
|
|
parse_file("/etc/i3/config");
|
2009-12-11 17:57:42 +01:00
|
|
|
|
fclose(handle);
|
2009-11-22 20:25:33 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
parse_file(globbed);
|
|
|
|
|
fclose(handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* (Re-)loads the configuration file (sets useful defaults before).
|
2009-03-04 09:16:18 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-07-23 20:36:48 +02:00
|
|
|
|
void load_configuration(xcb_connection_t *conn, const char *override_configpath, bool reload) {
|
|
|
|
|
if (reload) {
|
2009-07-23 18:14:24 +02:00
|
|
|
|
/* First ungrab the keys */
|
|
|
|
|
ungrab_all_keys(conn);
|
2009-07-23 20:36:48 +02:00
|
|
|
|
|
2009-09-27 18:45:39 +02:00
|
|
|
|
struct Mode *mode;
|
2009-07-23 18:14:24 +02:00
|
|
|
|
Binding *bind;
|
2009-09-27 18:45:39 +02:00
|
|
|
|
while (!SLIST_EMPTY(&modes)) {
|
|
|
|
|
mode = SLIST_FIRST(&modes);
|
|
|
|
|
FREE(mode->name);
|
|
|
|
|
|
|
|
|
|
/* Clear the old binding list */
|
|
|
|
|
bindings = mode->bindings;
|
|
|
|
|
while (!TAILQ_EMPTY(bindings)) {
|
|
|
|
|
bind = TAILQ_FIRST(bindings);
|
|
|
|
|
TAILQ_REMOVE(bindings, bind, bindings);
|
2009-09-29 19:45:41 +02:00
|
|
|
|
FREE(bind->translated_to);
|
2009-09-27 18:45:39 +02:00
|
|
|
|
FREE(bind->command);
|
|
|
|
|
FREE(bind);
|
|
|
|
|
}
|
|
|
|
|
FREE(bindings);
|
|
|
|
|
SLIST_REMOVE(&modes, mode, Mode, modes);
|
2009-07-23 18:14:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Assignment *assign;
|
2009-07-23 20:36:48 +02:00
|
|
|
|
while (!TAILQ_EMPTY(&assignments)) {
|
|
|
|
|
assign = TAILQ_FIRST(&assignments);
|
|
|
|
|
FREE(assign->windowclass_title);
|
|
|
|
|
TAILQ_REMOVE(&assignments, assign, assignments);
|
|
|
|
|
FREE(assign);
|
2009-07-23 18:14:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-27 18:45:39 +02:00
|
|
|
|
SLIST_INIT(&modes);
|
|
|
|
|
|
|
|
|
|
struct Mode *default_mode = scalloc(sizeof(struct Mode));
|
|
|
|
|
default_mode->name = sstrdup("default");
|
|
|
|
|
default_mode->bindings = scalloc(sizeof(struct bindings_head));
|
|
|
|
|
TAILQ_INIT(default_mode->bindings);
|
|
|
|
|
SLIST_INSERT_HEAD(&modes, default_mode, modes);
|
|
|
|
|
|
|
|
|
|
bindings = default_mode->bindings;
|
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
|
#define REQUIRED_OPTION(name) \
|
|
|
|
|
if (config.name == NULL) \
|
|
|
|
|
die("You did not specify required configuration option " #name "\n");
|
|
|
|
|
|
|
|
|
|
/* Clear the old config or initialize the data structure */
|
|
|
|
|
memset(&config, 0, sizeof(config));
|
|
|
|
|
|
2009-05-30 22:20:32 +02:00
|
|
|
|
/* Initialize default colors */
|
2009-11-22 20:25:33 +01:00
|
|
|
|
#define INIT_COLOR(x, cborder, cbackground, ctext) \
|
|
|
|
|
do { \
|
|
|
|
|
x.border = get_colorpixel(conn, cborder); \
|
|
|
|
|
x.background = get_colorpixel(conn, cbackground); \
|
|
|
|
|
x.text = get_colorpixel(conn, ctext); \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
INIT_COLOR(config.client.focused, "#4c7899", "#285577", "#ffffff");
|
|
|
|
|
INIT_COLOR(config.client.focused_inactive, "#333333", "#5f676a", "#ffffff");
|
|
|
|
|
INIT_COLOR(config.client.unfocused, "#333333", "#222222", "#888888");
|
|
|
|
|
INIT_COLOR(config.client.urgent, "#2f343a", "#900000", "#ffffff");
|
|
|
|
|
INIT_COLOR(config.bar.focused, "#4c7899", "#285577", "#ffffff");
|
|
|
|
|
INIT_COLOR(config.bar.unfocused, "#333333", "#222222", "#888888");
|
|
|
|
|
INIT_COLOR(config.bar.urgent, "#2f343a", "#900000", "#ffffff");
|
|
|
|
|
|
|
|
|
|
parse_configuration(override_configpath);
|
2009-05-16 17:32:36 +02:00
|
|
|
|
|
2009-07-23 20:36:48 +02:00
|
|
|
|
if (reload)
|
|
|
|
|
grab_all_keys(conn);
|
2009-09-19 19:05:15 +02:00
|
|
|
|
|
|
|
|
|
REQUIRED_OPTION(font);
|
2009-07-28 13:55:09 +02:00
|
|
|
|
|
|
|
|
|
/* Set an empty name for every workspace which got no name */
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Workspace *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
2009-08-07 15:48:13 +02:00
|
|
|
|
if (ws->name != NULL) {
|
|
|
|
|
/* If the font was not specified when the workspace name
|
|
|
|
|
* was loaded, we need to predict the text width now */
|
|
|
|
|
if (ws->text_width == 0)
|
|
|
|
|
ws->text_width = predict_text_width(global_conn,
|
|
|
|
|
config.font, ws->name, ws->name_len);
|
2009-07-28 13:55:09 +02:00
|
|
|
|
continue;
|
2009-08-07 15:48:13 +02:00
|
|
|
|
}
|
2009-07-28 13:55:09 +02:00
|
|
|
|
|
2009-09-29 19:45:41 +02:00
|
|
|
|
workspace_set_name(ws, NULL);
|
2009-07-28 13:55:09 +02:00
|
|
|
|
}
|
2009-02-25 00:50:30 +01:00
|
|
|
|
}
|