- Add privacy quick settings to the system menu for quick access to privacy settings in GNOME
- Supports GNOME 45+
- Get the extension from here
- This project is licensed under GPL 3.0
- Any donations are greatly appreciated :)
- Due to limitations in GNOME shell, only sandboxed (flatpak / snap) apps can be forced to respect privacy settings
- As long as the settings changed by the extension match the settings inside GNOME Settings (privacy section), the extension is behaving correctly
- Support for older versions of GNOME can be found in branches
- Find the name of the branch thgat supports the target version, and install from there
- Alternatively, you can just use an older release or tag to install from
- Run
gnome-extensions install "PrivacyMenu@stuarthayhurst.shell-extension.zip" --force
- Alternatively:
- Extract the zip to
~/.local/share/gnome-shell/extensions/PrivacyMenu@stuarthayhurst/
- Then run
glib-compile-schemas ~/.local/share/gnome-shell-extensions/PrivacyMenu@stuarthayhurst/schemas/
- Extract the zip to
- Log out and back in to restart GNOME
- Enable the extension:
gnome-extensions enable PrivacyMenu@stuarthayhurst
- Make sure the install dependencies are installed
make build
make install
- Log out and back in to restart GNOME
- Enable the extension:
gnome-extensions enable PrivacyMenu@stuarthayhurst
-
make build
: Creates extension zipmake check
: Runs checks on built extension zipmake install
: Installs the extensionmake uninstall
: Uninstalls the extension
-
make clean
: Cleans the extension repository, including built files and translationsmake translations
: Updates translationsmake compress
: Losslessly compresses any.png
s indocs/
- Allows passing
COMPRESSLEVEL="-o[X]"
, where[X]
is an integer between 0-7 - Supports
-j[X]
, where[X]
is the number of threads to use
- Allows passing
make release
: Updates translations and icons, then creates and checks an extension zip- Calls
make translations compress build check
- Supports any variables / arguments supported by these targets
- Also allows passing
VERSION="[XX]"
, where[XX]
is the version to updatemetadata.json
to - Supports
-j[X]
, where[X]
is the number of threads to use
- Calls
make package
: Creates the extension zip from the project's current state (only useful for debugging)
- gettext
- gnome-extensions
All install dependencies
- sed (
make translations
) - optipng (
make compress
)
- Help with the project is always appreciated, refer to
docs/CONTRIBUTING.md
to get started - Documentation, code, translations and UI improvements are all welcome!
- If you were simply told "Error" while installing, reboot and see if there's still an issue
- When installing an extension from GNOME's extension site, this is normal
- A log of what the extension is doing is very helpful for fixing issues
- The extension logs to the system logs when enabled, which can be accessed with
journalctl /usr/bin/gnome-shell
- A live feed of GNOME's logs can be accessed with
journalctl /usr/bin/gnome-shell -f -o cat
scripts/update-po.sh
andscripts/update-pot.sh
were derived from Fly-Pie, originally licensed under the MIT license