aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamino Bauknecht <dev@tb6.eu>2023-12-12 14:53:50 +0100
committerSimon Ser <contact@emersion.fr>2023-12-14 10:49:20 +0100
commit2bba8a861885d770d1cd081ec22567e4de5e991a (patch)
tree3e20cb3f9f89743b9f499e80f9f70bbd2939479d
parent79f82b3e6ace5db980c2934fdd6f47b7e55067c7 (diff)
sway: raise error on non-accessible background file
(cherry picked from commit 255ff665c53c8d042bce0c4cff4081d2bd35beeb)
-rw-r--r--sway/commands/output/background.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/commands/output/background.c b/sway/commands/output/background.c
index 67f212ff..d691295f 100644
--- 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);