startpage

Simple text centric startpage
Log | Files | Refs | README

commit 8f12fc786afce6bc6238584f93f8c481edbf8538
parent 51453ea1a9b9a0b262adc03352bc2c115a6349d3
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Fri, 31 Jul 2026 15:40:40 +0100

Default search to DDG instead of Google

Constant recaptcha is getting me down

Diffstat:
Mindex.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html @@ -305,7 +305,7 @@ runCommand(prefix, args); } else { const query = encodeURIComponent(inputValue); - window.open(`https://www.google.com/search?q=${query}`, "_self"); + window.open(`https://start.duckduckgo.com/?q=${query}`, "_self"); } }