sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 255ff665c53c8d042bce0c4cff4081d2bd35beeb
parent bf2b79b2845a070d84aafaf95e6cfcf9af7eeb9b
Author: Tamino Bauknecht <dev@tb6.eu>
Date:   Tue, 12 Dec 2023 14:53:50 +0100

sway: raise error on non-accessible background file

Diffstat:
Msway/commands/output/background.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/commands/output/background.c b/sway/commands/output/background.c @@ -123,7 +123,10 @@ struct cmd_results *output_cmd_background(int argc, char **argv) { src); config_add_swaynag_warning("Unable to access background file '%s'", src); + struct cmd_results *result = cmd_results_new(CMD_FAILURE, + "unable to access background file '%s'", src); free(src); + return result; } else { output->background = src; output->background_option = strdup(mode);