me
/
guix
Archived
1
0
Fork 0

gnu: Add i3-gaps.

* gnu/packages/wm.scm (i3-gaps): New variable.

Signed-off-by: Brett Gilio <brettg@gnu.org>
Co-authored-by: Brett Gilio <brettg@gnu.org>
master
Alexandru-Sergiu Marton 2019-12-23 20:18:05 -06:00 committed by Brett Gilio
parent 94cc994ee0
commit 88c9408070
No known key found for this signature in database
GPG Key ID: 672243C4A03F0EEE
1 changed files with 31 additions and 0 deletions

View File

@ -30,6 +30,7 @@
;;; Copyright © 2019 Evan Straw <evan.straw99@gmail.com>
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2019 Noodles! <nnoodle@chiru.no>
;;; Copyright © 2019 Alexandru-Sergiu Marton <brown121407@member.fsf.org>
;;;
;;; 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")