2012-01-14 16:02:30 +01:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-04 02:17:56 +02:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
2012-01-14 16:02:30 +01:00
|
|
|
*
|
|
|
|
* commands.c: all command functions (see commands_parser.c)
|
|
|
|
*
|
|
|
|
*/
|
2013-12-29 03:11:50 +01:00
|
|
|
#pragma once
|
2012-01-14 16:02:30 +01:00
|
|
|
|
2012-02-07 23:38:21 +01:00
|
|
|
#include "commands_parser.h"
|
|
|
|
|
|
|
|
/** The beginning of the prototype for every cmd_ function. */
|
2014-05-18 06:44:19 +02:00
|
|
|
#define I3_CMD Match *current_match, struct CommandResultIR *cmd_output
|
2012-02-07 23:38:21 +01:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Initializes the specified 'Match' data structure and the initial state of
|
|
|
|
* commands.c for matching target windows of a command.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_criteria_init(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A match specification just finished (the closing square bracket was found),
|
|
|
|
* so we filter the list of owindows.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_criteria_match_windows(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interprets a ctype=cvalue pair and adds it to the current match
|
|
|
|
* specification.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_criteria_add(I3_CMD, const char *ctype, const char *cvalue);
|
2012-01-14 16:02:30 +01:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] workspace
|
|
|
|
* next|prev|next_on_output|prev_on_output'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_con_to_workspace(I3_CMD, const char *which);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2012-09-04 10:51:18 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] workspace back_and_forth'.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void cmd_move_con_to_workspace_back_and_forth(I3_CMD);
|
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
2015-10-26 22:38:06 +01:00
|
|
|
* Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace <name>'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-10-26 22:38:06 +01:00
|
|
|
void cmd_move_con_to_workspace_name(I3_CMD, const char *name, const char *no_auto_back_and_forth);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2012-04-08 20:33:46 +02:00
|
|
|
/**
|
2015-10-26 22:38:06 +01:00
|
|
|
* Implementation of 'move [--no-auto-back-and-forth] [window|container] [to] workspace number <number>'.
|
2012-04-08 20:33:46 +02:00
|
|
|
*
|
|
|
|
*/
|
2015-10-26 22:38:06 +01:00
|
|
|
void cmd_move_con_to_workspace_number(I3_CMD, const char *which, const char *no_auto_back_and_forth);
|
2012-04-08 20:33:46 +02:00
|
|
|
|
2015-09-05 08:31:45 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'resize set <px> [px] <px> [px]'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 16:32:54 +02:00
|
|
|
void cmd_resize_set(I3_CMD, long cwidth, long cheight);
|
2015-09-05 08:31:45 +02:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'resize grow|shrink <direction> [<px> px] [or <ppt> ppt]'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_resize(I3_CMD, const char *way, const char *direction, long resize_px, long resize_ppt);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2015-06-09 23:13:40 +02:00
|
|
|
* Implementation of 'border normal|pixel [<n>]', 'border none|1pixel|toggle'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2016-02-09 21:03:44 +01:00
|
|
|
void cmd_border(I3_CMD, const char *border_style_str, long border_width);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'nop <comment>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_nop(I3_CMD, const char *comment);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'append_layout <path>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_append_layout(I3_CMD, const char *path);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'workspace next|prev|next_on_output|prev_on_output'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_workspace(I3_CMD, const char *which);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2012-04-08 19:17:46 +02:00
|
|
|
/**
|
2015-10-23 23:36:37 +02:00
|
|
|
* Implementation of 'workspace [--no-auto-back-and-forth] number <number>'
|
2012-04-08 19:17:46 +02:00
|
|
|
*
|
|
|
|
*/
|
2015-10-23 23:36:37 +02:00
|
|
|
void cmd_workspace_number(I3_CMD, const char *which, const char *no_auto_back_and_forth);
|
2012-04-08 19:17:46 +02:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'workspace back_and_forth'.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_workspace_back_and_forth(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2015-10-23 23:36:37 +02:00
|
|
|
* Implementation of 'workspace [--no-auto-back-and-forth] <name>'
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-10-23 23:36:37 +02:00
|
|
|
void cmd_workspace_name(I3_CMD, const char *name, const char *no_auto_back_and_forth);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2015-10-19 18:31:21 +02:00
|
|
|
* Implementation of 'mark [--add|--replace] [--toggle] <mark>'
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-10-19 18:31:21 +02:00
|
|
|
void cmd_mark(I3_CMD, const char *mark, const char *mode, const char *toggle);
|
2013-07-16 00:33:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'unmark [mark]'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_unmark(I3_CMD, const char *mark);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'mode <string>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_mode(I3_CMD, const char *mode);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] output <str>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_con_to_output(I3_CMD, const char *name);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2015-04-12 17:30:31 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] mark <str>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_con_to_mark(I3_CMD, const char *mark);
|
2015-04-12 17:30:31 +02:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'floating enable|disable|toggle'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_floating(I3_CMD, const char *floating_mode);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'move workspace to [output] <str>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_workspace_to_output(I3_CMD, const char *name);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2016-01-04 17:31:47 +01:00
|
|
|
* Implementation of 'split v|h|t|vertical|horizontal|toggle'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_split(I3_CMD, const char *direction);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2012-10-24 07:58:03 +02:00
|
|
|
* Implementation of 'kill [window|client]'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_kill(I3_CMD, const char *kill_mode_str);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'exec [--no-startup-id] <command>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_exec(I3_CMD, const char *nosn, const char *command);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'focus left|right|up|down'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_focus_direction(I3_CMD, const char *direction);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'focus tiling|floating|mode_toggle'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_focus_window_mode(I3_CMD, const char *window_mode);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'focus parent|child'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_focus_level(I3_CMD, const char *level);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'focus'.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_focus(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2014-10-26 19:33:09 +01:00
|
|
|
* Implementation of 'fullscreen [enable|disable|toggle] [global]'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_fullscreen(I3_CMD, const char *action, const char *fullscreen_mode);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2015-08-22 23:37:41 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'sticky enable|disable|toggle'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_sticky(I3_CMD, const char *action);
|
2015-08-22 23:37:41 +02:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'move <direction> [<pixels> [px]]'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_direction(I3_CMD, const char *direction, long move_px);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
Introduce splith/splitv layouts, remove orientation
With this commit, the "default" layout is replaced by the splith and
splitv layouts. splith is equivalent to default with orientation
horizontal and splitv is equivalent to default with orientation
vertical.
The "split h" and "split v" commands continue to work as before, they
split the current container and you will end up in a split container
with layout splith (after "split h") or splitv (after "split v").
To change a splith container into a splitv container, use either "layout
splitv" or "layout toggle split". The latter command is used in the
default config as mod+l (previously "layout default"). In case you have
"layout default" in your config file, it is recommended to just replace
it by "layout toggle split", which will work as "layout default" did
before when pressing it once, but toggle between horizontal/vertical
when pressing it repeatedly.
The rationale behind this commit is that it’s cleaner to have all
parameters that influence how windows are rendered in the layout itself
rather than having a special parameter in combination with only one
layout. This enables us to change existing split containers in all cases
without breaking existing features (see ticket #464). Also, users should
feel more confident about whether they are actually splitting or just
changing an existing split container now.
As a nice side-effect, this commit brings back the "layout toggle"
feature we once had in i3 version 3 (see the userguide).
AFAIK, it is safe to use in-place restart to upgrade into versions
after this commit (switching to an older version will break your layout,
though).
Fixes #464
2012-08-04 03:04:00 +02:00
|
|
|
* Implementation of 'layout default|stacked|stacking|tabbed|splitv|splith'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_layout(I3_CMD, const char *layout_str);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
Introduce splith/splitv layouts, remove orientation
With this commit, the "default" layout is replaced by the splith and
splitv layouts. splith is equivalent to default with orientation
horizontal and splitv is equivalent to default with orientation
vertical.
The "split h" and "split v" commands continue to work as before, they
split the current container and you will end up in a split container
with layout splith (after "split h") or splitv (after "split v").
To change a splith container into a splitv container, use either "layout
splitv" or "layout toggle split". The latter command is used in the
default config as mod+l (previously "layout default"). In case you have
"layout default" in your config file, it is recommended to just replace
it by "layout toggle split", which will work as "layout default" did
before when pressing it once, but toggle between horizontal/vertical
when pressing it repeatedly.
The rationale behind this commit is that it’s cleaner to have all
parameters that influence how windows are rendered in the layout itself
rather than having a special parameter in combination with only one
layout. This enables us to change existing split containers in all cases
without breaking existing features (see ticket #464). Also, users should
feel more confident about whether they are actually splitting or just
changing an existing split container now.
As a nice side-effect, this commit brings back the "layout toggle"
feature we once had in i3 version 3 (see the userguide).
AFAIK, it is safe to use in-place restart to upgrade into versions
after this commit (switching to an older version will break your layout,
though).
Fixes #464
2012-08-04 03:04:00 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'layout toggle [all|split]'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_layout_toggle(I3_CMD, const char *toggle_mode);
|
Introduce splith/splitv layouts, remove orientation
With this commit, the "default" layout is replaced by the splith and
splitv layouts. splith is equivalent to default with orientation
horizontal and splitv is equivalent to default with orientation
vertical.
The "split h" and "split v" commands continue to work as before, they
split the current container and you will end up in a split container
with layout splith (after "split h") or splitv (after "split v").
To change a splith container into a splitv container, use either "layout
splitv" or "layout toggle split". The latter command is used in the
default config as mod+l (previously "layout default"). In case you have
"layout default" in your config file, it is recommended to just replace
it by "layout toggle split", which will work as "layout default" did
before when pressing it once, but toggle between horizontal/vertical
when pressing it repeatedly.
The rationale behind this commit is that it’s cleaner to have all
parameters that influence how windows are rendered in the layout itself
rather than having a special parameter in combination with only one
layout. This enables us to change existing split containers in all cases
without breaking existing features (see ticket #464). Also, users should
feel more confident about whether they are actually splitting or just
changing an existing split container now.
As a nice side-effect, this commit brings back the "layout toggle"
feature we once had in i3 version 3 (see the userguide).
AFAIK, it is safe to use in-place restart to upgrade into versions
after this commit (switching to an older version will break your layout,
though).
Fixes #464
2012-08-04 03:04:00 +02:00
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
2012-10-24 07:58:03 +02:00
|
|
|
* Implementation of 'exit'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_exit(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2012-10-24 07:58:03 +02:00
|
|
|
* Implementation of 'reload'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_reload(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2012-10-24 07:58:03 +02:00
|
|
|
* Implementation of 'restart'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_restart(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
2012-10-24 07:58:03 +02:00
|
|
|
* Implementation of 'open'.
|
2012-01-27 23:32:40 +01:00
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_open(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'focus output <output>'.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_focus_output(I3_CMD, const char *name);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
2012-03-23 13:39:17 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] [absolute] position <px> [px] <px> [px]
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_window_to_position(I3_CMD, const char *method, long x, long y);
|
2012-03-23 13:39:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] [absolute] position center
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_move_window_to_center(I3_CMD, const char *method);
|
2012-03-23 13:39:17 +01:00
|
|
|
|
2015-05-03 00:19:26 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'move [window|container] [to] position mouse'
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void cmd_move_window_to_mouse(I3_CMD);
|
|
|
|
|
2012-01-27 23:32:40 +01:00
|
|
|
/**
|
|
|
|
* Implementation of 'move scratchpad'.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_move_scratchpad(I3_CMD);
|
2012-01-27 23:32:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of 'scratchpad show'.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-07 23:38:21 +01:00
|
|
|
void cmd_scratchpad_show(I3_CMD);
|
2012-01-14 16:02:30 +01:00
|
|
|
|
2015-06-10 18:59:45 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'title_format <format>'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_title_format(I3_CMD, const char *format);
|
2015-06-10 18:59:45 +02:00
|
|
|
|
2012-04-08 20:34:31 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'rename workspace <name> to <name>'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_rename_workspace(I3_CMD, const char *old_name, const char *new_name);
|
2012-04-08 20:34:31 +02:00
|
|
|
|
introduced i3 command for changing the hidden state and the mode of i3bar
The hidden_state and mode of each i3bar instance can now be controlled from within i3.
Therefore, two new i3 command were introduced:
_
bar hidden_state show|hide|toggle [<bar_id>]
show: always show the bar
hide: normal hide mode
toggle: toggle between show and hide (individually for each bar)
_
bar mode dock|hide|invisible|toggle [<bar_id>]
hide,dock: like before
invisible: always keep the bar hidden
toggle: toggle between dock and hide (individually for each bar)
This patch introduces a hidden_state ("hidden_state hide|show") in the
barconfig, which indicates the current hidden_state of each i3bar
instance. It only affects the bar when in hide mode. Additionally, a new
invisible mode was introduced. In order to change the hidden_state or
mode of the bar from i3, a barconfig-update event was introduced, for
which a bar can subscribe and the bar then gets notified about the
currently set hidden_state and mode in its barconfig.
For convenience, an id field ("id <bar_id>") was added to the barconfig, where one can
set the desired id for the corresponding bar. If the id is not specified, i3 will
deterministically choose an id; otherwise, with the previous random approach for finding
a new id, which is actually not shared with i3bar, as it would determine its id on
startup, the event-subscription would be destroyed on reload. Still, this issue remains
when manually changing the bar_id in the config and then reloading.
fixes #833, #651
2013-05-25 14:30:00 +02:00
|
|
|
/**
|
|
|
|
* Implementation of 'bar (hidden_state hide|show|toggle)|(mode dock|hide|invisible|toggle) [<bar_id>]'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_bar(I3_CMD, const char *bar_type, const char *bar_value, const char *bar_id);
|
introduced i3 command for changing the hidden state and the mode of i3bar
The hidden_state and mode of each i3bar instance can now be controlled from within i3.
Therefore, two new i3 command were introduced:
_
bar hidden_state show|hide|toggle [<bar_id>]
show: always show the bar
hide: normal hide mode
toggle: toggle between show and hide (individually for each bar)
_
bar mode dock|hide|invisible|toggle [<bar_id>]
hide,dock: like before
invisible: always keep the bar hidden
toggle: toggle between dock and hide (individually for each bar)
This patch introduces a hidden_state ("hidden_state hide|show") in the
barconfig, which indicates the current hidden_state of each i3bar
instance. It only affects the bar when in hide mode. Additionally, a new
invisible mode was introduced. In order to change the hidden_state or
mode of the bar from i3, a barconfig-update event was introduced, for
which a bar can subscribe and the bar then gets notified about the
currently set hidden_state and mode in its barconfig.
For convenience, an id field ("id <bar_id>") was added to the barconfig, where one can
set the desired id for the corresponding bar. If the id is not specified, i3 will
deterministically choose an id; otherwise, with the previous random approach for finding
a new id, which is actually not shared with i3bar, as it would determine its id on
startup, the event-subscription would be destroyed on reload. Still, this issue remains
when manually changing the bar_id in the config and then reloading.
fixes #833, #651
2013-05-25 14:30:00 +02:00
|
|
|
|
2013-06-05 15:04:57 +02:00
|
|
|
/*
|
|
|
|
* Implementation of 'shmlog <size>|toggle|on|off'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_shmlog(I3_CMD, const char *argument);
|
2013-06-05 15:04:57 +02:00
|
|
|
|
2013-06-05 15:06:53 +02:00
|
|
|
/*
|
|
|
|
* Implementation of 'debuglog toggle|on|off'
|
|
|
|
*
|
|
|
|
*/
|
2015-09-27 23:42:58 +02:00
|
|
|
void cmd_debuglog(I3_CMD, const char *argument);
|