all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "\(unmatched-parenthesis via Guix-patches" via <guix-patches@gnu.org>
To: 53444@debbugs.gnu.org
Cc: "\(unmatched-parenthesis" <paren@disroot.org>
Subject: [bug#53444] [PATCH 3/3] gnu: Add i3-autotiling
Date: Sat, 22 Jan 2022 11:47:24 +0000	[thread overview]
Message-ID: <20220122114722.21774-3-paren@disroot.org> (raw)
In-Reply-To: <20220122114722.21774-1-paren@disroot.org>

* gnu/packages/wm.scm(i3-autotiling): New variable.
---
 gnu/packages/wm.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index c791bcf44e..9b473b22b1 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -121,6 +121,7 @@ (define-module (gnu packages wm)
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-crypto)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages readline)
@@ -564,6 +565,32 @@ (define-public python-i3ipc
 
 (define-public python2-i3ipc
   (package-with-python2 python-i3ipc))
+
+(define-public i3-autotiling
+  (package
+   (name "i3-autotiling")
+   (version "1.6")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+	   (url "https://github.com/nwg-piotr/autotiling")
+	   (commit (string-append "v" version))))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32
+       "1hjlvg7095s322gb43r9g7mqlsy3pj13l827jpnbn5x0918rq9rr"))))
+   (build-system python-build-system)
+   (arguments
+    ;; TODO: Fix tests
+    '(#:tests? #f))
+   (propagated-inputs
+    (list python-i3ipc python-setuptools python-wheel))
+   (home-page "https://github.com/nwg-piotr/autotiling")
+   (synopsis "Automatic layout tiling for i3wm and sway.")
+   (description "This package uses @code{python-i3ipc} to control the tiling of i3wm and sway. It automatically switches between horizontal and vertical layouts to make the best use of space without human intervention.")
+   (license license:gpl3+)))
+
 (define-public qtile
   (package
     (name "qtile")
-- 
2.34.0





  parent reply	other threads:[~2022-01-22 12:28 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-22 11:47 [bug#53444] [PATCH 1/3] gnu: Add python-i3ipc (unmatched-parenthesis via Guix-patches via
2022-01-22 11:47 ` [bug#53445] [PATCH 2/3] gnu: Add python2-i3ipc (unmatched-parenthesis via Guix-patches via
2022-01-22 14:30   ` Maxime Devos
2022-01-24 14:32   ` bug#53445: " zimoun
2022-01-22 11:47 ` (unmatched-parenthesis via Guix-patches via [this message]
2022-09-25 20:26 ` bug#53444: [PATCH 1/3] gnu: Add python-i3ipc Björn Höfling

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220122114722.21774-3-paren@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=53444@debbugs.gnu.org \
    --cc=paren@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.