i3altlayout: init at 0.3
This commit is contained in:
parent
43f09cbd6d
commit
36118d4a9d
|
@ -0,0 +1,21 @@
|
||||||
|
{ lib, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "i3altlayout";
|
||||||
|
version = "0.3";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1h0phf3s6ljffxw0bs73k041wildaz01h37iv5mxhami41wrh4qf";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonPath = with python3Packages; [ enum-compat i3ipc docopt ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
maintainers = with maintainers; [ magnetophon ];
|
||||||
|
description = "Helps you handle more efficiently your screen real estate in i3wm by auto-splitting windows on their longest side";
|
||||||
|
homepage = "https://github.com/deadc0de6/i3altlayout";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -21223,6 +21223,8 @@ in
|
||||||
|
|
||||||
i3-gaps = callPackage ../applications/window-managers/i3/gaps.nix { };
|
i3-gaps = callPackage ../applications/window-managers/i3/gaps.nix { };
|
||||||
|
|
||||||
|
i3altlayout = callPackage ../applications/window-managers/i3/altlayout.nix { };
|
||||||
|
|
||||||
i3-easyfocus = callPackage ../applications/window-managers/i3/easyfocus.nix { };
|
i3-easyfocus = callPackage ../applications/window-managers/i3/easyfocus.nix { };
|
||||||
|
|
||||||
i3-layout-manager = callPackage ../applications/window-managers/i3/layout-manager.nix { };
|
i3-layout-manager = callPackage ../applications/window-managers/i3/layout-manager.nix { };
|
||||||
|
|
Loading…
Reference in New Issue