1 { lib, fetchFromGitHub, rustPlatform, libxcb, python3 }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-Mq4TpQDiIYePUS3EwBfOe2+QmvF6+WEDK12WahbuhSU=";
14 cargoHash = "sha256-hybvzHwHM0rQwgZfQpww/w9wQDW5h9P2KSjpAScVTBo=";
16 nativeBuildInputs = [ python3 ];
17 buildInputs = [ libxcb ];
23 mainProgram = "i3wsr";
24 description = "Automatically change i3 workspace names based on their contents";
26 Automatically sets the workspace names to match the windows on the workspace.
27 The chosen name for a workspace is a user-defined composite of the WM_CLASS X11
28 window property for each window in a workspace.
30 homepage = "https://github.com/roosta/i3wsr";
31 license = licenses.mit;
32 maintainers = [ maintainers.sebbadk ];