swtchr 0.1.3

A Gnome-style window switcher for the Sway window manager
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
  pkgs = import nixpkgs { config = {}; overlays = []; };
in

pkgs.mkShell {
  nativeBuildInputs = with pkgs.buildPackages; [ 
    gtk4
    gtk4-layer-shell
    pkg-config
    librsvg
  ];
}