[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-frames-only-mode.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-frames-only-mode. |
Date: |
Sun, 04 Oct 2020 05:29:47 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 22b7b79 gnu: Add emacs-frames-only-mode.
22b7b79 is described below
commit 22b7b79fa0abe026d1223b92e55319d394306352
Author: AuPath <marco.au.grassi98@protonmail.com>
AuthorDate: Fri Oct 2 12:43:24 2020 +0200
gnu: Add emacs-frames-only-mode.
* gnu/packages/emacs-xyz.scm (emacs-frames-only-mode): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
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 a7c99d1..a64971b 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
+ "This is an Emacs global minor mode to use Emacs frames 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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-frames-only-mode.,
guix-commits <=