1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: i3-autotiling: Move to (gnu packages wm).

* gnu/packages/python-xyz.scm (i3-autotiling): Move from here ...
* gnu/packages/wm.scm (i3-autotiling): ... to here.

Change-Id: Ifcff8892901c4791b7e349e46243aebc61e60210
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-11-22 19:16:55 +01:00
committed by Sharlatan Hellseher
parent 8dbfb0202b
commit f832d16f02
2 changed files with 24 additions and 24 deletions

View File

@@ -35614,30 +35614,6 @@ compatible with BibTeX's own parser.")
;; package does not contain any generated files.
(license license:expat))))
(define-public i3-autotiling
(package
(name "i3-autotiling")
(version "1.9.3")
(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 "0ag3zz4r3cwpj769m2aw3l8yj93phsydzfz02dig5z81cc025rck"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #f)) ;no tests
(native-inputs (list python-setuptools))
(propagated-inputs (list python-i3ipc))
(home-page "https://github.com/nwg-piotr/autotiling")
(synopsis "Automatically tile windows in i3 and Sway")
(description
"Script for Sway and i3 to automatically switch the horizontal/vertical
window split orientation.")
(license license:gpl3)))
(define-public python-cyclic
(package
(name "python-cyclic")

View File

@@ -526,6 +526,30 @@ not hogging your CPU as much as spawning the corresponding amount of shell
commands would.")
(license license:bsd-3)))
(define-public i3-autotiling
(package
(name "i3-autotiling")
(version "1.9.3")
(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 "0ag3zz4r3cwpj769m2aw3l8yj93phsydzfz02dig5z81cc025rck"))))
(build-system pyproject-build-system)
(arguments (list #:tests? #f)) ;no tests
(native-inputs (list python-setuptools))
(propagated-inputs (list python-i3ipc))
(home-page "https://github.com/nwg-piotr/autotiling")
(synopsis "Automatically tile windows in i3 and Sway")
(description
"Script for Sway and i3 to automatically switch the horizontal/vertical
window split orientation.")
(license license:gpl3)))
(define-public i3-wm
(package
(name "i3-wm")