sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

commit 28751c90251054efd873666263535ed7eb3d3f54
parent 93bf8e42e45eabf7866ffdee1429008f3e1534e2
Author: efe <efe@efe.kim>
Date:   Thu,  8 Nov 2018 14:15:54 -0500

[dmenu][scripts] add my own dmenu script

Diffstat:
Atools.suckless.org/dmenu/scripts/dmenu_websearch | 104+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mtools.suckless.org/dmenu/scripts/index.md | 1+
2 files changed, 105 insertions(+), 0 deletions(-)

diff --git a/tools.suckless.org/dmenu/scripts/dmenu_websearch b/tools.suckless.org/dmenu/scripts/dmenu_websearch @@ -0,0 +1,104 @@ +#!/bin/sh + +# title: dmenu_websearch +# license: CC0 +# author: Sunur Efe Vural <efe@efe.kim> + +# This is a simple shell script which spawns a browser-independent +# address bar. The dmenu_websearch bar can follow a URL, search the web, +# and read bookmarks from a bookmarks file. If the cursor is not focused +# to a web browser, it will open the URL or the search term with the +# default browser. If the cursor is focused to a browser, be it terminal +# or graphical, it will act as the address bar of that browser. + +# The reason of me writing this script is to have the same address bar +# for all browsers which allows me to have one simple bookmarks file and +# same address bar settings and behaviour for all browsers. w3m, links, +# lynx, dillo, etc. don't allow you to perform web searches with their +# built-in address bar. With dmenu_websearch bar I don't have to use +# their built-in address bars. Also having to enter a URL or search term +# without first openning a browser is convenient and faster. + + +# DEFINITIONS + +browser="$TERMINAL -e $BROWSERCLI" +homepage=$WWW_HOME +bookmarks_file=$HOME/.bookmarks +# The first line of the bookmarks file should have the monkey head +# (🐵). Following the monkey head it should have a URL per line. +# Bookmarks can be commented with `#`. Also, bookmarks can have names. +# If a bookmark has a name it should follow this format: `URL, "NAME"`. +search_engine="https://duckduckgo.com/lite/?q=%s" +# Alternative search engines: +# "https://duckduckgo.com/?q=%s" +# "https://duckduckgo.com/html/?q=%s" +# "https://www.startpage.com/do/search?query=%s" +# "https://google.com/search?q=%s" + + +# BODY OF THE SCRIPT + +openchoice() { + if [ "$windowid" != "notabrowser" ] + then xdotool key $keysequence type --delay 2 "$choice" ;\ + sleep 0.1 ; xdotool key Return + else $browser $choice + fi +} + +searchweb() { + choice=`echo $choice | sed 's/\ /+/g'` + choice=`echo $search_engine | sed "s/%s/$choice/"` + openchoice +} + +openhome() { + if [ "$homepage" = "" ] + then choice="https://duckduckgo.com" + else choice=$homepage + fi + openchoice +} + +windowid=`xprop -root _NET_ACTIVE_WINDOW | awk '{print $5}'` + +if [ "$windowid" != "" ] +then +processid=`xprop -id "$windowid" _NET_WM_PID | awk '{print $3}'` +termprocess=`pstree -Al "$processid" | awk -F "---" '{print $NF}'` +windowclass=`xprop -id "$windowid" WM_CLASS | grep -o '".*"'` +fi + +if echo "$windowclass $termprocess" | grep -i \ +"firefox\|chromium\|vivaldi\|opera\|chrome\|netsurf\|arora\|epiphany\ +\|midori\|dillo\|konqueror\|brave\|palemoon\|iceweasel\|icecat" +then keysequence="ctrl+l" +elif echo "$windowclass $termprocess" | grep -i "luakit\|qutebrowser\|uzbl" +then keysequence="o" +elif echo "$windowclass $termprocess" | grep -i "links\|lynx\|conkeror" +then keysequence="g" +elif echo "$windowclass $termprocess" | grep -i "w3m" +then keysequence="U" +else windowid=notabrowser +fi + +if [ "$browser" = "" ] +then browser="xdg-open" +fi + +pgrep -x dmenu && exit +choice=`grep -v "^#" $bookmarks_file\ + | dmenu -i -w $windowid -p "Enter URL or search term:"` || exit 1 +choice=`echo $choice | awk -F ", \"" '{ print $1 }'` + +if [ "$choice" = "🐵" ] +then openhome +elif echo "$choice" | grep -EZ\ + "^(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*\.onion" +then torsocks $browser $choice +elif echo "$choice" | grep -EZ\ + "^(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*" +then openchoice +else searchweb +fi diff --git a/tools.suckless.org/dmenu/scripts/index.md b/tools.suckless.org/dmenu/scripts/index.md @@ -26,3 +26,4 @@ Download dmenu_run alternative with command history * [dbdb.sh](dbdb.sh): dmenu-based directory browser * [via](https://github.com/xalexalex/via): simple dmenu-based launcher for apps, files, folders and shell commands +* [dmenu_websearch](dmenu_websearch): browser independent address bar