guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add i3-gaps.


From: guix-commits
Subject: 01/01: gnu: Add i3-gaps.
Date: Mon, 23 Dec 2019 21:18:59 -0500 (EST)

brettgilio pushed a commit to branch master
in repository guix.

commit 88c9408070280db51d1a0e604b9ec77f1611ab3c
Author: Alexandru-Sergiu Marton <address@hidden>
Date:   Mon Dec 23 20:18:05 2019 -0600

    gnu: Add i3-gaps.
    
    * gnu/packages/wm.scm (i3-gaps): New variable.
    
    Signed-off-by: Brett Gilio <address@hidden>
    Co-authored-by: Brett Gilio <address@hidden>
---
 gnu/packages/wm.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 6c1919b..b03122d 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2019 Evan Straw <address@hidden>
 ;;; Copyright © 2019 Brett Gilio <address@hidden>
 ;;; Copyright © 2019 Noodles! <address@hidden>
+;;; Copyright © 2019 Alexandru-Sergiu Marton <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -331,6 +332,36 @@ i3 uses a plain-text configuration file, and can be 
extended and controlled from
 many programming languages.")
     (license license:bsd-3)))
 
+(define-public i3-gaps
+  (package (inherit i3-wm)
+           (name "i3-gaps")
+           (version "4.17.1")
+           (source (origin
+                     (method url-fetch)
+                     (uri (string-append
+                           "https://github.com/Airblader/i3/releases/download/";
+                           version "/i3-" version ".tar.bz2"))
+                     (sha256
+                      (base32
+                       
"0iazv2i2rgmakzh95pgj6iapyzn7bdpcbcd35a79mhlml4ry33qy"))))
+           (build-system gnu-build-system)
+           (home-page "https://github.com/Airblader/i3";)
+           (synopsis "Tiling window manager with gaps")
+           (description "i3-gaps is a fork of i3wm, a tiling window manager
+for X11.  It is kept up to date with upstream, adding a few additional
+features such as gaps between windows.
+
+i3 is a tiling X11 window manager that dynamically manages tiled, stacked,
+and tabbed window layouts.
+
+i3 primarily targets advanced users.  Windows are managed manually and
+organised inside containers, which can be split vertically or horizontally,
+and optionally resized.
+
+i3 uses a plain-text configuration file, and can be extended and controlled
+from many programming languages.")
+           (license license:bsd-3)))
+
 (define-public i3lock
   (package
     (name "i3lock")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]