#!/bin/bash entry=`echo "... and search the web" | dmenu -b -fn "snap" -nb "#222222" -nf "#7D7D7D" -sb "#7D7D7D" -sf "#222222" -p "type a word..."` if test "X$entry" != "X"; then x-www-browser http://www.google.com/search?q="$entry" fi