all repos — dotfiles @ f158d1fa05f036a187d999c2555d19b322d5ce21

my *nix dotfiles

bin/durl (view raw)

 1#!/usr/bin/env bash
 2
 3regex='(https?|ftp|mailto)://[-A-Za-z0-9\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\+&@#/%=~_|]'
 4url=$(grep -Eo "$regex" | dmenu -p "url:" -w "$WINDOWID" | tr -d '\n')
 5[[ "$url" = "" ]] && exit
 6
 7if [[ "$(pgrep vimb)" != "" ]]; then
 8    vimb -e $(</tmp/tabbed.xid) "$url" &
 9else
10    firefox --new-tab "$url"
11fi