mirror of
https://github.com/NickHu/sway
synced 2024-11-16 19:49:56 +01:00
16 lines
316 B
C
16 lines
316 B
C
#include "wayland-desktop-shell-client-protocol.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "client/window.h"
|
|
#include "client/registry.h"
|
|
#include "log.h"
|
|
|
|
void sway_terminate(void) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
init_log(L_INFO);
|
|
sway_log(L_INFO, "Hello world");
|
|
return 0;
|
|
}
|