wmww / gtk4-layer-shell

A library to create panels and other desktop components for Wayland using the Layer Shell protocol and GTK4
MIT License
128 stars 4 forks source link

GTK4 Layer Shell

GTK4 Layer Demo screenshot

A library for using the Layer Shell Wayland protocol with GTK4. With this library you can build desktop shell components such as panels, notifications and wallpapers. You can use it to anchor your windows to a corner or edge of the output, or stretch them across the entire output. This Library is compatible with C, C++ and any language that supports GObject introspection files (Python, Vala, etc).

Documentation

GTK3 version

Reporting Bugs

To report a crash or other problem using this library open a new issue on Github. Try to include a minimum reproducer if possible (ideally in C). DO NOT REPORT GTK4 LAYER SHELL BUGS TO UPSTREAM GTK. If you can reproduce the problem without including or linking to the gtk4-layer-shell library at all then and only then report it to GTK instead of here.

Supported Desktops

This library only works on Wayland, and only on Wayland compositors that support the Layer Shell protocol. Layer shell is supported on:

Layer shell is not supported on:

Using the Library

Demo

gtk4-layer-demo is built if examples are enabled. It's useful for testing layer shell support in compositors. Its code can be found in examples/demo/.

C/C++

The easiest way to build against GTK Layer Shell is to use the gtk-layer-shell-0 pkg-config package. Refer to your build system or the pkg-config docs for further instructions. examples/simple-example.c is a minimal complete app written in C. If you link against libwayland, you must link libwayland after gtk4-layer-shell. See linking.md for details.

Python

examples/simple-example.py contains sample Python code.

Lua

examples/simple-example.lua contains sample Lua code. It uses FFI which requires LuaJIT.

Vala

examples/simple-example.vala contains a minimal working Vala app.

Rust

@pentamassiv maintains safe Rust bindings and the crates.io crate. Rust examples can be found here.

Ruby

mswiger maintains Ruby bindings which are published to RubyGems.

Distro Packages

List of distros GTK Layer Shell is packaged for

Building From Source

  1. Clone this repo
  2. Install build dependencies (see below)
  3. $ meson setup -Dexamples=true -Ddocs=true -Dtests=true build
  4. $ ninja -C build
  5. $ sudo ninja -C build install
  6. $ sudo ldconfig

Build Dependencies

To install these dependencies on Ubuntu 18.04 and later:

sudo apt install meson ninja-build libwayland-dev libgtk-4-dev gobject-introspection libgirepository1.0-dev gtk-doc-tools python3 valac

To install on Arch Linux:

pacman -S --needed meson ninja gtk4 wayland gobject-introspection libgirepository gtk-doc python vala

Meson Options

Running the Tests

Licensing

100% MIT (unlike the GTK3 version of this library which contained GPL code copied from GTK)