2016-01-23 12:47:44 +11:00
|
|
|
#ifndef _SWAYBAR_CONFIG_H
|
|
|
|
#define _SWAYBAR_CONFIG_H
|
|
|
|
#include <stdbool.h>
|
2018-03-29 14:04:20 +11:00
|
|
|
#include <stdint.h>
|
2018-03-29 14:56:02 +11:00
|
|
|
#include <wayland-client.h>
|
2018-10-09 02:40:13 +11:00
|
|
|
#include "list.h"
|
2016-07-31 09:50:13 +10:00
|
|
|
#include "util.h"
|
2016-02-23 03:27:17 +11:00
|
|
|
|
2016-01-23 12:47:44 +11:00
|
|
|
struct box_colors {
|
|
|
|
uint32_t border;
|
|
|
|
uint32_t background;
|
|
|
|
uint32_t text;
|
|
|
|
};
|
|
|
|
|
2018-03-29 14:56:02 +11:00
|
|
|
struct config_output {
|
2018-10-07 05:02:12 +11:00
|
|
|
struct wl_list link; // swaybar_config::outputs
|
2018-03-29 14:56:02 +11:00
|
|
|
char *name;
|
2018-03-29 15:07:35 +11:00
|
|
|
size_t index;
|
2018-03-29 14:56:02 +11:00
|
|
|
};
|
|
|
|
|
2018-10-09 02:40:13 +11:00
|
|
|
struct swaybar_binding {
|
|
|
|
uint32_t button;
|
|
|
|
char *command;
|
|
|
|
bool release;
|
|
|
|
};
|
|
|
|
|
2018-03-29 14:04:20 +11:00
|
|
|
struct swaybar_config {
|
2016-01-23 12:47:44 +11:00
|
|
|
char *status_command;
|
2016-04-25 03:35:21 +10:00
|
|
|
bool pango_markup;
|
2018-03-29 14:04:20 +11:00
|
|
|
uint32_t position; // zwlr_layer_surface_v1_anchor
|
2016-01-23 12:47:44 +11:00
|
|
|
char *font;
|
|
|
|
char *sep_symbol;
|
|
|
|
char *mode;
|
2018-10-13 06:32:48 +11:00
|
|
|
char *hidden_state;
|
2018-10-13 07:14:52 +11:00
|
|
|
char *modifier;
|
2016-01-23 12:47:44 +11:00
|
|
|
bool strip_workspace_numbers;
|
2018-11-18 03:11:28 +11:00
|
|
|
bool strip_workspace_name;
|
2016-01-23 12:47:44 +11:00
|
|
|
bool binding_mode_indicator;
|
2016-07-18 01:26:38 +10:00
|
|
|
bool wrap_scroll;
|
2016-01-23 12:47:44 +11:00
|
|
|
bool workspace_buttons;
|
2018-10-09 02:40:13 +11:00
|
|
|
list_t *bindings;
|
2018-04-25 07:04:19 +10:00
|
|
|
struct wl_list outputs; // config_output::link
|
2018-03-30 15:30:38 +11:00
|
|
|
bool all_outputs;
|
2016-01-24 10:23:09 +11:00
|
|
|
int height;
|
2016-01-23 12:47:44 +11:00
|
|
|
|
|
|
|
struct {
|
|
|
|
uint32_t background;
|
|
|
|
uint32_t statusline;
|
|
|
|
uint32_t separator;
|
|
|
|
|
2016-11-03 04:48:43 +11:00
|
|
|
uint32_t focused_background;
|
|
|
|
uint32_t focused_statusline;
|
|
|
|
uint32_t focused_separator;
|
|
|
|
|
2016-01-23 12:47:44 +11:00
|
|
|
struct box_colors focused_workspace;
|
|
|
|
struct box_colors active_workspace;
|
|
|
|
struct box_colors inactive_workspace;
|
|
|
|
struct box_colors urgent_workspace;
|
|
|
|
struct box_colors binding_mode;
|
|
|
|
} colors;
|
|
|
|
};
|
|
|
|
|
2018-09-30 20:58:49 +10:00
|
|
|
struct swaybar_config *init_config(void);
|
2018-03-29 14:04:20 +11:00
|
|
|
void free_config(struct swaybar_config *config);
|
2018-03-29 14:56:02 +11:00
|
|
|
uint32_t parse_position(const char *position);
|
2016-01-23 12:47:44 +11:00
|
|
|
|
2018-03-29 14:04:20 +11:00
|
|
|
#endif
|