From b243c83c1f16592a15fa914ed80e6e16388f2fba Mon Sep 17 00:00:00 2001 From: noe Date: Sun, 17 Dec 2023 10:14:15 -0500 Subject: [PATCH] h-m/fish: ddg no redirect --- home-manager/features/fish.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/features/fish.nix b/home-manager/features/fish.nix index e7a3ddb..2c8fa22 100644 --- a/home-manager/features/fish.nix +++ b/home-manager/features/fish.nix @@ -6,9 +6,9 @@ functions = { ddg = '' if count $argv > /dev/null - ${pkgs.w3m}/bin/w3m +15 "https://lite.duckduckgo.com/lite?q=$argv" + ${pkgs.w3m}/bin/w3m +15 "https://lite.duckduckgo.com/lite?kd=-1&q=$argv" else - ${pkgs.w3m}/bin/w3m https://lite.duckduckgo.com + ${pkgs.w3m}/bin/w3m "https://lite.duckduckgo.com/lite?kd=-1" end ''; };