diff options
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | bookmarks | 3 | ||||
-rwxr-xr-x | dmenu_browse | 4 |
3 files changed, 11 insertions, 0 deletions
@@ -18,3 +18,7 @@ viewhtml https://github.com/ray2501/tclgumbo http://tkimg.sourceforge.net/ https://github.com/auriocus/tksvg + +dmenu_browse + Simple wrapper for browse utility to show an example of integrating the utilities with other tools. + diff --git a/bookmarks b/bookmarks new file mode 100644 index 0000000..df71ff4 --- /dev/null +++ b/bookmarks @@ -0,0 +1,3 @@ +https://ignore.pl/ +https://swtch.com/ + diff --git a/dmenu_browse b/dmenu_browse new file mode 100755 index 0000000..fb98e43 --- /dev/null +++ b/dmenu_browse @@ -0,0 +1,4 @@ +#!/bin/sh +if URL=$(dmenu -p "Browse:" <bookmarks); then + ./browse $URL +fi |