From 9593f16875a5ca924c78e993e7878ec161a63040 Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 28 Dec 2025 20:32:38 -0600 Subject: [PATCH] add(hypr): terminal launcher --- apps/hyprland/scripts/terminal.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 apps/hyprland/scripts/terminal.nix diff --git a/apps/hyprland/scripts/terminal.nix b/apps/hyprland/scripts/terminal.nix new file mode 100644 index 0000000..e0d3899 --- /dev/null +++ b/apps/hyprland/scripts/terminal.nix @@ -0,0 +1,9 @@ +{pkgs, ...}: let + hakase-terminal-launch = + pkgs.writeShellScriptBin "hakase-terminal-launch" '' + ''; +in { + home.packages = [ + hakase-terminal-launch + ]; +}