summaryrefslogtreecommitdiff
path: root/scripts/.local/bin/search
blob: f2974d4aff905ff2380d03e5d45482e620425515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

SEARCH=$( : | dmenu -i -p "Search: ")

if [ "$SEARCH" != "" ]; then
	case $BROWSER in
		firefox)
			"$BROWSER" --search "$SEARCH"
			;;
		*)
			"$BROWSER" "$SEARCH"
	esac
fi