mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #104321 from magnetophon/i3altlayout
i3altlayout: init at 0.3
This commit is contained in:
commit
47680042d9
21
pkgs/applications/window-managers/i3/altlayout.nix
Normal file
21
pkgs/applications/window-managers/i3/altlayout.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -21654,6 +21654,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
Block a user