wmww / gtk-layer-shell

A library to create panels and other desktop components for Wayland using the Layer Shell protocol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GTK Layer Shell (GTK3 version)

GTK Layer Shell demo screenshot

A library to write GTK applications that use Layer Shell. Layer Shell is a Wayland protocol for 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. It supports all Layer Shell features including popups and popovers (GTK popups Just Work™). This Library is compatible with C, C++ and any language that supports GObject introspection files (Python, Vala, etc, see using the library below).

Documentation

GTK4 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 GTK LAYER SHELL BUGS TO UPSTREAM GTK. If you can reproduce the problem without including or linking to the gtk-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:

  • wlroots based compositors (such as Sway)
  • KDE Plasma on wayland
  • Mir-based compositors (some may not enable the protocol by default and require --add-wayland-extension zwlr_layer_shell_v1)

Layer shell is not supported on:

  • Gnome-on-Wayland
  • Any X11 desktop

Using the Library

Demo

gtk-layer-demo is built if examples are enabled. Its UI exposes all features of the library, and 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.

Python

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

Vala

examples/vala-standalone contains a minimal working standalone Vala project, see the readme for details.

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 libwayland-dev libgtk-3-dev gobject-introspection libgirepository1.0-dev gtk-doc-tools valac

Meson Options

  • -Dexamples (default false): If to build the example C apps; gtk-layer-demo is installed if examples are built; The Vala example is never built with the rest of the project
  • -Ddocs (default false): If to generate the docs
  • -Dtests (default false): If to build the tests
  • -Dintrospection (default: true): If to build GObject Introspection data (used for bindings to languages other than C/C++)
  • -Dvapi (default: true): If to build VAPI data (allows this library to be used in Vala). Requires -Dintrospection=true

Running the Tests

  • ninja -C build test

Licensing

GTK Layer Shell is licensed under the GNU Lesser General Public License version 3.0 or any later version.

Most of the individual source files are licensed under MIT.

To prevent possible future confusion, all contributions must contain the following in the PR message: By opening this pull request, I agree for my modifications to be licensed under whatever licenses are indicated at the start of the files I modified

Licensing Rationale

I want everyone to be able to use GTK Layer Shell however they desire, but parts of it are extracted from GTK. Therefore, the project as a whole is licensed under GNU Lesser General Public License (LGPL) version 3 or any later version (a newer version of the same license as GTK). See LICENSE_LGPL.txt and LICENSE_GPL.txt for details. Almost all of the non-generated code, however, is licensed under MIT (LICENSE_MIT.txt). At the top of each file should be a header that specifies which license applies to it. Please refer to that if in doubt.

What This Means For You

This library can be linked against under similar terms as GTK itself, so licensing shouldn't be a problem for most potential users. Furthermore, most of the code within this library can be used in permissively licensed or proprietary projects.

About

A library to create panels and other desktop components for Wayland using the Layer Shell protocol

License:GNU General Public License v3.0


Languages

Language:C 91.4%Language:Python 7.6%Language:Meson 1.0%