Migrates quick-zeal and spawn-term from compositor-specific APIs (hyprctl, kdotool, niri msg) to the unified active-window utility. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
6 lines
163 B
Nix
6 lines
163 B
Nix
{pkgs, ...}:
|
|
pkgs.writeShellApplication {
|
|
name = "quick-zeal";
|
|
runtimeInputs = [pkgs.harbor.active-window pkgs.jq];
|
|
text = builtins.readFile ./quick-zeal;
|
|
}
|