initial commit

This commit is contained in:
davidovski 2021-10-09 22:20:41 +01:00
commit 01ced0b7ce
184 changed files with 35358 additions and 0 deletions

14
scripts/websearch Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
SEARCH_ENGINE="https://search.brave.com/search?q="
SEARCH_HISTORY=/tmp/.search_history
SEARCH=$(cat $SEARCH_HISTORY | dmenu -p "search")
touch $SEARCH_HISTORY
cat <<< "$SEARCH
$(cat $SEARCH_HISTORY)" > $SEARCH_HISTORY
brave "$SEARCH_ENGINE$SEARCH"