mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
swaybar: Implement workspace_buttons yes|no
This commit is contained in:
parent
2c12175672
commit
576181ec09
|
@ -79,6 +79,7 @@ char *separator_symbol = NULL;
|
||||||
char *mode = NULL;
|
char *mode = NULL;
|
||||||
bool binding_mode_indicator = true;
|
bool binding_mode_indicator = true;
|
||||||
bool strip_workspace_numbers = false;
|
bool strip_workspace_numbers = false;
|
||||||
|
bool workspace_buttons = true;
|
||||||
typedef enum {UNDEF, TEXT, I3BAR} command_protocol;
|
typedef enum {UNDEF, TEXT, I3BAR} command_protocol;
|
||||||
command_protocol protocol = UNDEF;
|
command_protocol protocol = UNDEF;
|
||||||
|
|
||||||
|
@ -292,7 +293,7 @@ void bar_ipc_init(int outputi, const char *bar_id) {
|
||||||
|
|
||||||
json_object *bar_config = json_tokener_parse(res);
|
json_object *bar_config = json_tokener_parse(res);
|
||||||
json_object *tray_output, *mode, *hidden_state, *position, *_status_command;
|
json_object *tray_output, *mode, *hidden_state, *position, *_status_command;
|
||||||
json_object *font, *bar_height, *workspace_buttons, *_strip_workspace_numbers;
|
json_object *font, *bar_height, *_workspace_buttons, *_strip_workspace_numbers;
|
||||||
json_object *_binding_mode_indicator, *verbose, *_colors, *sep_symbol;
|
json_object *_binding_mode_indicator, *verbose, *_colors, *sep_symbol;
|
||||||
json_object_object_get_ex(bar_config, "tray_output", &tray_output);
|
json_object_object_get_ex(bar_config, "tray_output", &tray_output);
|
||||||
json_object_object_get_ex(bar_config, "mode", &mode);
|
json_object_object_get_ex(bar_config, "mode", &mode);
|
||||||
|
@ -301,7 +302,7 @@ void bar_ipc_init(int outputi, const char *bar_id) {
|
||||||
json_object_object_get_ex(bar_config, "status_command", &_status_command);
|
json_object_object_get_ex(bar_config, "status_command", &_status_command);
|
||||||
json_object_object_get_ex(bar_config, "font", &font);
|
json_object_object_get_ex(bar_config, "font", &font);
|
||||||
json_object_object_get_ex(bar_config, "bar_height", &bar_height);
|
json_object_object_get_ex(bar_config, "bar_height", &bar_height);
|
||||||
json_object_object_get_ex(bar_config, "workspace_buttons", &workspace_buttons);
|
json_object_object_get_ex(bar_config, "workspace_buttons", &_workspace_buttons);
|
||||||
json_object_object_get_ex(bar_config, "strip_workspace_numbers", &_strip_workspace_numbers);
|
json_object_object_get_ex(bar_config, "strip_workspace_numbers", &_strip_workspace_numbers);
|
||||||
json_object_object_get_ex(bar_config, "binding_mode_indicator", &_binding_mode_indicator);
|
json_object_object_get_ex(bar_config, "binding_mode_indicator", &_binding_mode_indicator);
|
||||||
json_object_object_get_ex(bar_config, "verbose", &verbose);
|
json_object_object_get_ex(bar_config, "verbose", &verbose);
|
||||||
|
@ -334,6 +335,10 @@ void bar_ipc_init(int outputi, const char *bar_id) {
|
||||||
binding_mode_indicator = json_object_get_boolean(_binding_mode_indicator);
|
binding_mode_indicator = json_object_get_boolean(_binding_mode_indicator);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_workspace_buttons) {
|
||||||
|
workspace_buttons = json_object_get_boolean(_workspace_buttons);
|
||||||
|
}
|
||||||
|
|
||||||
if (bar_height) {
|
if (bar_height) {
|
||||||
int width, height;
|
int width, height;
|
||||||
get_text_size(window, &width, &height, "Test string for measuring purposes");
|
get_text_size(window, &width, &height, "Test string for measuring purposes");
|
||||||
|
@ -696,13 +701,16 @@ void render() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Workspaces
|
|
||||||
cairo_set_line_width(window->cairo, 1.0);
|
cairo_set_line_width(window->cairo, 1.0);
|
||||||
double x = 0.5;
|
double x = 0.5;
|
||||||
|
|
||||||
|
// Workspaces
|
||||||
|
if (workspace_buttons) {
|
||||||
for (i = 0; i < workspaces->length; ++i) {
|
for (i = 0; i < workspaces->length; ++i) {
|
||||||
struct workspace *ws = workspaces->items[i];
|
struct workspace *ws = workspaces->items[i];
|
||||||
render_workspace_button(ws, &x);
|
render_workspace_button(ws, &x);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// binding mode indicator
|
// binding mode indicator
|
||||||
if (mode && binding_mode_indicator) {
|
if (mode && binding_mode_indicator) {
|
||||||
|
|
Loading…
Reference in a new issue