From 298feac9f9a4ab3426eae92f58b7c4ab76a4bccf Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Mon, 4 May 2026 18:57:17 -0400 Subject: move sxhkd to x11 config, update surf search --- scripts/surf_search.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/surf_search.nix (limited to 'scripts/surf_search.nix') diff --git a/scripts/surf_search.nix b/scripts/surf_search.nix new file mode 100644 index 0000000..233a121 --- /dev/null +++ b/scripts/surf_search.nix @@ -0,0 +1,17 @@ +{ pkgs }: +pkgs.writeShellApplication { + name = "surf_search"; + runtimeInputs = with pkgs; [ + dmenu + xprop + gnused + coreutils + ]; + text = builtins.readFile ( + pkgs.replaceVars ../dotfiles/surf/surf.sh { + dmenu = pkgs.dmenu; + xprop = pkgs.xprop; + gnused = pkgs.gnused; + coreutils = pkgs.coreutils; + } + );} -- cgit v1.3.1