mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-27 21:58:16 +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;
|
|
}
|