summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-11-18 22:01:22 -0500
committerDrew DeVault <sir@cmpwn.com>2015-11-18 22:01:22 -0500
commit137b6185c3f41d61702bdf5e64f28bc93bd5529a (patch)
tree1152bab35bb3b37e9e93cdae637a7aaca1f7c6fc /main.c
parent2d43bb10064b7e373584c75ff849dff3571641d8 (diff)
downloadswaybg-137b6185c3f41d61702bdf5e64f28bc93bd5529a.tar.gz
swaybg-137b6185c3f41d61702bdf5e64f28bc93bd5529a.tar.bz2
Basic support for extensions in server and clients
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.c b/main.c
index b4614ac..8d95f60 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,4 @@
+#include "wayland-desktop-shell-client-protocol.h"
#include <stdio.h>
#include <stdlib.h>
#include <wayland-client.h>
@@ -14,12 +15,16 @@ void sway_terminate(void) {
int main(int argc, char **argv) {
init_log(L_INFO);
- if (!(state = client_setup(100, 100))) {
+ if (!(state = client_setup(100, 100, false))) {
return -1;
}
+ if (!state->desktop_shell) {
+ sway_abort("swaybg requires the compositor to support the desktop-shell extension.");
+ }
struct output_state *output = state->outputs->items[0];
state->width = output->width;
state->height = output->height;
+ desktop_shell_set_background(state->desktop_shell, output->output, state->surface);
uint8_t r = 0, g = 0, b = 0;