Hacker News new | ask | show | jobs
by hedning 3175 days ago
It's pretty straightforward to use mutter without gnome-shell, you just have to implement the MetaPluginClass [1], which is what gnome-shell does too here [2]. At that point you can basically just run `meta_init()` and `meta_run()` in main and you're up and going.

[1] Somewhat outdated documentation: https://developer.gnome.org/meta/stable/MetaPlugin.html#Meta...

[2] https://github.com/GNOME/gnome-shell/blob/master/src/gnome-s...

1 comments

Thank you! I appreciate it.