From fb27456f096f5f54acb788098a2d09c27e525a63 Mon Sep 17 00:00:00 2001 From: aw-engineer <87784967+aw-engineer@users.noreply.github.com> Date: Wed, 4 Feb 2026 20:31:35 +0000 Subject: [PATCH] Updates README.md with gnome-extensions install procedure --- README.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/README.md b/README.md index 516c04d..6a7912e 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,61 @@ specific version of the shell. This extension has only been tested on GNOME 46 and GNOME 48, but should also work on GNOME 45. ## Installation + +### manually + * Go to ```/.local/share/gnome-shell/extensions/``` * ```mkdir removeclock@sudo-swe.com```. **ATTENTION**: Name of dir must match **_uuid_** in extensions' ```metadata.json``` file. * Copy ```metadata.json``` and ```extension.js``` into created directory. * Restart GNOME Shell by pressing ```Alt+F2``` and enter 'r'. +### gnome-extensions + +* Download + + ``` + git clone https://github.com/theobori/GNOME-RemoveClock.git + ``` + +* Pack + + ``` + gnome-extensions pack GNOME-RemoveClock/ + ``` + +* Install + + ``` + gnome-extensions install removeclock\@sudo-swe.com.shell-extension.zip + ``` + +* Log out of GNOME session + + ``` + gnome-session-quit --logout --no-prompt + ``` + +* Log in to GNOME session + +* Verify extension is installed + + ``` + gnome-extensions list + removeclock@sudo-swe.com + ``` + +* Enable the extension + + ``` + gnome-extensions enable removeclock@sudo-swe.com + ``` + +* (When done) Disable the extension + + ``` + gnome-extensions disable removeclock@sudo-swe.com + ``` + ## License Standard MIT license. Feel free to modify as you please.