GNU bug report logs -
#56128
[PATCH] gnu: Add some gnome extensions
Previous Next
Reported by: Sughosha <Sughosha <at> proton.me>
Date: Tue, 21 Jun 2022 19:03:01 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sun, 26 Jun 2022 17:13:16 +0200
with message-id <2773a9193b3a7fd8a35a151ef299c031b87f6ae4.camel <at> gmail.com>
and subject line Re: [PATCH] gnu: Add some gnome extensions
has caused the debbugs.gnu.org bug report #56128,
regarding [PATCH] gnu: Add some gnome extensions
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
56128: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56128
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
From aa21788fe28ff0b271ccab8b49e3602c783604fc Mon Sep 17 00:00:00 2001
From: Sughosha <sughosha <at> proton.me>
Date: Tue, 21 Jun 2022 20:41:12 +0200
Subject: [PATCH] gnu: Add some gnome extensions
---
gnu/packages/gnome-xyz.scm | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 113 insertions(+)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 465f81b..a96fe8b 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -985,6 +985,119 @@ animation of closing windowed applications.")
GNOME Shell, including the top panel, dash and overview.")
(license license:gpl3)))
+(define-public gnome-shell-extension-activities-icons
+ (let ((revision "12")
+ (commit "651179d1727d5ed80866f2319d5e4793b28631ae"))
+ (package
+ (name "gnome-shell-extension-activities-icons")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/fawtytoo/activities-icons")
+ (commit commit)))
+ (sha256
+ (base32 "0c77f77knchzdg1mmyn6ahb3lgfd54ym30wnyrh20y4zbwn8ri2w"))))
+ (build-system copy-build-system)
+ (arguments
+ `(#:install-plan
+ `(("." "/share/gnome-shell/extensions/activities_icons <at> fawtytoo"))))
+ (home-page "https://github.com/fawtytoo/activities-icons")
+ (synopsis "Gnome Shell extension that replaces the Activities button with 2 icons for selecting between Applications and Workspaces")
+ (description "The Activities button becomes 2 icons for selecting either Applications or Workspaces in the overview. Selecting the same view again will hide the overview.
+
+Scrolling on the icons allows switching windows on a workspace or cycling through the Workspaces.")
+ (license license:gpl3))))
+
+(define-public gnome-shell-extension-radio
+ (package
+ (name "gnome-shell-extension-radio")
+ (version "19")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/hslbck/gnome-shell-extension-radio")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1qsi6c57hxh4jqdw18knm06601lhag6jdbvzg0r79aa9572zy8a0"))))
+ (build-system copy-build-system)
+ (arguments
+ `(#:install-plan
+ `(("radio <at> hslbck.gmail.com" "/share/gnome-shell/extensions/"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'install 'glib-compile-schemas
+ (lambda _
+ (invoke "glib-compile-schemas" "radio <at> hslbck.gmail.com/schemas"))))))
+ (native-inputs
+ `(("glib:bin" ,glib "bin")))
+ (home-page "https://github.com/hslbck/gnome-shell-extension-radio")
+ (synopsis "Gnome shell extension for listening to internet radio streams")
+ (description "This extension is for listening to internet radio streams.")
+ (license license:gpl3+)))
+
+(define-public gnome-shell-extension-sound-output-device-chooser
+ (package
+ (name "gnome-shell-extension-sound-output-device-chooser")
+ (version "43")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/kgshank/gse-sound-output-device-chooser")
+ (commit version)))
+ (sha256
+ (base32 "1qk6ypyqbv8zwwlky6cgk9hgp1zh32jmzw4wza200g4v94ifkwm9"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-hardcoded-path
+ (lambda* (#:key outputs #:allow-other-keys)
+ (substitute* "Makefile"
+ (("INSTALL_DIR=~/.local/share/gnome-shell/extensions") (string-append "INSTALL_DIR=" (assoc-ref outputs "out") "/share/gnome-shell/extensions")))))
+ (delete 'configure))))
+ (native-inputs
+ `(("gettext" ,gettext-minimal)
+ ("glib:bin" ,glib "bin")))
+ (inputs
+ (list python))
+ (home-page "https://extensions.gnome.org/extension/906/sound-output-device-chooser")
+ (synopsis "simple selector to enabled selection of sound source and sink based on Gnome Control Center")
+ (description "This extension shows a list of sound output and input devices (similar to gnome sound settings) in the status menu below the volume slider. Various active ports like HDMI , Speakers etc. of the same device are also displayed for selection.")
+ (license license:gpl3)))
+
+(define-public gnome-shell-extension-transparent-window
+ (let ((revision "45")
+ (commit "cc9bc70c192dd565fa6f1d1b28d9a20f99684f2a"))
+ (package
+ (name "gnome-shell-extension-transparent-window")
+ (version (git-version "0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/pbxqdown/gnome-shell-extension-transparent-window")
+ (commit commit)))
+ (sha256
+ (base32 "1f9iqqjpmmylqz0ws8cy5rs475bwzi7jy44q9ip44ig2acz2wxzp"))))
+ (build-system copy-build-system)
+ (arguments
+ `(#:install-plan
+ `(("." "/share/gnome-shell/extensions/transparent-window <at> pbxqdown.github.com"))))
+ (home-page "https://github.com/pbxqdown/gnome-shell-extension-transparent-window")
+ (synopsis "Gnome shell extension which changes the opacity of window through mouse operation")
+ (description "The extension will change the opacity of window through simple mouse/keyboard operation.")
+ (license license:expat))))
+
(define-public arc-theme
(package
(name "arc-theme")
--
libgit2 1.4.3
[Message part 4 (text/html, inline)]
[Message part 5 (message/rfc822, inline)]
Am Freitag, dem 24.06.2022 um 08:39 +0000 schrieb Sughosha:
> Empty Message
Pushed 2-4 with some adjustments. I didn't push the first one, because
I couldn't find a free license in it.
Cheers
This bug report was last modified 3 years and 57 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.