unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sughosha via Guix-patches via <guix-patches@gnu.org>
To: 56128@debbugs.gnu.org
Subject: [bug#56128] [PATCH] gnu: Add some gnome extensions
Date: Fri, 24 Jun 2022 08:39:20 +0000	[thread overview]
Message-ID: <rupH90q5mdy6Qyq3U-REHIBooaNvSXwkqOGAJD7dNLjQcJxAlOqT-UUKPTGKzZqznwXEWtc38Bpz6hGa1XO1Y9hW7b_Bx0o-v-J6ruFaG2Q=@proton.me> (raw)
In-Reply-To: <bl-ku5-zCxO6HF-iRmLKeLlE7JVAJGlmWmHN1F2By-UUlH4frqjdos3AeK6p7AGykzxnt5glNbLZ3FBCk50p7c4ULNYpne7H8cK9N2DBZ2g=@proton.me>


[-- Attachment #1.1: Type: text/plain, Size: 13 bytes --]

Empty Message

[-- Attachment #1.2: Type: text/html, Size: 24 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patch1.patch --]
[-- Type: text/x-patch; name=patch1.patch, Size: 2007 bytes --]

From 2af37e0bd6803f8be86106d4d795dce92d790e4a Mon Sep 17 00:00:00 2001
From: Sughosha <sughosha@proton.me>
Date: Wed, 22 Jun 2022 08:05:51 +0200
Subject: [PATCH 1/4] gnu: Add gnome-shell-extension-activities-icons

* gnu/packages/gnome-xyz.scm: Add gnome-shell-extension-activities-icons.
---
 gnu/packages/gnome-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 9e5d319291..4f4ac11f41 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -985,6 +985,29 @@ (define-public gnome-shell-extension-blur-my-shell
 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@fawtytoo"))))
+      (home-page "https://github.com/fawtytoo/activities-icons")
+      (synopsis "Activities Icons for GNOME Shell")
+      (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 arc-theme
   (package
     (name "arc-theme")
--
2.36.1

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: patch2.patch --]
[-- Type: text/x-patch; name=patch2.patch, Size: 2226 bytes --]

From f832d7a58538dec2216345c31eb22aa257f88594 Mon Sep 17 00:00:00 2001
From: Sughosha <sughosha@proton.me>
Date: Wed, 22 Jun 2022 08:07:21 +0200
Subject: [PATCH 2/4] gnu: Add gnome-shell-extension-radio

* gnu/packages/gnome-xyz.scm: Add gnome-shell-extension-radio.
---
 gnu/packages/gnome-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 4f4ac11f41..f91d59dd62 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1008,6 +1008,36 @@ (define-public gnome-shell-extension-activities-icons
        "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@hslbck.gmail.com"
+                         "/share/gnome-shell/extensions/"))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'glib-compile-schemas
+           (lambda _
+             (invoke "glib-compile-schemas" "radio@hslbck.gmail.com/schemas"))))))
+    (native-inputs `(("glib:bin" ,glib "bin")))
+    (home-page "https://github.com/hslbck/gnome-shell-extension-radio")
+    (synopsis "Internet radio for GNOME Shell")
+    (description
+     "This extension allows to browse, add and play internet radio streams.")
+    (license license:gpl3+)))
+
 (define-public arc-theme
   (package
     (name "arc-theme")
--
2.36.1

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: patch3.patch --]
[-- Type: text/x-patch; name=patch3.patch, Size: 2435 bytes --]

From f6090daf39b938440bc5381bfd53ffc69083f25f Mon Sep 17 00:00:00 2001
From: Sughosha <sughosha@proton.me>
Date: Wed, 22 Jun 2022 08:08:04 +0200
Subject: [PATCH 3/4] gnu: Add gnome-shell-extension-sound-output-device-chooser

* gnu/packages/gnome-xyz.scm: Add gnome-shell-extension-sound-output-device-chooser.
---
 gnu/packages/gnome-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index f91d59dd62..0c256c3187 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1038,6 +1038,40 @@ (define-public gnome-shell-extension-radio
      "This extension allows to browse, add and play 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=~/.*") (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 "Sound output chooser for GNOME Shell")
+    (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 arc-theme
   (package
     (name "arc-theme")
--
2.36.1

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #5: patch4.patch --]
[-- Type: text/x-patch; name=patch4.patch, Size: 2162 bytes --]

From 71a7b816831d2491297a5784612767d557fbd114 Mon Sep 17 00:00:00 2001
From: Sughosha <sughosha@proton.me>
Date: Wed, 22 Jun 2022 08:09:28 +0200
Subject: [PATCH 4/4] gnu: Add gnome-shell-extension-transparent-window

* gnu/packages/gnome-xyz.scm: Add gnome-shell-extension-transparent-window.
---
 gnu/packages/gnome-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 0c256c3187..7bf9d433e9 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1072,6 +1072,31 @@ (define-public gnome-shell-extension-sound-output-device-chooser
      "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@pbxqdown.github.com"))))
+      (home-page
+       "https://github.com/pbxqdown/gnome-shell-extension-transparent-window")
+      (synopsis "Change the opacity of windows in GNOME Shell")
+      (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")
--
2.36.1

  parent reply	other threads:[~2022-06-24  9:08 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-21 18:59 [bug#56128] [PATCH] gnu: Add some gnome extensions Sughosha via Guix-patches via
2022-06-21 19:52 ` Liliana Marie Prikler
2022-06-21 20:09 ` Maxime Devos
2022-06-22  6:19 ` [bug#56128] [PATCH 2/4] gnu: Add gnome-shell-extension-radio Sughosha via Guix-patches via
2022-06-22  6:19 ` [bug#56128] [PATCH 1/4] gnu: Add gnome-shell-extension-activities-icons Sughosha via Guix-patches via
2022-06-22 19:17   ` Liliana Marie Prikler
2022-06-22  6:20 ` [bug#56128] [PATCH 3/4] gnu: Add gnome-shell-extension-sound-output-device-chooser Sughosha via Guix-patches via
2022-06-22  6:21 ` [bug#56128] [PATCH 4/4] gnu: Add gnome-shell-extension-transparent-window Sughosha via Guix-patches via
2022-06-24  8:39 ` Sughosha via Guix-patches via [this message]
2022-06-26 15:13   ` bug#56128: [PATCH] gnu: Add some gnome extensions Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='rupH90q5mdy6Qyq3U-REHIBooaNvSXwkqOGAJD7dNLjQcJxAlOqT-UUKPTGKzZqznwXEWtc38Bpz6hGa1XO1Y9hW7b_Bx0o-v-J6ruFaG2Q=@proton.me' \
    --to=guix-patches@gnu.org \
    --cc=56128@debbugs.gnu.org \
    --cc=Sughosha@proton.me \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).