From 621739c63f132115ee923da7bb61ff87844345f4 Mon Sep 17 00:00:00 2001 From: Ivan Vilata-i-Balaguer Date: Wed, 14 Sep 2016 11:00:25 +0200 Subject: [PATCH 2/2] gnu: python: Add i3-quickswitch. * gnu/packages/python.scm (i3-quickswitch): New variable. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1691449..c032e8d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -76,6 +76,7 @@ #:use-module (gnu packages readline) #:use-module (gnu packages sdl) #:use-module (gnu packages statistics) + #:use-module (gnu packages suckless) #:use-module (gnu packages tex) #:use-module (gnu packages texinfo) #:use-module (gnu packages tls) @@ -9037,6 +9038,31 @@ subscribe to events.") (define-public python2-i3 (package-with-python2 python-i3)) +(define-public i3-quickswitch + (package + (name "i3-quickswitch") + (version "2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "quickswitch-i3" version)) + (sha256 + (base32 + "00k2gjrq7krzaf3b1r8snqjqa1sjnb3i3yvik165d3nj2sf5wypm")))) + (build-system python-build-system) + ;; No tests yet. + (arguments '(#:tests? #f)) + (propagated-inputs + `(("python-i3" ,python-i3) + ("dmenu" ,dmenu))) + (home-page "https://github.com/proxypoke/quickswitch-for-i3") + (synopsis "Quickly change to and locate windows in the i3 window manager") + (description "This utility for the i3 window manager allows you to quickly +switch to and locate windows on all your workspaces, using an interactive +dmenu prompt. It has since gained a lot of other functionality to make +working with i3 even more efficient.") + (license (license:non-copyleft "http://www.wtfpl.net/txt/copying/")))) + (define-public python-py3status (package (name "python-py3status") -- 2.10.0