Add solid-color rendering to swaybg

This commit is contained in:
Drew DeVault 2018-03-27 15:25:25 -04:00
parent eccf0b2598
commit 632bb948b7
11 changed files with 550 additions and 39 deletions

View file

@ -1,8 +1,22 @@
deps = [
cairo,
jsonc,
math,
pango,
pangocairo,
sway_protos,
wayland_client,
]
if gdk_pixbuf.found()
deps += [gdk_pixbuf]
endif
executable(
'swaybg',
'main.c',
include_directories: [sway_inc],
dependencies: [wayland_client, sway_protos, jsonc, wlroots],
link_with: [lib_sway_common],
dependencies: deps,
link_with: [lib_sway_common, lib_sway_client],
install: true
)