Compare commits

...

5 commits
master ... 1.6

Author SHA1 Message Date
Simon Ser
be4b92c6b1 build: bump version to 1.6 2021-04-07 21:44:21 +02:00
Ronan Pigott
98696fa0e6 output: damage whole output when exiting scanout
(cherry picked from commit 62fbf33ce2)
2021-04-07 21:43:26 +02:00
Simon Ser
8a49a296f6 build: bump to version v1.6-rc3 2021-03-31 19:12:46 +02:00
Simon Ser
83202d40e2 ci: add xcb-util-wm dependency for wlroots
This is now a mandatory dependency for wlroots.

(cherry picked from commit 276a37a605)
2021-03-31 19:12:17 +02:00
columbarius
8f5c546fca config: allow whitespaces in config path
(cherry picked from commit 1d62d6bfa0)
2021-03-31 19:12:17 +02:00
5 changed files with 52 additions and 24 deletions

View file

@ -16,6 +16,7 @@ packages:
- wayland-dev
- wayland-protocols
- xcb-util-image-dev
- xcb-util-wm-dev
- xwayland
sources:
- https://github.com/swaywm/sway

View file

@ -13,6 +13,7 @@ packages:
- wayland
- wayland-protocols
- xcb-util-image
- xcb-util-wm
- xorg-xwayland
sources:
- https://github.com/swaywm/sway

View file

@ -1,7 +1,7 @@
project(
'sway',
'c',
version: '1.6-rc2',
version: '1.6',
license: 'MIT',
meson_version: '>=0.53.0',
default_options: [
@ -61,7 +61,7 @@ math = cc.find_library('m')
rt = cc.find_library('rt')
# Try first to find wlroots as a subproject, then as a system dependency
wlroots_version = ['>=0.12.0', '<0.13.0']
wlroots_version = ['>=0.13.0', '<0.14.0']
wlroots_proj = subproject(
'wlroots',
default_options: ['examples=false'],

View file

@ -338,35 +338,60 @@ static bool file_exists(const char *path) {
return path && access(path, R_OK) != -1;
}
static char *config_path(const char *prefix, const char *config_folder) {
if (!prefix || !prefix[0] || !config_folder || !config_folder[0]) {
return NULL;
}
const char *filename = "config";
size_t size = 3 + strlen(prefix) + strlen(config_folder) + strlen(filename);
char *path = calloc(size, sizeof(char));
snprintf(path, size, "%s/%s/%s", prefix, config_folder, filename);
return path;
}
static char *get_config_path(void) {
static const char *config_paths[] = {
"$HOME/.sway/config",
"$XDG_CONFIG_HOME/sway/config",
"$HOME/.i3/config",
"$XDG_CONFIG_HOME/i3/config",
SYSCONFDIR "/sway/config",
SYSCONFDIR "/i3/config",
char *path = NULL;
const char *home = getenv("HOME");
size_t size_fallback = 1 + strlen(home) + strlen("/.config");
char *config_home_fallback = calloc(size_fallback, sizeof(char));
snprintf(config_home_fallback, size_fallback, "%s/.config", home);
const char *config_home = getenv("XDG_CONFIG_HOME");
if (config_home == NULL || config_home[0] == '\0') {
config_home = config_home_fallback;
}
struct config_path {
const char *prefix;
const char *config_folder;
};
char *config_home = getenv("XDG_CONFIG_HOME");
if (!config_home || !*config_home) {
config_paths[1] = "$HOME/.config/sway/config";
config_paths[3] = "$HOME/.config/i3/config";
}
struct config_path config_paths[] = {
{ .prefix = home, .config_folder = ".sway"},
{ .prefix = config_home, .config_folder = "sway"},
{ .prefix = home, .config_folder = ".i3"},
{ .prefix = config_home, .config_folder = "i3"},
{ .prefix = SYSCONFDIR, .config_folder = "sway"},
{ .prefix = SYSCONFDIR, .config_folder = "i3"}
};
for (size_t i = 0; i < sizeof(config_paths) / sizeof(char *); ++i) {
wordexp_t p;
if (wordexp(config_paths[i], &p, WRDE_UNDEF) == 0) {
char *path = strdup(p.we_wordv[0]);
wordfree(&p);
if (file_exists(path)) {
return path;
}
free(path);
size_t num_config_paths = sizeof(config_paths)/sizeof(config_paths[0]);
for (size_t i = 0; i < num_config_paths; i++) {
path = config_path(config_paths[i].prefix, config_paths[i].config_folder);
if (!path) {
continue;
}
if (file_exists(path)) {
break;
}
free(path);
path = NULL;
}
return NULL;
free(config_home_fallback);
return path;
}
static bool load_config(const char *path, struct sway_config *config,

View file

@ -553,6 +553,7 @@ static int output_repaint_timer_handler(void *data) {
if (last_scanned_out && !scanned_out) {
sway_log(SWAY_DEBUG, "Stopping fullscreen view scan out on %s",
output->wlr_output->name);
output_damage_whole(output);
}
last_scanned_out = scanned_out;