summaryrefslogtreecommitdiff
path: root/pkgs/tmux-open/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tmux-open/default.nix')
-rw-r--r--pkgs/tmux-open/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/tmux-open/default.nix b/pkgs/tmux-open/default.nix
new file mode 100644
index 0000000..3d4f5ce
--- /dev/null
+++ b/pkgs/tmux-open/default.nix
@@ -0,0 +1,11 @@
+{
+ jq,
+ replaceVars,
+ sway,
+ tmux,
+ writeShellScriptBin,
+ ...
+}:
+writeShellScriptBin "tmux-open" (builtins.readFile (replaceVars ./tmux-open.sh {
+ inherit jq sway tmux;
+}))