summaryrefslogtreecommitdiff
path: root/examples/scheme_handler
blob: 7901bf4fa928d3b7cd3893e448d6f11e8a8984f7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# The environment variables DWB_URI, DWB_SCHEME, DWB_COOKIES, DWB_USER_AGENT and
# DWB_REFERER can be used

case ${DWB_SCHEME} in 
  mailto) xterm -e "mutt ${DWB_URI}";;
  ftp) xterm -e "ncftp ${DWB_URI}";;
  *) xdg-open ${DWB_URI}
esac