Skip to content

Commit 0c5b95d

Browse files
committed
add the Clew search engine by @amin@alpha.polymaths.social
1 parent 30d00f7 commit 0c5b95d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

posix/profile-funcs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@ mj() {
8383
${BROWSER:-lynx} "https://www.mojeek.com/search?theme=dark&hp=minimal&t=40&si=1&lang=en&lb=&arc=none&autocomp=0&qsbu=1&qsba=0&qss[]=Bing&qss[]=Brave&qss[]=DuckDuckGo&qss[]=Ecosia&qss[]=Gigablast&qss[]=Google&qss[]=Startpage&qss[]=Yandex&date=1&cdate=1&size=1&tlen=256&dlen=512&rp_i=0&spell=1&newtab=1&ib=1&tn=3&ref=0&reg=&site=&qm=&q=$_q"
8484
}
8585

86+
# Clew Search
87+
clew() {
88+
local _q _IFS
89+
90+
_IFS=$IFS
91+
IFS=+
92+
_q="$*"
93+
IFS=$_IFS
94+
${BROWSER:-lynx} "https://clew.se/search?q=$_q"
95+
}
96+
8697
# DuckDuckGo search
8798
ddg() {
8899
local _q _IFS _p=/ _a=

0 commit comments

Comments
 (0)