mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Swaylock: Log error if multiple images are defined for the same output
This commit is contained in:
parent
9d99e5c2e7
commit
bde9711f3c
|
@ -223,6 +223,23 @@ static void load_image(char *arg, struct swaylock_state *state) {
|
||||||
image->path = strdup(arg);
|
image->path = strdup(arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool exists = false;
|
||||||
|
struct swaylock_image *iter_image;
|
||||||
|
wl_list_for_each(iter_image, &state->images, link) {
|
||||||
|
if (lenient_strcmp(iter_image->output_name, image->output_name) == 0) {
|
||||||
|
exists = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (exists) {
|
||||||
|
if (image->output_name) {
|
||||||
|
wlr_log(L_ERROR, "Multiple images defined for output %s",
|
||||||
|
image->output_name);
|
||||||
|
} else {
|
||||||
|
wlr_log(L_ERROR, "Multiple default images defined");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Bash doesn't replace the ~ with $HOME if the output name is supplied
|
// Bash doesn't replace the ~ with $HOME if the output name is supplied
|
||||||
wordexp_t p;
|
wordexp_t p;
|
||||||
if (wordexp(image->path, &p, 0) == 0) {
|
if (wordexp(image->path, &p, 0) == 0) {
|
||||||
|
|
Loading…
Reference in a new issue