aboutsummaryrefslogtreecommitdiffstats
path: root/swaybg
diff options
context:
space:
mode:
authorLibravatar Linus Heckemann <git@sphalerite.org>2017-07-03 21:19:54 +0100
committerLibravatar Linus Heckemann <git@sphalerite.org>2017-07-03 22:02:49 +0100
commitd06ec90a9d5d1c332a85b296b4ab6011d937f14e (patch)
treef8d390a84d95d42d16953943c5b91deb23806b9a /swaybg
parentMerge pull request #1255 from Hummer12007/policy (diff)
downloadsway-d06ec90a9d5d1c332a85b296b4ab6011d937f14e.tar.gz
sway-d06ec90a9d5d1c332a85b296b4ab6011d937f14e.tar.zst
sway-d06ec90a9d5d1c332a85b296b4ab6011d937f14e.zip
swaybg: check that background can be loaded
Diffstat (limited to 'swaybg')
-rw-r--r--swaybg/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/swaybg/main.c b/swaybg/main.c
index 9dba0c8f..2fdd4220 100644
--- a/swaybg/main.c
+++ b/swaybg/main.c
@@ -97,6 +97,14 @@ int main(int argc, const char **argv) {
97 if (!image) { 97 if (!image) {
98 sway_abort("Failed to read background image."); 98 sway_abort("Failed to read background image.");
99 } 99 }
100 if (cairo_surface_status(image) != CAIRO_STATUS_SUCCESS) {
101 sway_abort("Failed to read background image: %s."
102#ifndef WITH_GDK_PIXBUF
103 "\nSway was compiled without gdk_pixbuf support, so only"
104 "\nPNG images can be loaded. This is the likely cause."
105#endif //WITH_GDK_PIXBUF
106 , cairo_status_to_string(cairo_surface_status(image)));
107 }
100 double width = cairo_image_surface_get_width(image); 108 double width = cairo_image_surface_get_width(image);
101 double height = cairo_image_surface_get_height(image); 109 double height = cairo_image_surface_get_height(image);
102 110