This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
bash_scripts/desktop/scripts_for_i3/search

20 lines
386 B
Bash

#!/bin/bash
if [ -f $HOME/.dmenurc ]; then
. $HOME/.dmenurc
else
DMENU='dmenu -nb '#151617' -nf '#d8d8d8' -sb '#d8d8d8' -sf '#151617''
fi
GS=`cat ~/.gshist | $DMENU $*`
[[ $GS = "" ]] && exit
if grep -q "$GS" "$HOME/.gshist" ; then
echo already exists in history
else
echo $GS >> ~/.gshist
fi
google-chrome-stable -new-window http://www.google.com/search?q="$GS"
exit 0