summaryrefslogtreecommitdiff
path: root/pkgs/tmux-open/default.nix
blob: e2c799c085a68783f7cebcda09dcfb231d7cc388 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ jq
, substituteAll
, sway
, tmux
, writeShellScriptBin
, ...
}:
writeShellScriptBin "tmux-open" (builtins.readFile (substituteAll {
  src = ./tmux-open.sh;
  env = { inherit jq sway tmux; };
}))