29 DLOG(
"Initializing criteria, current_match = %p, state = %d\n",
current_match, _state);
43 CFGFUN(criteria_add,
const char *ctype,
const char *cvalue) {
52 return (strcasecmp(str,
"1") == 0 ||
53 strcasecmp(str,
"yes") == 0 ||
54 strcasecmp(str,
"true") == 0 ||
55 strcasecmp(str,
"on") == 0 ||
56 strcasecmp(str,
"enable") == 0 ||
57 strcasecmp(str,
"active") == 0);
70 if (strstr(str,
"Mod1") != NULL)
71 result |= XCB_KEY_BUT_MASK_MOD_1;
72 if (strstr(str,
"Mod2") != NULL)
73 result |= XCB_KEY_BUT_MASK_MOD_2;
74 if (strstr(str,
"Mod3") != NULL)
75 result |= XCB_KEY_BUT_MASK_MOD_3;
76 if (strstr(str,
"Mod4") != NULL)
77 result |= XCB_KEY_BUT_MASK_MOD_4;
78 if (strstr(str,
"Mod5") != NULL)
79 result |= XCB_KEY_BUT_MASK_MOD_5;
80 if (strstr(str,
"Control") != NULL ||
81 strstr(str,
"Ctrl") != NULL)
82 result |= XCB_KEY_BUT_MASK_CONTROL;
83 if (strstr(str,
"Shift") != NULL)
84 result |= XCB_KEY_BUT_MASK_SHIFT;
86 if (strstr(str,
"Group1") != NULL)
88 if (strstr(str,
"Group2") != NULL ||
89 strstr(str,
"Mode_switch") != NULL)
91 if (strstr(str,
"Group3") != NULL)
93 if (strstr(str,
"Group4") != NULL)
109 CFGFUN(binding,
const char *bindtype,
const char *modifiers,
const char *key,
const char *release,
const char *border,
const char *whole_window,
const char *exclude_titlebar,
const char *command) {
120 CFGFUN(mode_binding,
const char *bindtype,
const char *modifiers,
const char *key,
const char *release,
const char *border,
const char *whole_window,
const char *exclude_titlebar,
const char *command) {
132 if (strcmp(mode->
name, modename) == 0) {
133 ELOG(
"The binding mode with name \"%s\" is defined at least twice.\n", modename);
137 DLOG(
"\t now in mode %s\n", modename);
143 CFGFUN(exec,
const char *exectype,
const char *no_startup_id,
const char *command) {
147 if (strcmp(exectype,
"exec") == 0) {
156 ELOG(
"Match is empty, ignoring this for_window statement\n");
159 DLOG(
"\t should execute command %s for the criteria mentioned above\n",
command);
161 assignment->
type = A_COMMAND;
168 DLOG(
"Setting gaps for workspace %s", workspace);
172 if (strcasecmp(assignment->
name, workspace) == 0) {
173 if (!strcmp(scope,
"inner")) {
175 }
else if (!strcmp(scope,
"outer")) {
180 }
else if (!strcmp(scope,
"vertical")) {
183 }
else if (!strcmp(scope,
"horizontal")) {
186 }
else if (!strcmp(scope,
"top")) {
188 }
else if (!strcmp(scope,
"right")) {
190 }
else if (!strcmp(scope,
"bottom")) {
192 }
else if (!strcmp(scope,
"left")) {
195 ELOG(
"Invalid command, cannot process scope %s", scope);
205 assignment->
output = NULL;
206 if (!strcmp(scope,
"inner")) {
208 }
else if (!strcmp(scope,
"outer")) {
213 }
else if (!strcmp(scope,
"vertical")) {
216 }
else if (!strcmp(scope,
"horizontal")) {
219 }
else if (!strcmp(scope,
"top")) {
221 }
else if (!strcmp(scope,
"right")) {
223 }
else if (!strcmp(scope,
"bottom")) {
225 }
else if (!strcmp(scope,
"left")) {
228 ELOG(
"Invalid command, cannot process scope %s", scope);
233 CFGFUN(
gaps,
const char *workspace,
const char *scope,
const long value) {
236 if (!strcmp(scope,
"inner")) {
237 if (workspace == NULL)
243 }
else if (!strcmp(scope,
"outer")) {
244 if (workspace == NULL) {
256 }
else if (!strcmp(scope,
"vertical")) {
257 if (workspace == NULL) {
265 }
else if (!strcmp(scope,
"horizontal")) {
266 if (workspace == NULL) {
274 }
else if (!strcmp(scope,
"top")) {
275 if (workspace == NULL)
281 }
else if (!strcmp(scope,
"right")) {
282 if (workspace == NULL)
288 }
else if (!strcmp(scope,
"bottom")) {
289 if (workspace == NULL)
295 }
else if (!strcmp(scope,
"left")) {
296 if (workspace == NULL)
303 ELOG(
"Invalid command, cannot process scope %s", scope);
307 CFGFUN(smart_borders,
const char *enable) {
308 if (!strcmp(enable,
"no_gaps"))
315 if (!strcmp(enable,
"inverse_outer"))
321 CFGFUN(floating_minimum_size,
const long width,
const long height) {
326 CFGFUN(floating_maximum_size,
const long width,
const long height) {
331 CFGFUN(floating_modifier,
const char *modifiers) {
335 CFGFUN(default_orientation,
const char *orientation) {
336 if (strcmp(orientation,
"horizontal") == 0)
338 else if (strcmp(orientation,
"vertical") == 0)
344 CFGFUN(workspace_layout,
const char *layout) {
345 if (strcmp(layout,
"default") == 0)
347 else if (strcmp(layout,
"stacking") == 0 ||
348 strcmp(layout,
"stacked") == 0)
354 CFGFUN(default_border,
const char *windowtype,
const char *border,
const long width) {
358 if (strcmp(border,
"1pixel") == 0) {
361 }
else if (strcmp(border,
"none") == 0) {
364 }
else if (strcmp(border,
"pixel") == 0) {
366 border_width = width;
369 border_width = width;
372 if ((strcmp(windowtype,
"default_border") == 0) ||
373 (strcmp(windowtype,
"new_window") == 0)) {
374 DLOG(
"default tiled border style = %d and border width = %d (%d physical px)\n",
375 border_style, border_width,
logical_px(border_width));
379 DLOG(
"default floating border style = %d and border width = %d (%d physical px)\n",
380 border_style, border_width,
logical_px(border_width));
386 CFGFUN(hide_edge_borders,
const char *borders) {
387 if (strcmp(borders,
"smart_no_gaps") == 0)
389 else if (strcmp(borders,
"smart") == 0)
391 else if (strcmp(borders,
"vertical") == 0)
393 else if (strcmp(borders,
"horizontal") == 0)
395 else if (strcmp(borders,
"both") == 0)
397 else if (strcmp(borders,
"none") == 0)
405 CFGFUN(focus_follows_mouse,
const char *value) {
409 CFGFUN(mouse_warping,
const char *value) {
410 if (strcmp(value,
"none") == 0)
412 else if (strcmp(value,
"output") == 0)
420 CFGFUN(disable_randr15,
const char *value) {
424 CFGFUN(focus_wrapping,
const char *value) {
425 if (strcmp(value,
"force") == 0) {
427 }
else if (strcmp(value,
"workspace") == 0) {
436 CFGFUN(force_focus_wrapping,
const char *value) {
458 CFGFUN(force_display_urgency_hint,
const long duration_ms) {
462 CFGFUN(focus_on_window_activation,
const char *mode) {
463 if (strcmp(mode,
"smart") == 0)
465 else if (strcmp(mode,
"urgent") == 0)
467 else if (strcmp(mode,
"focus") == 0)
469 else if (strcmp(mode,
"none") == 0)
472 ELOG(
"Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
479 CFGFUN(title_align,
const char *alignment) {
480 if (strcmp(alignment,
"left") == 0) {
482 }
else if (strcmp(alignment,
"center") == 0) {
484 }
else if (strcmp(alignment,
"right") == 0) {
508 if (strcasecmp(assignment->
name, workspace) == 0) {
509 if (assignment->
output != NULL) {
510 ELOG(
"You have a duplicate workspace assignment for workspace \"%s\"\n",
520 DLOG(
"Both workspace and current_workspace are NULL, assuming we had an error before\n");
526 DLOG(
"Assigning workspace \"%s\" to output \"%s\"\n", workspace,
output);
539 CFGFUN(restart_state,
const char *path) {
544 CFGFUN(popup_during_fullscreen,
const char *value) {
545 if (strcmp(value,
"ignore") == 0) {
547 }
else if (strcmp(value,
"leave_fullscreen") == 0) {
554 CFGFUN(color_single,
const char *colorclass,
const char *color) {
559 CFGFUN(color,
const char *colorclass,
const char *qubelabel,
const char *border,
const char *background,
const char *text,
const char *indicator,
const char *child_border) {
560 #define APPLY_COLORS(classname, label) \ 562 if (strcmp(colorclass, "client." #classname) == 0) { \ 563 config.client[label].classname.border = \ 564 draw_util_hex_to_color(border); \ 565 config.client[label].classname.background = \ 566 draw_util_hex_to_color(background); \ 567 config.client[label].classname.text = \ 568 draw_util_hex_to_color(text); \ 569 if (indicator != NULL) { \ 570 config.client[label].classname.indicator = \ 571 draw_util_hex_to_color(indicator); \ 573 if (child_border != NULL) { \ 574 config.client[label].classname.child_border = \ 575 draw_util_hex_to_color(child_border); \ 577 config.client[label].classname.child_border = \ 578 config.client[label].classname.background;\ 585 if (strcmp(qubelabel,
"dom0") == 0) {
587 }
else if (strcmp(qubelabel,
"red") == 0) {
589 }
else if (strcmp(qubelabel,
"orange") == 0) {
591 }
else if (strcmp(qubelabel,
"yellow") == 0) {
593 }
else if (strcmp(qubelabel,
"green") == 0) {
595 }
else if (strcmp(qubelabel,
"gray") == 0) {
597 }
else if (strcmp(qubelabel,
"blue") == 0) {
599 }
else if (strcmp(qubelabel,
"purple") == 0) {
601 }
else if (strcmp(qubelabel,
"black") == 0) {
619 ELOG(
"Match is empty, ignoring this assignment\n");
624 ELOG(
"Assignments using window mode (floating/tiling) is not supported\n");
628 DLOG(
"New assignment, using above criteria, to output \"%s\".\n",
output);
631 assignment->
type = A_TO_OUTPUT;
636 CFGFUN(assign,
const char *workspace,
bool is_number) {
638 ELOG(
"Match is empty, ignoring this assignment\n");
643 ELOG(
"Assignments using window mode (floating/tiling) is not supported\n");
648 ELOG(
"Could not parse initial part of \"%s\" as a number.\n", workspace);
652 DLOG(
"New assignment, using above criteria, to workspace \"%s\".\n", workspace);
655 assignment->
type = is_number ? A_TO_WORKSPACE_NUMBER : A_TO_WORKSPACE;
662 ELOG(
"Match is empty, ignoring this assignment\n");
666 DLOG(
"New assignment, using above criteria, to ignore focus on manage.\n");
669 assignment->
type = A_NO_FOCUS;
673 CFGFUN(ipc_kill_timeout,
const long timeout_ms) {
688 CFGFUN(bar_separator_symbol,
const char *separator) {
694 current_bar->
mode = (strcmp(mode,
"dock") == 0 ? M_DOCK : (strcmp(mode,
"hide") == 0 ? M_HIDE : M_INVISIBLE));
697 CFGFUN(bar_hidden_state,
const char *hidden_state) {
720 CFGFUN(bar_modifier,
const char *modifiers) {
725 if (strncasecmp(button,
"button", strlen(
"button")) != 0) {
726 ELOG(
"Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
730 int input_code = atoi(button + strlen(
"button"));
731 if (input_code < 1) {
732 ELOG(
"Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
735 const bool release_bool = release != NULL;
740 ELOG(
"command for button %s was already specified, ignoring.\n", button);
746 new_binding->
release = release_bool;
753 ELOG(
"'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n",
command);
758 ELOG(
"'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n",
command);
766 CFGFUN(bar_position,
const char *position) {
770 CFGFUN(bar_i3bar_command,
const char *i3bar_command) {
775 CFGFUN(bar_color,
const char *colorclass,
const char *border,
const char *background,
const char *text) {
776 #define APPLY_COLORS(classname) \ 778 if (strcmp(colorclass, #classname) == 0) { \ 779 if (text != NULL) { \ 781 current_bar->colors.classname##_border = sstrdup(border); \ 782 current_bar->colors.classname##_bg = sstrdup(background); \ 783 current_bar->colors.classname##_text = sstrdup(text); \ 786 current_bar->colors.classname##_bg = sstrdup(background); \ 787 current_bar->colors.classname##_text = sstrdup(border); \ 801 CFGFUN(bar_socket_path,
const char *socket_path) {
806 CFGFUN(bar_tray_output,
const char *output) {
812 CFGFUN(bar_tray_padding,
const long padding_px) {
816 CFGFUN(bar_color_single,
const char *colorclass,
const char *color) {
817 if (strcmp(colorclass,
"background") == 0)
819 else if (strcmp(colorclass,
"separator") == 0)
821 else if (strcmp(colorclass,
"statusline") == 0)
823 else if (strcmp(colorclass,
"focused_background") == 0)
825 else if (strcmp(colorclass,
"focused_separator") == 0)
831 CFGFUN(bar_status_command,
const char *command) {
836 CFGFUN(bar_binding_mode_indicator,
const char *value) {
840 CFGFUN(bar_workspace_buttons,
const char *value) {
844 CFGFUN(bar_workspace_min_width,
const long width) {
848 CFGFUN(bar_strip_workspace_numbers,
const char *value) {
852 CFGFUN(bar_strip_workspace_name,
const char *value) {
865 DLOG(
"\t new bar configuration finished, saving.\n");
int32_t floating_minimum_width
static bool eval_boolstr(const char *str)
bool strip_workspace_name
Strip workspace name? Configuration option is 'strip_workspace_name yes'.
union Assignment::@19 dest
destination workspace/command/output, depending on the type
bool strip_workspace_numbers
Strip workspace numbers? Configuration option is 'strip_workspace_numbers yes'.
#define TAILQ_FOREACH(var, head, field)
char * command
The command which is to be executed for this button.
Holds a command specified by either an:
bool disable_randr15
Don’t use RandR 1.5 for querying outputs.
struct assignments_head assignments
enum Match::@16 window_mode
struct outputs_head outputs
struct autostarts_head autostarts
void set_font(i3Font *font)
Defines the font to be used for the forthcoming calls.
Stores which workspace (by name or number) goes to which output and its gaps config.
enum Config::@8 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
int32_t floating_minimum_height
uint32_t modifier
Bar modifier (to show bar when in hide mode).
struct barconfig_head barconfigs
uint32_t floating_modifier
The modifier which needs to be pressed in combination with your mouse buttons to do things with float...
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
#define SLIST_FOREACH(var, head, field)
struct Barconfig::bar_colors colors
char * i3bar_command
Command that should be run to execute i3bar, give a full path if i3bar is not in your $PATH.
int workspace_min_width
The minimal width for workspace buttons.
bool no_startup_id
no_startup_id flag for start_application().
char * separator_symbol
A custom separator to use instead of a vertical line.
int sasprintf(char **strp, const char *fmt,...)
Safe-wrapper around asprintf which exits if it returns -1 (meaning that there is no more memory avail...
struct bindings_head * bindings
uint32_t bar_height
Defines the height of the bar in pixels.
struct autostarts_always_head autostarts_always
const char * DEFAULT_BINDING_MODE
The name of the default mode.
char * focused_background
static void bar_configure_binding(const char *button, const char *release, const char *command)
void match_free(Match *match)
Frees the given match.
void match_copy(Match *dest, Match *src)
Copies the data of a match from src to dest.
bool release
If true, the command will be executed after the button is released.
int default_orientation
Default orientation for new containers.
bool force_xinerama
By default, use the RandR API for multi-monitor setups.
char * font
Font specification for all text rendered on the bar.
char * command
Command, like in command mode.
CFGFUN(criteria_init, int _state)
long ws_name_to_number(const char *name)
Parses the workspace name as a number.
border_style_t default_border
The default border style for new windows.
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
static int criteria_next_state
int num_outputs
Number of outputs in the outputs array.
struct ws_assignments_head ws_assignments
enum Assignment::@18 type
type of this assignment:
struct Config::config_client client[QUBE_NUM_LABELS]
enum Config::@7 title_align
Title alignment options.
char * status_command
Command that should be run to get a statusline, for example 'i3status'.
static char * font_pattern
enum Barconfig::@10 hidden_state
int32_t floating_maximum_width
Maximum and minimum dimensions of a floating window.
i3Font load_font(const char *pattern, const bool fallback)
Loads a font for usage, also getting its height.
void match_init(Match *match)
Initializes the Match data structure.
int input_code
The button to be used (e.g., 1 for "button1").
static char * current_mode
char ** outputs
Outputs on which this bar should show up on.
int default_floating_border_width
void ipc_set_kill_timeout(ev_tstamp new)
Set the maximum duration that we allow for a connection with an unwriteable socket.
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
enum Barconfig::@11 position
Bar position (bottom by default).
static bool current_mode_pango_markup
bool show_marks
Specifies whether or not marks should be displayed in the window decoration.
color_t draw_util_hex_to_color(const char *color)
Parses the given color in hex format to an internal color representation.
char * restart_state_path
char * id
Automatically generated ID for this bar config.
bool hide_binding_mode_indicator
Hide mode button? Configuration option is 'binding_mode_indicator no' but we invert the bool for the ...
border_style_t default_floating_border
The default border style for new floating windows.
i3_event_state_mask_t event_state_from_str(const char *str)
A utility function to convert a string containing the group and modifiers to the corresponding bit ma...
hide_edge_borders_mode_t hide_edge_borders
Remove borders if they are adjacent to the screen edge.
void * scalloc(size_t num, size_t size)
Safe-wrapper around calloc which exits if malloc returns NULL (meaning that there is no more memory a...
#define TAILQ_INSERT_TAIL(head, elm, field)
Holds the status bar configuration (i3bar).
int32_t floating_maximum_height
static Match current_match
Match match
the criteria to check if a window matches
bool match_is_empty(Match *match)
Check if a match is empty.
static void create_gaps_assignment(const char *workspace, const char *scope, gaps_t gaps)
void * srealloc(void *ptr, size_t size)
Safe-wrapper around realloc which exits if realloc returns NULL (meaning that there is no more memory...
qube_label_t
Qubes colors.
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
float workspace_urgency_timer
By default, urgency is cleared immediately when switching to another workspace leads to focusing the ...
warping_t mouse_warping
By default, when switching focus to a window on a different output (e.g.
The configuration file can contain multiple sets of bindings.
char * fake_outputs
Overwrites output detection (for testing), see src/fake_outputs.c.
focus_wrapping_t focus_wrapping
When focus wrapping is enabled (the default), attempting to move focus past the edge of the screen (i...
char * socket_path
Path to the i3 IPC socket.
Defines a mouse command to be executed instead of the default behavior when clicking on the non-statu...
smart_borders_t smart_borders
char * focused_statusline
int logical_px(const int logical)
Convert a logical amount of pixels (e.g.
bool hide_workspace_buttons
Hide workspace buttons? Configuration option is 'workspace_buttons no' but we invert the bool to get ...
Binding * configure_binding(const char *bindtype, const char *modifiers, const char *input_code, const char *release, const char *border, const char *whole_window, const char *exclude_titlebar, const char *command, const char *modename, bool pango_markup)
Adds a binding from config parameters given as strings and returns a pointer to the binding structure...
bool disable_focus_follows_mouse
By default, focus follows mouse.
void match_parse_property(Match *match, const char *ctype, const char *cvalue)
Interprets a ctype=cvalue pair and adds it to the given match specification.
bool verbose
Enable verbose mode? Useful for debugging purposes.
static char * current_workspace
static Barconfig * current_bar
enum Barconfig::@9 mode
Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mo...
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
uint32_t i3_event_state_mask_t
The lower 16 bits contain a xcb_key_but_mask_t, the higher 16 bits contain an i3_xkb_group_mask_t.
#define APPLY_COLORS(classname, label)