Created
January 31, 2018 22:10
-
-
Save t-8ch/5e59f5a5eff265ad429c779000511f0a to your computer and use it in GitHub Desktop.
minimal mutter application with window management
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <meta/main.h> | |
int main() { | |
> GMainLoop *loop = g_main_loop_new(NULL, FALSE); | |
> meta_init(); | |
> g_main_loop_run(loop); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CFLAGS=$(shell pkg-config --cflags libmutter-1) -Wl,-rpath,/usr/lib/mutter | |
LDLIBS=$(shell pkg-config --libs libmutter-1) | |
all: main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! This was the last piece I needed to upgrade my system to ubuntu 18.04 👍