mirror of
https://github.com/swaywm/sway.git
synced 2025-10-29 05:40:18 -04:00
swaybar: Separate config
This commit is contained in:
parent
c8cf3f70f9
commit
bb986cb336
4 changed files with 257 additions and 171 deletions
96
swaybar/config.c
Normal file
96
swaybar/config.c
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "wayland-desktop-shell-client-protocol.h"
|
||||
#include "log.h"
|
||||
#include "config.h"
|
||||
|
||||
uint32_t parse_color(const char *color) {
|
||||
if (color[0] != '#') {
|
||||
sway_log(L_DEBUG, "Invalid color %s, defaulting to color 0xFFFFFFFF", color);
|
||||
return 0xFFFFFFFF;
|
||||
}
|
||||
char *end;
|
||||
uint32_t res = (uint32_t)strtol(color + 1, &end, 16);
|
||||
if (strlen(color) == 7) {
|
||||
res = (res << 8) | 0xFF;
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
uint32_t parse_position(const char *position) {
|
||||
if (strcmp("top", position) == 0) {
|
||||
return DESKTOP_SHELL_PANEL_POSITION_TOP;
|
||||
} else if (strcmp("bottom", position) == 0) {
|
||||
return DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
||||
} else if (strcmp("left", position) == 0) {
|
||||
return DESKTOP_SHELL_PANEL_POSITION_LEFT;
|
||||
} else if (strcmp("right", position) == 0) {
|
||||
return DESKTOP_SHELL_PANEL_POSITION_RIGHT;
|
||||
} else {
|
||||
return DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
||||
}
|
||||
}
|
||||
|
||||
char *parse_font(const char *font) {
|
||||
char *new_font = NULL;
|
||||
if (strncmp("pango:", font, 6) == 0) {
|
||||
new_font = strdup(font + 6);
|
||||
}
|
||||
|
||||
return new_font;
|
||||
}
|
||||
|
||||
struct swaybar_config *init_config() {
|
||||
struct swaybar_config *config = calloc(1, sizeof(struct swaybar_config));
|
||||
config->status_command = NULL;
|
||||
config->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
||||
config->font = NULL;
|
||||
config->mode = NULL;
|
||||
config->sep_symbol = NULL;
|
||||
config->strip_workspace_numbers = false;
|
||||
config->binding_mode_indicator = true;
|
||||
config->workspace_buttons = true;
|
||||
|
||||
/* layout */
|
||||
config->margin = 3;
|
||||
config->ws_horizontal_padding = 5;
|
||||
config->ws_vertical_padding = 1.5;
|
||||
config->ws_spacing = 1;
|
||||
config->text_height = 30;
|
||||
|
||||
/* colors */
|
||||
config->colors.background = 0x000000FF;
|
||||
config->colors.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;
|
||||
|
||||
return config;
|
||||
}
|
||||
|
||||
void free_config(struct swaybar_config *config) {
|
||||
free(config->status_command);
|
||||
free(config->font);
|
||||
free(config->mode);
|
||||
free(config->sep_symbol);
|
||||
free(config);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue