2015-08-05 01:30:40 +00:00
|
|
|
#include <stdio.h>
|
2015-08-05 21:30:40 +00:00
|
|
|
#include <stdbool.h>
|
2015-08-05 01:30:40 +00:00
|
|
|
#include <stdlib.h>
|
2015-08-16 00:51:23 +00:00
|
|
|
#include <unistd.h>
|
2015-11-28 15:00:53 +00:00
|
|
|
#include <wordexp.h>
|
2015-12-18 16:43:03 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <signal.h>
|
2015-11-29 22:02:09 +00:00
|
|
|
#include "wayland-desktop-shell-server-protocol.h"
|
2015-08-05 01:30:40 +00:00
|
|
|
#include "readline.h"
|
|
|
|
#include "stringop.h"
|
|
|
|
#include "list.h"
|
2015-08-08 23:24:18 +00:00
|
|
|
#include "log.h"
|
2015-08-05 21:30:40 +00:00
|
|
|
#include "commands.h"
|
2015-08-05 01:30:40 +00:00
|
|
|
#include "config.h"
|
2015-08-19 02:05:58 +00:00
|
|
|
#include "layout.h"
|
2015-08-20 21:14:26 +00:00
|
|
|
#include "input_state.h"
|
2015-11-17 18:27:01 +00:00
|
|
|
#include "criteria.h"
|
2015-08-05 01:30:40 +00:00
|
|
|
|
2015-09-07 06:22:02 +00:00
|
|
|
struct sway_config *config = NULL;
|
2015-08-11 00:50:22 +00:00
|
|
|
|
2015-09-07 13:52:27 +00:00
|
|
|
static void free_variable(struct sway_variable *var) {
|
|
|
|
free(var->name);
|
|
|
|
free(var->value);
|
|
|
|
free(var);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_binding(struct sway_binding *bind) {
|
|
|
|
free_flat_list(bind->keys);
|
|
|
|
free(bind->command);
|
|
|
|
free(bind);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_mode(struct sway_mode *mode) {
|
|
|
|
free(mode->name);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < mode->bindings->length; ++i) {
|
|
|
|
free_binding(mode->bindings->items[i]);
|
|
|
|
}
|
|
|
|
list_free(mode->bindings);
|
|
|
|
free(mode);
|
|
|
|
}
|
|
|
|
|
2015-12-14 01:39:24 +00:00
|
|
|
static void free_bar(struct bar_config *bar) {
|
|
|
|
free(bar->mode);
|
|
|
|
free(bar->hidden_state);
|
|
|
|
free(bar->status_command);
|
|
|
|
free(bar->font);
|
2015-12-16 11:58:45 +00:00
|
|
|
free(bar->separator_symbol);
|
2015-12-15 00:47:10 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < bar->bindings->length; ++i) {
|
|
|
|
free_sway_mouse_binding(bar->bindings->items[i]);
|
|
|
|
}
|
2015-12-15 21:16:54 +00:00
|
|
|
list_free(bar->bindings);
|
2015-12-15 20:55:20 +00:00
|
|
|
|
2015-12-16 12:06:54 +00:00
|
|
|
free_flat_list(bar->outputs);
|
2015-12-14 01:39:24 +00:00
|
|
|
free(bar);
|
|
|
|
}
|
|
|
|
|
2015-11-16 10:40:24 +00:00
|
|
|
void free_output_config(struct output_config *oc) {
|
2015-09-07 13:52:27 +00:00
|
|
|
free(oc->name);
|
|
|
|
free(oc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_workspace_output(struct workspace_output *wo) {
|
|
|
|
free(wo->output);
|
|
|
|
free(wo->workspace);
|
|
|
|
free(wo);
|
|
|
|
}
|
|
|
|
|
2015-09-07 21:29:40 +00:00
|
|
|
static void free_config(struct sway_config *config) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->symbols->length; ++i) {
|
|
|
|
free_variable(config->symbols->items[i]);
|
|
|
|
}
|
|
|
|
list_free(config->symbols);
|
|
|
|
|
|
|
|
for (i = 0; i < config->modes->length; ++i) {
|
|
|
|
free_mode(config->modes->items[i]);
|
|
|
|
}
|
|
|
|
list_free(config->modes);
|
|
|
|
|
2015-12-14 01:39:24 +00:00
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
free_bar(config->bars->items[i]);
|
|
|
|
}
|
|
|
|
list_free(config->bars);
|
|
|
|
|
2015-09-07 21:29:40 +00:00
|
|
|
free_flat_list(config->cmd_queue);
|
|
|
|
|
|
|
|
for (i = 0; i < config->workspace_outputs->length; ++i) {
|
|
|
|
free_workspace_output(config->workspace_outputs->items[i]);
|
|
|
|
}
|
|
|
|
list_free(config->workspace_outputs);
|
|
|
|
|
2015-11-17 18:27:01 +00:00
|
|
|
for (i = 0; i < config->criteria->length; ++i) {
|
|
|
|
free_criteria(config->criteria->items[i]);
|
|
|
|
}
|
|
|
|
list_free(config->criteria);
|
|
|
|
|
2015-09-07 21:29:40 +00:00
|
|
|
for (i = 0; i < config->output_configs->length; ++i) {
|
2015-09-08 12:37:20 +00:00
|
|
|
free_output_config(config->output_configs->items[i]);
|
2015-09-07 21:29:40 +00:00
|
|
|
}
|
|
|
|
list_free(config->output_configs);
|
|
|
|
free(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 05:48:43 +00:00
|
|
|
static bool file_exists(const char *path) {
|
2015-08-16 00:51:23 +00:00
|
|
|
return access(path, R_OK) != -1;
|
|
|
|
}
|
|
|
|
|
2015-09-07 05:48:43 +00:00
|
|
|
static void config_defaults(struct sway_config *config) {
|
2015-08-19 11:50:27 +00:00
|
|
|
config->symbols = create_list();
|
|
|
|
config->modes = create_list();
|
2015-12-14 01:39:24 +00:00
|
|
|
config->bars = create_list();
|
2015-08-19 11:50:27 +00:00
|
|
|
config->workspace_outputs = create_list();
|
2015-11-17 18:27:01 +00:00
|
|
|
config->criteria = create_list();
|
2015-08-22 15:18:55 +00:00
|
|
|
config->output_configs = create_list();
|
2015-09-07 05:48:43 +00:00
|
|
|
|
|
|
|
config->cmd_queue = create_list();
|
|
|
|
|
2015-08-19 11:50:27 +00:00
|
|
|
config->current_mode = malloc(sizeof(struct sway_mode));
|
2015-09-07 21:29:40 +00:00
|
|
|
config->current_mode->name = malloc(sizeof("default"));
|
|
|
|
strcpy(config->current_mode->name, "default");
|
2015-08-19 11:50:27 +00:00
|
|
|
config->current_mode->bindings = create_list();
|
|
|
|
list_add(config->modes, config->current_mode);
|
2015-09-07 05:48:43 +00:00
|
|
|
|
2015-08-28 21:45:40 +00:00
|
|
|
config->floating_mod = 0;
|
2015-12-11 10:39:24 +00:00
|
|
|
config->dragging_key = M_LEFT_CLICK;
|
|
|
|
config->resizing_key = M_RIGHT_CLICK;
|
2015-08-28 02:52:59 +00:00
|
|
|
config->default_layout = L_NONE;
|
|
|
|
config->default_orientation = L_NONE;
|
2015-08-19 11:50:27 +00:00
|
|
|
// Flags
|
|
|
|
config->focus_follows_mouse = true;
|
|
|
|
config->mouse_warping = true;
|
|
|
|
config->reloading = false;
|
|
|
|
config->active = false;
|
|
|
|
config->failed = false;
|
2015-08-31 02:34:10 +00:00
|
|
|
config->auto_back_and_forth = false;
|
2015-10-21 23:34:32 +00:00
|
|
|
config->seamless_mouse = true;
|
2015-09-10 18:07:40 +00:00
|
|
|
config->reading = false;
|
2015-08-28 21:45:40 +00:00
|
|
|
|
2015-11-12 13:02:39 +00:00
|
|
|
config->edge_gaps = true;
|
2015-08-19 11:50:27 +00:00
|
|
|
config->gaps_inner = 0;
|
|
|
|
config->gaps_outer = 0;
|
|
|
|
}
|
2015-08-16 00:51:23 +00:00
|
|
|
|
2015-09-07 05:48:43 +00:00
|
|
|
static char *get_config_path(void) {
|
2015-11-28 15:00:53 +00:00
|
|
|
static const char *config_paths[] = {
|
|
|
|
"$HOME/.sway/config",
|
|
|
|
"$XDG_CONFIG_HOME/sway/config",
|
|
|
|
"$HOME/.i3/config",
|
|
|
|
"$XDG_CONFIG_HOME/i3/config",
|
2015-12-14 15:38:49 +00:00
|
|
|
FALLBACK_CONFIG_DIR "/config",
|
2015-11-28 15:00:53 +00:00
|
|
|
"/etc/i3/config",
|
2015-09-07 05:48:43 +00:00
|
|
|
};
|
2015-11-28 15:00:53 +00:00
|
|
|
|
|
|
|
if (!getenv("XDG_CONFIG_HOME")) {
|
|
|
|
char *home = getenv("HOME");
|
2015-12-11 19:22:28 +00:00
|
|
|
char *config_home = malloc(strlen(home) + strlen("/.config") + 1);
|
2015-11-28 15:00:53 +00:00
|
|
|
strcpy(config_home, home);
|
|
|
|
strcat(config_home, "/.config");
|
|
|
|
setenv("XDG_CONFIG_HOME", config_home, 1);
|
|
|
|
sway_log(L_DEBUG, "Set XDG_CONFIG_HOME to %s", config_home);
|
2015-08-16 01:03:33 +00:00
|
|
|
}
|
|
|
|
|
2015-11-28 15:00:53 +00:00
|
|
|
wordexp_t p;
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < (int)(sizeof(config_paths) / sizeof(char *)); ++i) {
|
|
|
|
if (wordexp(config_paths[i], &p, 0) == 0) {
|
|
|
|
path = p.we_wordv[0];
|
|
|
|
if (file_exists(path)) {
|
|
|
|
return path;
|
2015-08-16 01:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 15:00:53 +00:00
|
|
|
return NULL; // Not reached
|
2015-08-16 00:51:23 +00:00
|
|
|
}
|
|
|
|
|
2015-08-20 12:37:09 +00:00
|
|
|
bool load_config(const char *file) {
|
2015-08-20 21:14:26 +00:00
|
|
|
input_init();
|
|
|
|
|
2015-08-20 12:37:09 +00:00
|
|
|
char *path;
|
|
|
|
if (file != NULL) {
|
|
|
|
path = strdup(file);
|
|
|
|
} else {
|
|
|
|
path = get_config_path();
|
|
|
|
}
|
2015-08-16 00:51:23 +00:00
|
|
|
|
2015-11-28 15:00:53 +00:00
|
|
|
sway_log(L_INFO, "Loading config from %s", path);
|
|
|
|
|
2015-08-16 00:51:23 +00:00
|
|
|
if (path == NULL) {
|
|
|
|
sway_log(L_ERROR, "Unable to find a config file!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *f = fopen(path, "r");
|
2015-08-10 19:22:22 +00:00
|
|
|
if (!f) {
|
2015-08-16 00:51:23 +00:00
|
|
|
fprintf(stderr, "Unable to open %s for reading", path);
|
|
|
|
free(path);
|
2015-08-10 19:22:22 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-08-16 00:51:23 +00:00
|
|
|
free(path);
|
2015-08-13 19:41:29 +00:00
|
|
|
|
|
|
|
bool config_load_success;
|
|
|
|
if (config) {
|
|
|
|
config_load_success = read_config(f, true);
|
|
|
|
} else {
|
|
|
|
config_load_success = read_config(f, false);
|
|
|
|
}
|
2015-08-10 19:22:22 +00:00
|
|
|
fclose(f);
|
2015-08-13 19:41:29 +00:00
|
|
|
|
|
|
|
return config_load_success;
|
2015-08-10 19:22:22 +00:00
|
|
|
}
|
|
|
|
|
2015-08-13 19:41:29 +00:00
|
|
|
bool read_config(FILE *file, bool is_active) {
|
2015-09-07 21:29:40 +00:00
|
|
|
struct sway_config *old_config = config;
|
2015-11-29 22:02:09 +00:00
|
|
|
config = calloc(1, sizeof(struct sway_config));
|
2015-09-07 21:29:40 +00:00
|
|
|
|
|
|
|
config_defaults(config);
|
2015-09-10 18:07:40 +00:00
|
|
|
config->reading = true;
|
2015-08-10 19:09:51 +00:00
|
|
|
if (is_active) {
|
2015-08-13 19:41:29 +00:00
|
|
|
sway_log(L_DEBUG, "Performing configuration file reload");
|
2015-09-07 21:29:40 +00:00
|
|
|
config->reloading = true;
|
|
|
|
config->active = true;
|
2015-08-10 19:09:51 +00:00
|
|
|
}
|
2015-08-06 02:10:56 +00:00
|
|
|
bool success = true;
|
2015-09-15 02:59:25 +00:00
|
|
|
enum cmd_status block = CMD_BLOCK_END;
|
2015-08-06 02:10:56 +00:00
|
|
|
|
2015-11-25 13:45:50 +00:00
|
|
|
int line_number = 0;
|
2015-09-07 21:29:40 +00:00
|
|
|
char *line;
|
2015-08-05 01:30:40 +00:00
|
|
|
while (!feof(file)) {
|
2015-09-07 21:29:40 +00:00
|
|
|
line = read_line(file);
|
2015-11-25 13:45:50 +00:00
|
|
|
line_number++;
|
2015-11-29 19:02:58 +00:00
|
|
|
line = strip_whitespace(line);
|
|
|
|
if (line[0] == '#') {
|
|
|
|
continue;
|
|
|
|
}
|
2015-11-29 22:20:27 +00:00
|
|
|
struct cmd_results *res = config_command(line, block);
|
2015-10-22 12:14:13 +00:00
|
|
|
switch(res->status) {
|
2015-09-15 02:59:25 +00:00
|
|
|
case CMD_FAILURE:
|
|
|
|
case CMD_INVALID:
|
2015-11-25 13:45:50 +00:00
|
|
|
sway_log(L_ERROR, "Error on line %i '%s': %s", line_number, line,
|
|
|
|
res->error);
|
2015-09-08 17:27:09 +00:00
|
|
|
success = false;
|
2015-09-15 02:59:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CMD_DEFER:
|
|
|
|
sway_log(L_DEBUG, "Defferring command `%s'", line);
|
|
|
|
list_add(config->cmd_queue, strdup(line));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CMD_BLOCK_MODE:
|
|
|
|
if (block == CMD_BLOCK_END) {
|
|
|
|
block = CMD_BLOCK_MODE;
|
|
|
|
} else {
|
|
|
|
sway_log(L_ERROR, "Invalid block '%s'", line);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-12-14 01:39:24 +00:00
|
|
|
case CMD_BLOCK_BAR:
|
|
|
|
if (block == CMD_BLOCK_END) {
|
|
|
|
block = CMD_BLOCK_BAR;
|
|
|
|
} else {
|
|
|
|
sway_log(L_ERROR, "Invalid block '%s'", line);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-12-15 12:12:08 +00:00
|
|
|
case CMD_BLOCK_BAR_COLORS:
|
|
|
|
if (block == CMD_BLOCK_BAR) {
|
|
|
|
block = CMD_BLOCK_BAR_COLORS;
|
|
|
|
} else {
|
|
|
|
sway_log(L_ERROR, "Invalid block '%s'", line);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-09-15 02:59:25 +00:00
|
|
|
case CMD_BLOCK_END:
|
|
|
|
switch(block) {
|
|
|
|
case CMD_BLOCK_MODE:
|
|
|
|
sway_log(L_DEBUG, "End of mode block");
|
|
|
|
config->current_mode = config->modes->items[0];
|
2015-12-14 01:39:24 +00:00
|
|
|
block = CMD_BLOCK_END;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CMD_BLOCK_BAR:
|
|
|
|
sway_log(L_DEBUG, "End of bar block");
|
|
|
|
config->current_bar = NULL;
|
|
|
|
block = CMD_BLOCK_END;
|
2015-09-15 02:59:25 +00:00
|
|
|
break;
|
|
|
|
|
2015-12-15 12:12:08 +00:00
|
|
|
case CMD_BLOCK_BAR_COLORS:
|
|
|
|
sway_log(L_DEBUG, "End of bar colors block");
|
|
|
|
block = CMD_BLOCK_BAR;
|
|
|
|
break;
|
|
|
|
|
2015-09-15 02:59:25 +00:00
|
|
|
case CMD_BLOCK_END:
|
|
|
|
sway_log(L_ERROR, "Unmatched }");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:;
|
|
|
|
}
|
|
|
|
default:;
|
2015-08-16 00:51:23 +00:00
|
|
|
}
|
2015-08-05 01:30:40 +00:00
|
|
|
free(line);
|
2015-10-22 12:14:13 +00:00
|
|
|
free(res);
|
2015-08-05 01:30:40 +00:00
|
|
|
}
|
|
|
|
|
2015-08-10 19:09:51 +00:00
|
|
|
if (is_active) {
|
2015-09-07 21:29:40 +00:00
|
|
|
config->reloading = false;
|
2015-08-19 02:05:58 +00:00
|
|
|
arrange_windows(&root_container, -1, -1);
|
2015-08-10 19:09:51 +00:00
|
|
|
}
|
2015-09-07 21:29:40 +00:00
|
|
|
if (old_config) {
|
|
|
|
free_config(old_config);
|
2015-09-07 06:22:02 +00:00
|
|
|
}
|
2015-08-10 18:53:43 +00:00
|
|
|
|
2015-09-10 18:07:40 +00:00
|
|
|
config->reading = false;
|
2015-08-13 19:41:29 +00:00
|
|
|
return success;
|
2015-08-05 01:30:40 +00:00
|
|
|
}
|
2015-08-06 02:40:38 +00:00
|
|
|
|
2015-11-29 19:02:58 +00:00
|
|
|
int output_name_cmp(const void *item, const void *data) {
|
2015-11-29 12:51:42 +00:00
|
|
|
const struct output_config *output = item;
|
|
|
|
const char *name = data;
|
|
|
|
|
|
|
|
return strcmp(output->name, name);
|
|
|
|
}
|
|
|
|
|
2015-11-29 20:51:48 +00:00
|
|
|
void merge_output_config(struct output_config *dst, struct output_config *src) {
|
|
|
|
if (src->name) {
|
|
|
|
if (dst->name) {
|
|
|
|
free(dst->name);
|
|
|
|
}
|
|
|
|
dst->name = strdup(src->name);
|
|
|
|
}
|
|
|
|
if (src->enabled != -1) {
|
|
|
|
dst->enabled = src->enabled;
|
|
|
|
}
|
|
|
|
if (src->width != -1) {
|
|
|
|
dst->width = src->width;
|
|
|
|
}
|
|
|
|
if (src->height != -1) {
|
|
|
|
dst->height = src->height;
|
|
|
|
}
|
|
|
|
if (src->x != -1) {
|
|
|
|
dst->x = src->x;
|
|
|
|
}
|
|
|
|
if (src->y != -1) {
|
|
|
|
dst->y = src->y;
|
|
|
|
}
|
|
|
|
if (src->background) {
|
|
|
|
if (dst->background) {
|
|
|
|
free(dst->background);
|
|
|
|
}
|
|
|
|
dst->background = strdup(src->background);
|
|
|
|
}
|
|
|
|
if (src->background_option) {
|
|
|
|
if (dst->background_option) {
|
|
|
|
free(dst->background_option);
|
|
|
|
}
|
|
|
|
dst->background_option = strdup(src->background_option);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-18 16:43:03 +00:00
|
|
|
static void invoke_swaybar(swayc_t *output, struct bar_config *bar, int output_i) {
|
|
|
|
sway_log(L_DEBUG, "Invoking swaybar for output %s[%d] and bar %s", output->name, output_i, bar->id);
|
|
|
|
|
|
|
|
size_t bufsize = 4;
|
|
|
|
char output_id[bufsize];
|
|
|
|
snprintf(output_id, bufsize, "%d", output_i);
|
|
|
|
output_id[bufsize-1] = 0;
|
|
|
|
|
|
|
|
pid_t *pid = malloc(sizeof(pid_t));
|
|
|
|
*pid = fork();
|
|
|
|
if (*pid == 0) {
|
2015-12-19 00:03:39 +00:00
|
|
|
if (!bar->swaybar_command) {
|
|
|
|
char *const cmd[] = {
|
|
|
|
"swaybar",
|
|
|
|
"-b",
|
|
|
|
bar->id,
|
|
|
|
output_id,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
execvp(cmd[0], cmd);
|
|
|
|
} else {
|
|
|
|
// run custom swaybar
|
|
|
|
int len = strlen(bar->swaybar_command) + strlen(bar->id) + strlen(output_id) + 6;
|
|
|
|
char *command = malloc(len * sizeof(char));
|
|
|
|
snprintf(command, len, "%s -b %s %s", bar->swaybar_command, bar->id, output_id);
|
|
|
|
|
|
|
|
char *const cmd[] = {
|
|
|
|
"sh",
|
|
|
|
"-c",
|
|
|
|
command,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
execvp(cmd[0], cmd);
|
|
|
|
free(command);
|
|
|
|
}
|
2015-12-18 16:43:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// add swaybar pid to output
|
|
|
|
list_add(output->bar_pids, pid);
|
|
|
|
}
|
|
|
|
|
2015-12-18 17:02:39 +00:00
|
|
|
void terminate_swaybars(list_t *pids) {
|
2015-12-18 16:43:03 +00:00
|
|
|
int i, ret;
|
|
|
|
pid_t *pid;
|
|
|
|
for (i = 0; i < pids->length; ++i) {
|
|
|
|
pid = pids->items[i];
|
|
|
|
ret = kill(*pid, SIGTERM);
|
|
|
|
if (ret != 0) {
|
|
|
|
sway_log(L_ERROR, "Unable to terminate swaybar [pid: %d]", *pid);
|
|
|
|
} else {
|
|
|
|
int status;
|
|
|
|
waitpid(*pid, &status, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// empty pids list
|
|
|
|
for (i = 0; i < pids->length; ++i) {
|
|
|
|
pid = pids->items[i];
|
|
|
|
list_del(pids, i);
|
|
|
|
free(pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-18 17:02:39 +00:00
|
|
|
void terminate_swaybg(pid_t pid) {
|
|
|
|
int ret = kill(pid, SIGTERM);
|
|
|
|
if (ret != 0) {
|
|
|
|
sway_log(L_ERROR, "Unable to terminate swaybg [pid: %d]", pid);
|
|
|
|
} else {
|
|
|
|
int status;
|
|
|
|
waitpid(pid, &status, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-18 16:43:03 +00:00
|
|
|
void load_swaybars(swayc_t *output, int output_idx) {
|
|
|
|
// Check for bars
|
|
|
|
list_t *bars = create_list();
|
|
|
|
struct bar_config *bar = NULL;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < config->bars->length; ++i) {
|
|
|
|
bar = config->bars->items[i];
|
|
|
|
bool apply = false;
|
|
|
|
if (bar->outputs) {
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < bar->outputs->length; ++j) {
|
|
|
|
char *o = bar->outputs->items[j];
|
|
|
|
if (strcmp(o, "*") || strcasecmp(o, output->name)) {
|
|
|
|
apply = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
apply = true;
|
|
|
|
}
|
|
|
|
if (apply) {
|
|
|
|
list_add(bars, bar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// terminate swaybar processes previously spawned for this
|
|
|
|
// output.
|
|
|
|
terminate_swaybars(output->bar_pids);
|
|
|
|
|
|
|
|
for (i = 0; i < bars->length; ++i) {
|
|
|
|
bar = bars->items[i];
|
|
|
|
invoke_swaybar(output, bar, output_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
list_free(bars);
|
|
|
|
}
|
|
|
|
|
2015-10-21 14:34:12 +00:00
|
|
|
void apply_output_config(struct output_config *oc, swayc_t *output) {
|
2015-10-21 21:59:01 +00:00
|
|
|
if (oc && oc->width > 0 && oc->height > 0) {
|
2015-10-21 14:34:12 +00:00
|
|
|
output->width = oc->width;
|
|
|
|
output->height = oc->height;
|
|
|
|
|
|
|
|
sway_log(L_DEBUG, "Set %s size to %ix%i", oc->name, oc->width, oc->height);
|
|
|
|
struct wlc_size new_size = { .w = oc->width, .h = oc->height };
|
|
|
|
wlc_output_set_resolution(output->handle, &new_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find position for it
|
|
|
|
if (oc && oc->x != -1 && oc->y != -1) {
|
|
|
|
sway_log(L_DEBUG, "Set %s position to %d, %d", oc->name, oc->x, oc->y);
|
|
|
|
output->x = oc->x;
|
|
|
|
output->y = oc->y;
|
|
|
|
} else {
|
|
|
|
int x = 0;
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
swayc_t *c = root_container.children->items[i];
|
|
|
|
if (c->type == C_OUTPUT) {
|
|
|
|
if (c->width + c->x > x) {
|
|
|
|
x = c->width + c->x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
output->x = x;
|
|
|
|
}
|
2015-11-19 23:55:17 +00:00
|
|
|
|
2015-11-28 15:18:37 +00:00
|
|
|
if (!oc || !oc->background) {
|
|
|
|
// Look for a * config for background
|
2015-11-29 13:24:11 +00:00
|
|
|
int i = list_seq_find(config->output_configs, output_name_cmp, "*");
|
|
|
|
if (i >= 0) {
|
2015-11-28 15:18:37 +00:00
|
|
|
oc = config->output_configs->items[i];
|
2015-11-29 13:24:11 +00:00
|
|
|
} else {
|
2015-11-28 15:18:37 +00:00
|
|
|
oc = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 00:36:31 +00:00
|
|
|
int output_i;
|
|
|
|
for (output_i = 0; output_i < root_container.children->length; ++output_i) {
|
|
|
|
if (root_container.children->items[output_i] == output) {
|
|
|
|
break;
|
2015-11-19 23:55:17 +00:00
|
|
|
}
|
2015-12-17 00:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (oc && oc->background) {
|
2015-11-19 23:55:17 +00:00
|
|
|
|
2015-12-18 16:43:03 +00:00
|
|
|
if (output->bg_pid != 0) {
|
2015-12-18 17:02:39 +00:00
|
|
|
terminate_swaybg(output->bg_pid);
|
2015-12-18 16:43:03 +00:00
|
|
|
}
|
|
|
|
|
2015-12-17 00:36:31 +00:00
|
|
|
sway_log(L_DEBUG, "Setting background for output %d to %s", output_i, oc->background);
|
2015-11-25 21:19:08 +00:00
|
|
|
|
|
|
|
size_t bufsize = 4;
|
|
|
|
char output_id[bufsize];
|
2015-12-17 00:36:31 +00:00
|
|
|
snprintf(output_id, bufsize, "%d", output_i);
|
2015-11-25 21:19:08 +00:00
|
|
|
output_id[bufsize-1] = 0;
|
|
|
|
|
|
|
|
char *const cmd[] = {
|
|
|
|
"swaybg",
|
|
|
|
output_id,
|
|
|
|
oc->background,
|
|
|
|
oc->background_option,
|
|
|
|
NULL,
|
|
|
|
};
|
2015-12-17 00:29:47 +00:00
|
|
|
|
2015-12-18 16:43:03 +00:00
|
|
|
output->bg_pid = fork();
|
|
|
|
if (output->bg_pid == 0) {
|
2015-12-17 00:29:47 +00:00
|
|
|
execvp(cmd[0], cmd);
|
|
|
|
}
|
|
|
|
}
|
2015-12-18 16:43:03 +00:00
|
|
|
|
|
|
|
// load swaybars for output
|
|
|
|
load_swaybars(output, output_i);
|
2015-10-21 14:34:12 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 21:29:40 +00:00
|
|
|
char *do_var_replacement(char *str) {
|
2015-08-06 02:40:38 +00:00
|
|
|
int i;
|
2015-09-08 15:54:57 +00:00
|
|
|
char *find = str;
|
|
|
|
while ((find = strchr(find, '$'))) {
|
|
|
|
// Skip if escaped.
|
2015-09-08 16:10:36 +00:00
|
|
|
if (find > str && find[-1] == '\\') {
|
|
|
|
if (find == str + 1 || !(find > str + 1 && find[-2] == '\\')) {
|
|
|
|
++find;
|
2015-09-08 15:54:57 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Find matching variable
|
|
|
|
for (i = 0; i < config->symbols->length; ++i) {
|
|
|
|
struct sway_variable *var = config->symbols->items[i];
|
|
|
|
int vnlen = strlen(var->name);
|
|
|
|
if (strncmp(find, var->name, vnlen) == 0) {
|
|
|
|
int vvlen = strlen(var->value);
|
|
|
|
char *newstr = malloc(strlen(str) - vnlen + vvlen + 1);
|
|
|
|
char *newptr = newstr;
|
|
|
|
int offset = find - str;
|
|
|
|
strncpy(newptr, str, offset);
|
|
|
|
newptr += offset;
|
|
|
|
strncpy(newptr, var->value, vvlen);
|
|
|
|
newptr += vvlen;
|
|
|
|
strcpy(newptr, find + vnlen);
|
|
|
|
free(str);
|
|
|
|
str = newstr;
|
|
|
|
find = str + offset + vvlen;
|
|
|
|
break;
|
2015-08-06 02:40:38 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-08 16:52:33 +00:00
|
|
|
if (i == config->symbols->length) {
|
|
|
|
++find;
|
|
|
|
}
|
2015-08-06 02:40:38 +00:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
2015-11-19 12:05:59 +00:00
|
|
|
|
|
|
|
// the naming is intentional (albeit long): a workspace_output_cmp function
|
|
|
|
// would compare two structs in full, while this method only compares the
|
|
|
|
// workspace.
|
|
|
|
int workspace_output_cmp_workspace(const void *a, const void *b) {
|
|
|
|
const struct workspace_output *wsa = a, *wsb = b;
|
|
|
|
return lenient_strcmp(wsa->workspace, wsb->workspace);
|
|
|
|
}
|
2015-11-19 15:37:48 +00:00
|
|
|
|
|
|
|
int sway_binding_cmp_keys(const void *a, const void *b) {
|
|
|
|
const struct sway_binding *binda = a, *bindb = b;
|
|
|
|
|
2015-11-24 08:30:02 +00:00
|
|
|
// Count keys pressed for this binding. important so we check long before
|
|
|
|
// short ones. for example mod+a+b before mod+a
|
|
|
|
unsigned int moda = 0, modb = 0, i;
|
|
|
|
|
|
|
|
// Count how any modifiers are pressed
|
|
|
|
for (i = 0; i < 8 * sizeof(binda->modifiers); ++i) {
|
|
|
|
moda += (binda->modifiers & 1 << i) != 0;
|
|
|
|
modb += (bindb->modifiers & 1 << i) != 0;
|
2015-11-19 15:37:48 +00:00
|
|
|
}
|
2015-11-24 08:30:02 +00:00
|
|
|
if (bindb->keys->length + modb != binda->keys->length + moda) {
|
|
|
|
return (bindb->keys->length + modb) - (binda->keys->length + moda);
|
2015-11-19 15:37:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 08:30:02 +00:00
|
|
|
// Otherwise compare keys
|
2015-11-24 18:15:10 +00:00
|
|
|
if (binda->modifiers > bindb->modifiers) {
|
|
|
|
return 1;
|
|
|
|
} else if (binda->modifiers < bindb->modifiers) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-19 15:37:48 +00:00
|
|
|
for (int i = 0; i < binda->keys->length; i++) {
|
|
|
|
xkb_keysym_t *ka = binda->keys->items[i],
|
|
|
|
*kb = bindb->keys->items[i];
|
|
|
|
if (*ka > *kb) {
|
|
|
|
return 1;
|
|
|
|
} else if (*ka < *kb) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sway_binding_cmp(const void *a, const void *b) {
|
|
|
|
int cmp = 0;
|
|
|
|
if ((cmp = sway_binding_cmp_keys(a, b)) != 0) {
|
|
|
|
return cmp;
|
|
|
|
}
|
|
|
|
const struct sway_binding *binda = a, *bindb = b;
|
|
|
|
return lenient_strcmp(binda->command, bindb->command);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_sway_binding(struct sway_binding *binding) {
|
|
|
|
if (binding->keys) {
|
|
|
|
for (int i = 0; i < binding->keys->length; i++) {
|
|
|
|
free(binding->keys->items[i]);
|
|
|
|
}
|
|
|
|
list_free(binding->keys);
|
|
|
|
}
|
|
|
|
if (binding->command) {
|
|
|
|
free(binding->command);
|
|
|
|
}
|
|
|
|
free(binding);
|
|
|
|
}
|
2015-12-14 22:43:52 +00:00
|
|
|
|
|
|
|
int sway_mouse_binding_cmp_buttons(const void *a, const void *b) {
|
|
|
|
const struct sway_mouse_binding *binda = a, *bindb = b;
|
|
|
|
if (binda->button > bindb->button) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (binda->button < bindb->button) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sway_mouse_binding_cmp(const void *a, const void *b) {
|
|
|
|
int cmp = 0;
|
|
|
|
if ((cmp = sway_binding_cmp_keys(a, b)) != 0) {
|
|
|
|
return cmp;
|
|
|
|
}
|
|
|
|
const struct sway_mouse_binding *binda = a, *bindb = b;
|
|
|
|
return lenient_strcmp(binda->command, bindb->command);
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_sway_mouse_binding(struct sway_mouse_binding *binding) {
|
|
|
|
if (binding->command) {
|
|
|
|
free(binding->command);
|
|
|
|
}
|
|
|
|
free(binding);
|
|
|
|
}
|
2015-12-14 23:35:18 +00:00
|
|
|
|
|
|
|
struct bar_config *default_bar_config(void) {
|
|
|
|
struct bar_config *bar = NULL;
|
|
|
|
bar = malloc(sizeof(struct bar_config));
|
|
|
|
bar->mode = strdup("dock");
|
|
|
|
bar->hidden_state = strdup("hide");
|
|
|
|
bar->modifier = 0;
|
2015-12-17 00:29:47 +00:00
|
|
|
bar->outputs = NULL;
|
2015-12-14 23:35:18 +00:00
|
|
|
bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
|
|
|
bar->bindings = create_list();
|
|
|
|
bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done");
|
2015-12-18 22:49:50 +00:00
|
|
|
bar->swaybar_command = NULL;
|
2015-12-14 23:35:18 +00:00
|
|
|
bar->font = strdup("monospace 10");
|
2015-12-15 13:05:42 +00:00
|
|
|
bar->height = -1;
|
2015-12-14 23:35:18 +00:00
|
|
|
bar->workspace_buttons = true;
|
2015-12-16 11:58:45 +00:00
|
|
|
bar->separator_symbol = NULL;
|
2015-12-14 23:35:18 +00:00
|
|
|
bar->strip_workspace_numbers = false;
|
|
|
|
bar->binding_mode_indicator = true;
|
|
|
|
bar->tray_padding = 2;
|
2015-12-15 12:12:08 +00:00
|
|
|
// set default colors
|
2015-12-15 12:45:04 +00:00
|
|
|
strcpy(bar->colors.background, "#000000ff");
|
|
|
|
strcpy(bar->colors.statusline, "#ffffffff");
|
|
|
|
strcpy(bar->colors.separator, "#666666ff");
|
|
|
|
strcpy(bar->colors.focused_workspace_border, "#4c7899ff");
|
|
|
|
strcpy(bar->colors.focused_workspace_bg, "#285577ff");
|
|
|
|
strcpy(bar->colors.focused_workspace_text, "#ffffffff");
|
2015-12-15 14:08:11 +00:00
|
|
|
strcpy(bar->colors.active_workspace_border, "#333333ff");
|
2015-12-15 12:45:04 +00:00
|
|
|
strcpy(bar->colors.active_workspace_bg, "#5f676aff");
|
|
|
|
strcpy(bar->colors.active_workspace_text, "#ffffffff");
|
|
|
|
strcpy(bar->colors.inactive_workspace_border, "#333333ff");
|
|
|
|
strcpy(bar->colors.inactive_workspace_bg,"#222222ff");
|
|
|
|
strcpy(bar->colors.inactive_workspace_text, "#888888ff");
|
|
|
|
strcpy(bar->colors.urgent_workspace_border, "#2f343aff");
|
|
|
|
strcpy(bar->colors.urgent_workspace_bg,"#900000ff");
|
|
|
|
strcpy(bar->colors.urgent_workspace_text, "#ffffffff");
|
|
|
|
strcpy(bar->colors.binding_mode_border, "#2f343aff");
|
|
|
|
strcpy(bar->colors.binding_mode_bg,"#900000ff");
|
|
|
|
strcpy(bar->colors.binding_mode_text, "#ffffffff");
|
2015-12-15 12:12:08 +00:00
|
|
|
|
2015-12-14 23:35:18 +00:00
|
|
|
list_add(config->bars, bar);
|
|
|
|
|
|
|
|
return bar;
|
|
|
|
}
|