diff options
author | Ian Fan <ianfan0@gmail.com> | 2018-10-16 10:50:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 10:50:56 +0100 |
commit | ac20690945f1cd44c4c22267c9e7a172ebcf5ba5 (patch) | |
tree | 994739d4ba8388d7a336ac825a618daf2274ec66 /swaybg | |
parent | 05284b65db5f3cdfa88d7e06055aadd0d5fa8e50 (diff) | |
parent | cd02d60a992ee38689a0d17fc69c4e2b1956f266 (diff) |
Merge branch 'master' into set-set-raw-focus
Diffstat (limited to 'swaybg')
-rw-r--r-- | swaybg/main.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/swaybg/main.c b/swaybg/main.c index 742669ef..45b7a913 100644 --- a/swaybg/main.c +++ b/swaybg/main.c @@ -222,7 +222,12 @@ int main(int argc, const char **argv) { } state.display = wl_display_connect(NULL); - assert(state.display); + if (!state.display) { + wlr_log(WLR_ERROR, "Unable to connect to the compositor. " + "If your compositor is running, check or set the " + "WAYLAND_DISPLAY environment variable."); + return 1; + } struct wl_registry *registry = wl_display_get_registry(state.display); wl_registry_add_listener(registry, ®istry_listener, &state); |