diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-15 15:37:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-15 15:37:17 +0200 |
commit | f6ad4908bc2f366ccbee18889ffe35c7ee436389 (patch) | |
tree | 8fb3b25e4e244bf32ddb4a27ecaffce9661a13c5 /swayidle/main.c | |
parent | 97b9452171f2532831a876167fe93c71541d644d (diff) | |
parent | 32ba8154b8f5f15b2c778dd404f3acb5becc1719 (diff) |
Merge pull request #2838 from RyanDwyer/compositor-unavailable-crash
Sway clients: Exit gracefully when compositor is unavailable
Diffstat (limited to 'swayidle/main.c')
-rw-r--r-- | swayidle/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/swayidle/main.c b/swayidle/main.c index 5b6c95a7..93f4c94b 100644 --- a/swayidle/main.c +++ b/swayidle/main.c @@ -388,7 +388,9 @@ int main(int argc, char *argv[]) { state.display = wl_display_connect(NULL); if (state.display == NULL) { - wlr_log(WLR_ERROR, "Failed to create 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 -3; } |