sway/include/swaybar/config.h

82 lines
1.6 KiB
C
Raw Normal View History

2016-01-23 01:47:44 +00:00
#ifndef _SWAYBAR_CONFIG_H
#define _SWAYBAR_CONFIG_H
#include <stdbool.h>
#include <stdint.h>
2018-03-29 03:56:02 +00:00
#include <wayland-client.h>
2018-12-09 15:10:41 +00:00
#include "../include/config.h"
2018-10-08 15:40:13 +00:00
#include "list.h"
#include "util.h"
2016-01-23 01:47:44 +00:00
struct box_colors {
uint32_t border;
uint32_t background;
uint32_t text;
};
2018-03-29 03:56:02 +00:00
struct config_output {
struct wl_list link; // swaybar_config::outputs
2018-03-29 03:56:02 +00:00
char *name;
2018-03-29 04:07:35 +00:00
size_t index;
2018-03-29 03:56:02 +00:00
};
2018-10-08 15:40:13 +00:00
struct swaybar_binding {
uint32_t button;
char *command;
bool release;
};
struct swaybar_config {
2016-01-23 01:47:44 +00:00
char *status_command;
2016-04-24 17:35:21 +00:00
bool pango_markup;
uint32_t position; // zwlr_layer_surface_v1_anchor
2016-01-23 01:47:44 +00:00
char *font;
char *sep_symbol;
char *mode;
char *hidden_state;
char *modifier;
2016-01-23 01:47:44 +00:00
bool strip_workspace_numbers;
2018-11-17 16:11:28 +00:00
bool strip_workspace_name;
2016-01-23 01:47:44 +00:00
bool binding_mode_indicator;
bool wrap_scroll;
2016-01-23 01:47:44 +00:00
bool workspace_buttons;
2018-10-08 15:40:13 +00:00
list_t *bindings;
2018-04-24 21:04:19 +00:00
struct wl_list outputs; // config_output::link
2018-03-30 04:30:38 +00:00
bool all_outputs;
2016-01-23 23:23:09 +00:00
int height;
struct {
int top;
int right;
int bottom;
int left;
} gaps;
2016-01-23 01:47:44 +00:00
struct {
uint32_t background;
uint32_t statusline;
uint32_t separator;
uint32_t focused_background;
uint32_t focused_statusline;
uint32_t focused_separator;
2016-01-23 01:47:44 +00: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-12-09 15:10:41 +00:00
#if HAVE_TRAY
char *icon_theme;
char *tray_bindings[10]; // mouse buttons 0-9
list_t *tray_outputs; // char *
int tray_padding;
#endif
2016-01-23 01:47:44 +00:00
};
struct swaybar_config *init_config(void);
void free_config(struct swaybar_config *config);
2018-03-29 03:56:02 +00:00
uint32_t parse_position(const char *position);
2016-01-23 01:47:44 +00:00
#endif