https://github.com/ubuntu/gnome-shell-ubuntu-extensions
The ubuntu gnome-shell-extensions
https://github.com/ubuntu/gnome-shell-ubuntu-extensions
gnome gnome-shell gnome-shell-extension
Last synced: 3 months ago
JSON representation
The ubuntu gnome-shell-extensions
- Host: GitHub
- URL: https://github.com/ubuntu/gnome-shell-ubuntu-extensions
- Owner: ubuntu
- Created: 2023-05-04T13:59:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2026-02-17T04:17:41.000Z (4 months ago)
- Last Synced: 2026-02-17T10:28:19.752Z (4 months ago)
- Topics: gnome, gnome-shell, gnome-shell-extension
- Language: Meson
- Size: 73.2 KB
- Stars: 6
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GNOME Shell Ubuntu Extensions
This repository aggregates a set of GNOME Shell extensions used in ubuntu,
and manages them via Meson subprojects.
All extensions are enabled by default.
Included extensions:
- [AppIndicators](https://github.com/ubuntu/gnome-shell-extension-appindicator)
- [Desktop Icons NG](https://gitlab.com/rastersoft/desktop-icons-ng)
- [Dash to Dock](https://github.com/micheleg/dash-to-dock)
- [Tiling Assistant](https://github.com/Leleat/Tiling-Assistant)
- [Web Search Provider](https://gitlab.gnome.org/Community/Ubuntu/gnome-shell-web-search-provider)
- [Snapd Search Provider](https://gitlab.gnome.org/Community/Ubuntu/gnome-shell-snapd-search-provider)
## Quick start
```sh
meson setup _build
meson compile -C _build
sudo meson install -C _build
```
## Managing extensions
Extensions must be added using meson subprojects, via
[wrap files](https://mesonbuild.com/Wrap-dependency-system-manual.html).
Wrap files live under `subprojects/*.wrap`.
They must updated them to point to different releases.
## Packaging
This project is intended to integrate to be used with `git-buildpackage` tool
in order to update the subprojects and build debian packages.
# Build a source package
gbp buildpackage -S
# Build the binary package
gbp buildpackage -b # [ ... further builder options ]
Further package-related documentation in [`debian/README.source`](debian/README.source).