unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43751] [PATCH] Add emacs-frames-only-mode
@ 2020-10-01 20:54 marco.au.grassi98--- via Guix-patches via
  2020-10-02 10:50 ` marco.au.grassi98--- via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: marco.au.grassi98--- via Guix-patches via @ 2020-10-01 20:54 UTC (permalink / raw)
  To: 43751


[-- 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: 0001-gnu-Add-emacs-frames-only-mode.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-emacs-frames-only-mode.patch, Size: 1705 bytes --]

From 3275c713edeee831a06a2ddc9507c4236a05a446 Mon Sep 17 00:00:00 2001
From: AuPath <marco.au.grassi98@protonmail.com>
Date: Thu, 1 Oct 2020 22:46:32 +0200
Subject: [PATCH] gnu: Add emacs-frames-only-mode.

* gnu/packages/emacs-xyz.scm (emacs-frames-only-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e3ec431d94..280d05b12f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23076,6 +23076,28 @@ icon support, git integration, and several other utilities.")
 replicate some of the features of the Doom modeline package.")
     (license license:gpl2+)))
 
+(define-public emacs-frames-only-mode
+  (package
+    (name "emacs-frames-only-mode")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/davidshepherd7/frames-only-mode")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y0sdjixaxvywrlp2sw51wnczhk51q1svl5aghbk9rkxpwv9ys9v"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/davidshepherd7/frames-only-mode")
+    (synopsis "Better integration between Emacs and tiling window managers")
+    (description
+     "An Emacs global minor mode to use Emacs frames
+(i.e. operating system windows) instead of Emacs' internal windowing system.
+This combines particularly well with tiling window managers such as XMonad.")
+    (license license:gpl3+)))
+
 (define-public emacs-shrink-path
   (package
     (name "emacs-shrink-path")
-- 
2.28.0


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

* [bug#43751] [PATCH] Add emacs-frames-only-mode
  2020-10-01 20:54 [bug#43751] [PATCH] Add emacs-frames-only-mode marco.au.grassi98--- via Guix-patches via
@ 2020-10-02 10:50 ` marco.au.grassi98--- via Guix-patches via
  2020-10-04  9:29   ` Nicolas Goaziou
  0 siblings, 1 reply; 4+ messages in thread
From: marco.au.grassi98--- via Guix-patches via @ 2020-10-02 10:50 UTC (permalink / raw)
  To: 43751@debbugs.gnu.org


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

Sorry i forgot to add dependencies.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-emacs-frames-only-mode.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-emacs-frames-only-mode.patch, Size: 1774 bytes --]

From ae1901ff1e6ead63274312a26107c387f974fb93 Mon Sep 17 00:00:00 2001
From: AuPath <marco.au.grassi98@protonmail.com>
Date: Fri, 2 Oct 2020 12:43:24 +0200
Subject: [PATCH] gnu: Add emacs-frames-only-mode.

* gnu/packages/emacs-xyz.scm (emacs-frames-only-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e3ec431d94..e7bdeb0afa 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -23076,6 +23076,31 @@ icon support, git integration, and several other utilities.")
 replicate some of the features of the Doom modeline package.")
     (license license:gpl2+)))
 
+(define-public emacs-frames-only-mode
+  (package
+    (name "emacs-frames-only-mode")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/davidshepherd7/frames-only-mode")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y0sdjixaxvywrlp2sw51wnczhk51q1svl5aghbk9rkxpwv9ys9v"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-s" ,emacs-s)))
+    (home-page "https://github.com/davidshepherd7/frames-only-mode")
+    (synopsis "Use frames instead of Emacs windows")
+    (description
+     "An Emacs global minor mode to use Emacs frames
+(i.e. operating system windows) instead of Emacs' internal windowing system.
+This combines particularly well with tiling window managers such as XMonad.")
+    (license license:gpl3+)))
+
 (define-public emacs-shrink-path
   (package
     (name "emacs-shrink-path")
-- 
2.28.0


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

* [bug#43751] [PATCH] Add emacs-frames-only-mode
  2020-10-02 10:50 ` marco.au.grassi98--- via Guix-patches via
@ 2020-10-04  9:29   ` Nicolas Goaziou
  2020-11-01 10:07     ` bug#43751: " Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Goaziou @ 2020-10-04  9:29 UTC (permalink / raw)
  To: 43751; +Cc: marco.au.grassi98

Hello,

"marco.au.grassi98--- via Guix-patches" via <guix-patches@gnu.org>
writes:

> Subject: [PATCH] gnu: Add emacs-frames-only-mode.

I tweaked the description to make it start with a full sentence, and
applied your patch. Thank you.

Regards,
-- 
Nicolas Goaziou




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

* bug#43751: [PATCH] Add emacs-frames-only-mode
  2020-10-04  9:29   ` Nicolas Goaziou
@ 2020-11-01 10:07     ` Christopher Baines
  0 siblings, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2020-11-01 10:07 UTC (permalink / raw)
  To: 43751-done

[-- Attachment #1: Type: text/plain, Size: 366 bytes --]


Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

> Hello,
>
> "marco.au.grassi98--- via Guix-patches" via <guix-patches@gnu.org>
> writes:
>
>> Subject: [PATCH] gnu: Add emacs-frames-only-mode.
>
> I tweaked the description to make it start with a full sentence, and
> applied your patch. Thank you.

This does indeed look to have been pushed, so closing the bug.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2020-11-01 10:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-01 20:54 [bug#43751] [PATCH] Add emacs-frames-only-mode marco.au.grassi98--- via Guix-patches via
2020-10-02 10:50 ` marco.au.grassi98--- via Guix-patches via
2020-10-04  9:29   ` Nicolas Goaziou
2020-11-01 10:07     ` bug#43751: " Christopher Baines

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