mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
02bbefda20
This modifies `bar_cmd_tray_bindsym` to use `get_mouse_bindsym` for parsing mouse buttons. This also introduces `bar_cmd_tray_bindcode`, which will use `get_mouse_bindcode` for parsing mouse buttons. Like with sway bindings, the two commands are encapsulated in a single file to maximize shared code. This also modifies tray bindings to work off of events codes rather than x11 buttons, which allows for any mouse buttons to be used. For `get_bar_config`, `event_code` has been added to the `tray_bindings` section and will include to event code for the button. If the event code can be mapped to a x11 button, `input_code` will still be the x11 button number. Otherwise, `input_code` will be `0`.
137 lines
3.8 KiB
C
137 lines
3.8 KiB
C
#define _POSIX_C_SOURCE 200809L
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wlr/util/log.h>
|
|
#include "swaybar/config.h"
|
|
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
|
|
#include "config.h"
|
|
#include "stringop.h"
|
|
#include "list.h"
|
|
|
|
uint32_t parse_position(const char *position) {
|
|
uint32_t horiz = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
|
if (strcmp("top", position) == 0) {
|
|
return ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | horiz;
|
|
} else if (strcmp("bottom", position) == 0) {
|
|
return ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM | horiz;
|
|
} else {
|
|
wlr_log(WLR_ERROR, "Invalid position: %s, defaulting to bottom", position);
|
|
return ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM | horiz;
|
|
}
|
|
}
|
|
|
|
struct swaybar_config *init_config(void) {
|
|
struct swaybar_config *config = calloc(1, sizeof(struct swaybar_config));
|
|
config->status_command = NULL;
|
|
config->pango_markup = false;
|
|
config->position = parse_position("bottom");
|
|
config->font = strdup("monospace 10");
|
|
config->mode = strdup("dock");
|
|
config->hidden_state = strdup("hide");
|
|
config->sep_symbol = NULL;
|
|
config->strip_workspace_numbers = false;
|
|
config->strip_workspace_name = false;
|
|
config->binding_mode_indicator = true;
|
|
config->wrap_scroll = false;
|
|
config->workspace_buttons = true;
|
|
config->bindings = create_list();
|
|
wl_list_init(&config->outputs);
|
|
config->status_padding = 1;
|
|
config->status_edge_padding = 3;
|
|
|
|
/* height */
|
|
config->height = 0;
|
|
|
|
/* gaps */
|
|
config->gaps.top = 0;
|
|
config->gaps.right = 0;
|
|
config->gaps.bottom = 0;
|
|
config->gaps.left = 0;
|
|
|
|
/* colors */
|
|
config->colors.background = 0x000000FF;
|
|
config->colors.focused_background = 0x000000FF;
|
|
config->colors.statusline = 0xFFFFFFFF;
|
|
config->colors.focused_statusline = 0xFFFFFFFF;
|
|
config->colors.separator = 0x666666FF;
|
|
|
|
config->colors.focused_workspace.border = 0x4C7899FF;
|
|
config->colors.focused_workspace.background = 0x285577FF;
|
|
config->colors.focused_workspace.text = 0xFFFFFFFF;
|
|
|
|
config->colors.active_workspace.border = 0x333333FF;
|
|
config->colors.active_workspace.background = 0x5F676AFF;
|
|
config->colors.active_workspace.text = 0xFFFFFFFF;
|
|
|
|
config->colors.inactive_workspace.border = 0x333333FF;
|
|
config->colors.inactive_workspace.background = 0x222222FF;
|
|
config->colors.inactive_workspace.text = 0x888888FF;
|
|
|
|
config->colors.urgent_workspace.border = 0x2F343AFF;
|
|
config->colors.urgent_workspace.background = 0x900000FF;
|
|
config->colors.urgent_workspace.text = 0xFFFFFFFF;
|
|
|
|
config->colors.binding_mode.border = 0x2F343AFF;
|
|
config->colors.binding_mode.background = 0x900000FF;
|
|
config->colors.binding_mode.text = 0xFFFFFFFF;
|
|
|
|
#if HAVE_TRAY
|
|
config->tray_padding = 2;
|
|
wl_list_init(&config->tray_bindings);
|
|
#endif
|
|
|
|
return config;
|
|
}
|
|
|
|
static void free_binding(struct swaybar_binding *binding) {
|
|
if (!binding) {
|
|
return;
|
|
}
|
|
free(binding->command);
|
|
free(binding);
|
|
}
|
|
|
|
#if HAVE_TRAY
|
|
static void free_tray_binding(struct tray_binding *binding) {
|
|
if (!binding) {
|
|
return;
|
|
}
|
|
free(binding->command);
|
|
free(binding);
|
|
}
|
|
#endif
|
|
|
|
void free_config(struct swaybar_config *config) {
|
|
free(config->status_command);
|
|
free(config->font);
|
|
free(config->mode);
|
|
free(config->hidden_state);
|
|
free(config->sep_symbol);
|
|
free(config->modifier);
|
|
for (int i = 0; i < config->bindings->length; i++) {
|
|
struct swaybar_binding *binding = config->bindings->items[i];
|
|
free_binding(binding);
|
|
}
|
|
list_free(config->bindings);
|
|
struct config_output *coutput, *tmp;
|
|
wl_list_for_each_safe(coutput, tmp, &config->outputs, link) {
|
|
wl_list_remove(&coutput->link);
|
|
free(coutput->name);
|
|
free(coutput);
|
|
}
|
|
#if HAVE_TRAY
|
|
list_free_items_and_destroy(config->tray_outputs);
|
|
|
|
struct tray_binding *tray_bind = NULL, *tmp_tray_bind = NULL;
|
|
wl_list_for_each_safe(tray_bind, tmp_tray_bind, &config->tray_bindings,
|
|
link) {
|
|
wl_list_remove(&tray_bind->link);
|
|
free_tray_binding(tray_bind);
|
|
}
|
|
|
|
free(config->icon_theme);
|
|
#endif
|
|
free(config);
|
|
}
|