blob: f7a3956cd23c9d307567ce2b6970cdc17ba0485c (
plain)
1
2
3
4
|
#!/bin/sh
regex='\(ipfs:\|ipns:\|magnet:\|mailto:\|gemini:\|gopher:\|https:\|http:\|news:\|file:\|git:\|ssh:\|ftp:\)[^\<>"{-}\^`]\+'
url="$(grep "$regex" | sort | uniq | dmenu -g 1 -l 10 -x -c)"
linkhandler $url
|