Add swaymsg-compatible IPC interface with labmsg client

This commit is contained in:
stormshadow 2026-04-15 23:25:06 +05:30 committed by Anirvan Banerjee
parent bce14a5ad7
commit 8328c05041
20 changed files with 2291 additions and 11 deletions

View file

@ -59,3 +59,11 @@ endif
clients = files('lab-sensible-terminal')
install_data(clients, install_dir: get_option('bindir'))
jsonc_client = dependency('json-c')
executable(
'labmsg',
files('labmsg.c'),
dependencies: [jsonc_client],
install: true,
)