2 #define I3__FILE__ "config_directives.c"
31 DLOG(
"Initializing criteria, current_match = %p, state = %d\n",
current_match, _state);
45 CFGFUN(criteria_add,
const char *ctype,
const char *cvalue) {
54 return (strcasecmp(str,
"1") == 0 ||
55 strcasecmp(str,
"yes") == 0 ||
56 strcasecmp(str,
"true") == 0 ||
57 strcasecmp(str,
"on") == 0 ||
58 strcasecmp(str,
"enable") == 0 ||
59 strcasecmp(str,
"active") == 0);
72 if (strstr(str,
"Mod1") != NULL)
73 result |= XCB_KEY_BUT_MASK_MOD_1;
74 if (strstr(str,
"Mod2") != NULL)
75 result |= XCB_KEY_BUT_MASK_MOD_2;
76 if (strstr(str,
"Mod3") != NULL)
77 result |= XCB_KEY_BUT_MASK_MOD_3;
78 if (strstr(str,
"Mod4") != NULL)
79 result |= XCB_KEY_BUT_MASK_MOD_4;
80 if (strstr(str,
"Mod5") != NULL)
81 result |= XCB_KEY_BUT_MASK_MOD_5;
82 if (strstr(str,
"Control") != NULL ||
83 strstr(str,
"Ctrl") != NULL)
84 result |= XCB_KEY_BUT_MASK_CONTROL;
85 if (strstr(str,
"Shift") != NULL)
86 result |= XCB_KEY_BUT_MASK_SHIFT;
88 if (strstr(str,
"Group1") != NULL)
90 if (strstr(str,
"Group2") != NULL ||
91 strstr(str,
"Mode_switch") != NULL)
93 if (strstr(str,
"Group3") != NULL)
95 if (strstr(str,
"Group4") != NULL)
111 CFGFUN(binding,
const char *bindtype,
const char *modifiers,
const char *key,
const char *release,
const char *border,
const char *whole_window,
const char *command) {
122 CFGFUN(mode_binding,
const char *bindtype,
const char *modifiers,
const char *key,
const char *release,
const char *border,
const char *whole_window,
const char *command) {
131 DLOG(
"\t now in mode %s\n", modename);
137 CFGFUN(exec,
const char *exectype,
const char *no_startup_id,
const char *command) {
139 new->command =
sstrdup(command);
140 new->no_startup_id = (no_startup_id != NULL);
141 if (strcmp(exectype,
"exec") == 0) {
150 ELOG(
"Match is empty, ignoring this for_window statement\n");
153 DLOG(
"\t should execute command %s for the criteria mentioned above\n", command);
155 assignment->
type = A_COMMAND;
171 CFGFUN(floating_modifier,
const char *modifiers) {
175 CFGFUN(default_orientation,
const char *orientation) {
176 if (strcmp(orientation,
"horizontal") == 0)
178 else if (strcmp(orientation,
"vertical") == 0)
184 CFGFUN(workspace_layout,
const char *layout) {
185 if (strcmp(layout,
"default") == 0)
187 else if (strcmp(layout,
"stacking") == 0 ||
188 strcmp(layout,
"stacked") == 0)
194 CFGFUN(new_window,
const char *windowtype,
const char *border,
const long width) {
198 if (strcmp(border,
"1pixel") == 0) {
201 }
else if (strcmp(border,
"none") == 0) {
204 }
else if (strcmp(border,
"pixel") == 0) {
206 border_width =
width;
209 border_width =
width;
212 if (strcmp(windowtype,
"new_window") == 0) {
213 DLOG(
"default tiled border style = %d and border width = %d (%d physical px)\n",
214 border_style, border_width,
logical_px(border_width));
218 DLOG(
"default floating border style = %d and border width = %d (%d physical px)\n",
219 border_style, border_width,
logical_px(border_width));
225 CFGFUN(hide_edge_borders,
const char *borders) {
226 if (strcmp(borders,
"vertical") == 0)
228 else if (strcmp(borders,
"horizontal") == 0)
230 else if (strcmp(borders,
"both") == 0)
232 else if (strcmp(borders,
"none") == 0)
240 CFGFUN(focus_follows_mouse,
const char *value) {
244 CFGFUN(mouse_warping,
const char *value) {
245 if (strcmp(value,
"none") == 0)
247 else if (strcmp(value,
"output") == 0)
251 CFGFUN(force_xinerama,
const char *value) {
255 CFGFUN(force_focus_wrapping,
const char *value) {
268 CFGFUN(force_display_urgency_hint,
const long duration_ms) {
272 CFGFUN(focus_on_window_activation,
const char *mode) {
273 if (strcmp(mode,
"smart") == 0)
275 else if (strcmp(mode,
"urgent") == 0)
277 else if (strcmp(mode,
"focus") == 0)
279 else if (strcmp(mode,
"none") == 0)
282 ELOG(
"Unknown focus_on_window_activation mode \"%s\", ignoring it.\n", mode);
293 CFGFUN(workspace,
const char *workspace,
const char *output) {
294 DLOG(
"Assigning workspace \"%s\" to output \"%s\"\n", workspace, output);
299 bool duplicate =
false;
301 if (strcasecmp(assignment->
name, workspace) == 0) {
302 ELOG(
"You have a duplicate workspace assignment for workspace \"%s\"\n",
321 CFGFUN(restart_state,
const char *path) {
326 CFGFUN(popup_during_fullscreen,
const char *value) {
327 if (strcmp(value,
"ignore") == 0) {
329 }
else if (strcmp(value,
"leave_fullscreen") == 0) {
336 CFGFUN(color_single,
const char *colorclass,
const char *color) {
341 CFGFUN(color,
const char *colorclass,
const char *border,
const char *background,
const char *text,
const char *indicator,
const char *child_border) {
342 #define APPLY_COLORS(classname) \
344 if (strcmp(colorclass, "client." #classname) == 0) { \
345 config.client.classname.border = draw_util_hex_to_color(border); \
346 config.client.classname.background = draw_util_hex_to_color(background); \
347 config.client.classname.text = draw_util_hex_to_color(text); \
348 if (indicator != NULL) { \
349 config.client.classname.indicator = draw_util_hex_to_color(indicator); \
351 if (child_border != NULL) { \
352 config.client.classname.child_border = draw_util_hex_to_color(child_border); \
354 config.client.classname.child_border = config.client.classname.background; \
370 ELOG(
"Match is empty, ignoring this assignment\n");
373 DLOG(
"New assignment, using above criteria, to workspace \"%s\".\n", workspace);
376 assignment->
type = A_TO_WORKSPACE;
383 ELOG(
"Match is empty, ignoring this assignment\n");
387 DLOG(
"New assignment, using above criteria, to ignore focus on manage.\n");
390 assignment->
type = A_NO_FOCUS;
405 CFGFUN(bar_separator_symbol,
const char *separator) {
411 current_bar->
mode = (strcmp(mode,
"dock") == 0 ? M_DOCK : (strcmp(mode,
"hide") == 0 ? M_HIDE : M_INVISIBLE));
414 CFGFUN(bar_hidden_state,
const char *hidden_state) {
415 current_bar->
hidden_state = (strcmp(hidden_state,
"hide") == 0 ? S_HIDE : S_SHOW);
433 CFGFUN(bar_modifier,
const char *modifier) {
434 if (strcmp(modifier,
"Mod1") == 0)
436 else if (strcmp(modifier,
"Mod2") == 0)
438 else if (strcmp(modifier,
"Mod3") == 0)
440 else if (strcmp(modifier,
"Mod4") == 0)
442 else if (strcmp(modifier,
"Mod5") == 0)
444 else if (strcmp(modifier,
"Control") == 0 ||
445 strcmp(modifier,
"Ctrl") == 0)
447 else if (strcmp(modifier,
"Shift") == 0)
449 else if (strcmp(modifier,
"none") == 0 ||
450 strcmp(modifier,
"off") == 0)
455 if (strncasecmp(button,
"button", strlen(
"button")) != 0) {
456 ELOG(
"Bindings for a bar can only be mouse bindings, not \"%s\", ignoring.\n", button);
460 int input_code = atoi(button + strlen(
"button"));
461 if (input_code < 1) {
462 ELOG(
"Button \"%s\" does not seem to be in format 'buttonX'.\n", button);
469 ELOG(
"command for button %s was already specified, ignoring.\n", button);
481 ELOG(
"'wheel_up_cmd' is deprecated. Please us 'bindsym button4 %s' instead.\n", command);
486 ELOG(
"'wheel_down_cmd' is deprecated. Please us 'bindsym button5 %s' instead.\n", command);
494 CFGFUN(bar_position,
const char *position) {
495 current_bar->
position = (strcmp(position,
"top") == 0 ? P_TOP : P_BOTTOM);
498 CFGFUN(bar_i3bar_command,
const char *i3bar_command) {
503 CFGFUN(bar_color,
const char *colorclass,
const char *border,
const char *background,
const char *text) {
504 #define APPLY_COLORS(classname) \
506 if (strcmp(colorclass, #classname) == 0) { \
507 if (text != NULL) { \
509 current_bar->colors.classname##_border = sstrdup(border); \
510 current_bar->colors.classname##_bg = sstrdup(background); \
511 current_bar->colors.classname##_text = sstrdup(text); \
514 current_bar->colors.classname##_bg = sstrdup(background); \
515 current_bar->colors.classname##_text = sstrdup(border); \
529 CFGFUN(bar_socket_path,
const char *socket_path) {
534 CFGFUN(bar_tray_output,
const char *output) {
540 CFGFUN(bar_tray_padding,
const long padding_px) {
544 CFGFUN(bar_color_single,
const char *colorclass,
const char *color) {
545 if (strcmp(colorclass,
"background") == 0)
547 else if (strcmp(colorclass,
"separator") == 0)
549 else if (strcmp(colorclass,
"statusline") == 0)
551 else if (strcmp(colorclass,
"focused_background") == 0)
553 else if (strcmp(colorclass,
"focused_separator") == 0)
559 CFGFUN(bar_status_command,
const char *command) {
564 CFGFUN(bar_binding_mode_indicator,
const char *value) {
568 CFGFUN(bar_workspace_buttons,
const char *value) {
572 CFGFUN(bar_strip_workspace_numbers,
const char *value) {
585 DLOG(
"\t new bar configuration finished, saving.\n");
587 if (current_bar->
id == NULL)
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 *command, const char *modename, bool pango_markup)
Adds a binding from config parameters given as strings and returns a pointer to the binding structure...
char * status_command
Command that should be run to get a statusline, for example 'i3status'.
union Assignment::@19 dest
destination workspace/command, depending on the type
enum Barconfig::@10 modifier
Bar modifier (to show bar when in hide mode).
bool match_is_empty(Match *match)
Check if a match is empty.
char * focused_statusline
char * command
The command which is to be executed for this button.
struct Config::config_client client
bool workspace_auto_back_and_forth
Automatic workspace back and forth switching.
void * smalloc(size_t size)
Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there is no more memory a...
char ** outputs
Outputs on which this bar should show up on.
An Assignment makes specific windows go to a specific workspace/output or run a command for that wind...
char * focused_background
char * socket_path
Path to the i3 IPC socket.
enum Barconfig::@8 mode
Bar display mode (hide unless modifier is pressed or show in dock mode or always hide in invisible mo...
struct bindings_head * bindings
enum Assignment::@18 type
type of this assignment:
struct autostarts_always_head autostarts_always
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.
#define APPLY_COLORS(classname)
void match_init(Match *match)
Stores which workspace (by name or number) goes to which output.
#define TAILQ_FOREACH(var, head, field)
enum Barconfig::@9 hidden_state
void match_free(Match *match)
Frees the given match.
struct barconfig_head barconfigs
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...
int default_floating_border_width
int32_t floating_minimum_width
bool disable_focus_follows_mouse
By default, focus follows mouse.
int32_t floating_maximum_height
bool strip_workspace_numbers
Strip workspace numbers? Configuration option is 'strip_workspace_numbers yes'.
void set_font(i3Font *font)
Defines the font to be used for the forthcoming calls.
enum Config::@6 focus_on_window_activation
Behavior when a window sends a NET_ACTIVE_WINDOW message.
char * fake_outputs
Overwrites output detection (for testing), see src/fake_outputs.c.
color_t draw_util_hex_to_color(const char *color)
Parses the given color in hex format to an internal color representation.
int32_t floating_maximum_width
Maximum and minimum dimensions of a floating window.
bool hide_binding_mode_indicator
Hide mode button? Configuration option is 'binding_mode_indicator no' but we invert the bool for the ...
adjacent_t hide_edge_borders
Remove borders if they are adjacent to the screen edge.
struct assignments_head assignments
float workspace_urgency_timer
By default, urgency is cleared immediately when switching to another workspace leads to focusing the ...
bool hide_workspace_buttons
Hide workspace buttons? Configuration option is 'workspace_buttons no' but we invert the bool to get ...
struct ws_assignments_head ws_assignments
enum Config::@7 popup_during_fullscreen
What should happen when a new popup is opened during fullscreen mode.
bool verbose
Enable verbose mode? Useful for debugging purposes.
bool show_marks
Specifies whether or not marks should be displayed in the window decoration.
int default_orientation
Default orientation for new containers.
Holds the status bar configuration (i3bar).
static Match current_match
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.
static char * font_pattern
bool force_xinerama
By default, use the RandR API for multi-monitor setups.
void match_copy(Match *dest, Match *src)
Copies the data of a match from src to dest.
int input_code
The button to be used (e.g., 1 for "button1").
void * srealloc(void *ptr, size_t size)
Safe-wrapper around realloc which exits if realloc returns NULL (meaning that there is no more memory...
i3Font load_font(const char *pattern, const bool fallback)
Loads a font for usage, also getting its height.
int32_t floating_minimum_height
static bool current_mode_pango_markup
uint32_t floating_modifier
The modifier which needs to be pressed in combination with your mouse buttons to do things with float...
struct outputs_head outputs
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...
warping_t mouse_warping
By default, when switching focus to a window on a different output (e.g.
struct autostarts_head autostarts
int logical_px(const int logical)
Convert a logical amount of pixels (e.g.
char * sstrdup(const char *str)
Safe-wrapper around strdup which exits if malloc returns NULL (meaning that there is no more memory a...
#define TAILQ_INSERT_TAIL(head, elm, field)
char * font
Font specification for all text rendered on the bar.
static Barconfig * current_bar
char * command
Command, like in command mode.
static char * current_mode
void workspace_back_and_forth(void)
Focuses the previously focused workspace.
bool force_focus_wrapping
Think of the following layout: Horizontal workspace with a tabbed con on the left of the screen and a...
const char * DEFAULT_BINDING_MODE
The name of the default mode.
int num_outputs
Number of outputs in the outputs array.
Match match
the criteria to check if a window matches
static int criteria_next_state
border_style_t default_border
The default border style for new windows.
static bool eval_boolstr(const char *str)
Defines a mouse command to be executed instead of the default behavior when clicking on the non-statu...
enum Barconfig::@11 position
Bar position (bottom by default).
struct Barconfig::bar_colors colors
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...
Holds a command specified by either an:
char * i3bar_command
Command that should be run to execute i3bar, give a full path if i3bar is not in your $PATH...
char * separator_symbol
A custom separator to use instead of a vertical line.
border_style_t default_floating_border
The default border style for new floating windows.
char * id
Automatically generated ID for this bar config.
char * restart_state_path
static void bar_configure_binding(const char *button, const char *command)