unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#60700] [PATCH] gnu: Add gnome-shell-extension-fly-pie
@ 2023-01-10  1:23 phodina via Guix-patches via
  2023-01-10  5:19 ` Liliana Marie Prikler
  0 siblings, 1 reply; 2+ messages in thread
From: phodina via Guix-patches via @ 2023-01-10  1:23 UTC (permalink / raw)
  To: 60700; +Cc: monego@posteo.net, Liliana Marie Prikler


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

Hi,

this patch adds Fly Pie Gnome Shell extension which provides alternative way around menus.

However, I have been unable to get the settings working - they never launch. Maybe somebody will
know what's missing :-)

----
Petr

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-gnome-shell-extension-fly-pie.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-gnome-shell-extension-fly-pie.patch, Size: 2561 bytes --]

From e224a0d30f73970d1d43cdc01dec10761940695a Mon Sep 17 00:00:00 2001
From: Petr Hodina <phodina@protonmail.com>
Date: Tue, 10 Jan 2023 01:59:08 +0100
Subject: [PATCH] gnu: Add gnome-shell-extension-fly-pie.

* gnu/packages/gnome-xyz.scm (gnome-shell-extension-fly-pie): New variable.

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 0f3b6b6f43..c5b5d49e45 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -1090,6 +1090,46 @@ (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-fly-pie
+  (package
+    (name "gnome-shell-extension-fly-pie")
+    (version "17")
+    (home-page "https://github.com/Schneegans/Fly-Pie")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url home-page)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0ifkqlg2bp2vz2abakghv3zqkay0gzfljp9y252b6kpnm3fh4wvw"))))
+    (build-system copy-build-system)
+    (arguments
+     `(#:install-plan '(("."
+                         "share/gnome-shell/extensions/flypie@schneegans.github.com"
+                         #:include-regexp ("\\.js(on)?$" "\\.css$"
+                                           "\\.ui$"
+                                           "\\.png$"
+                                           "\\.xml$"
+                                           "\\.compiled$"
+                                           "\\.gresource$")))
+       #:phases (modify-phases %standard-phases
+                  (add-before 'install 'compile-resources
+                    (lambda _
+                      (invoke "make" "resources/flypie.gresource")))
+                  (add-before 'install 'compile-schemas
+                    (lambda _
+                      (with-directory-excursion "schemas"
+                        (invoke "glib-compile-schemas" ".")))))))
+    (native-inputs (list `(,glib "bin") gettext-minimal))
+    (synopsis "Fly-Pie is an innovative marking menu written as a GNOME Shell
+extension")
+    (description
+     "Unite is a GNOME Shell extension which lets you launch applications,
+simulate hotkeys, open URLs using seamless marking menu.")
+    (license license:expat)))
+
 (define-public gnome-shell-extension-radio
   (package
     (name "gnome-shell-extension-radio")
-- 
2.38.1


[-- Attachment #3: Screenshot from 2023-01-09 18-30-59.png --]
[-- Type: image/png, Size: 142407 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#60700] [PATCH] gnu: Add gnome-shell-extension-fly-pie
  2023-01-10  1:23 [bug#60700] [PATCH] gnu: Add gnome-shell-extension-fly-pie phodina via Guix-patches via
@ 2023-01-10  5:19 ` Liliana Marie Prikler
  0 siblings, 0 replies; 2+ messages in thread
From: Liliana Marie Prikler @ 2023-01-10  5:19 UTC (permalink / raw)
  To: phodina, 60700; +Cc: monego@posteo.net

Am Dienstag, dem 10.01.2023 um 01:23 +0000 schrieb phodina:
> Hi,
> 
> this patch adds Fly Pie Gnome Shell extension which provides
> alternative way around menus.
> 
> However, I have been unable to get the settings working - they never
> launch. Maybe somebody will know what's missing :-)
Haven't looked at it in detail, but I'm pretty sure it's libadwaita. 
There are some gjs-based apps, that have been wrapped to get their GI
libraries, but so far none of them are extensions.  Perhaps we should
make this one an example?

Cheers




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-10  5:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-10  1:23 [bug#60700] [PATCH] gnu: Add gnome-shell-extension-fly-pie phodina via Guix-patches via
2023-01-10  5:19 ` Liliana Marie Prikler

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).