mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-16 15:41:25 +01:00
12 lines
194 B
C
12 lines
194 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "log.h"
|
|
|
|
void sway_terminate(void) {
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, const char **argv) {
|
|
init_log(L_INFO);
|
|
sway_log(L_INFO, "Hello world!");
|
|
}
|