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