diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-06-10 19:34:16 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-06-10 19:34:16 +0200 |
| commit | 0cc44eff220e8064524e1894272c0da289386b1e (patch) | |
| tree | e0082d9f5bb9ce6a0df1e07244820e9e6cd810fa /dmenu-bookmarks | |
| parent | e8f7d8838d23892cadb52aaa0c1fbd26d0c7b55a (diff) | |
| download | scripts-0cc44eff220e8064524e1894272c0da289386b1e.tar.gz scripts-0cc44eff220e8064524e1894272c0da289386b1e.zip | |
Added dmenu-bookmarks
Diffstat (limited to 'dmenu-bookmarks')
| -rwxr-xr-x | dmenu-bookmarks | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dmenu-bookmarks b/dmenu-bookmarks new file mode 100755 index 0000000..83f17bd --- /dev/null +++ b/dmenu-bookmarks | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # A bookmark browser based on dmenu | ||
| 4 | |||
| 5 | # Requires: dmenu-filepicker, open-url | ||
| 6 | |||
| 7 | dir=$XDG_DATA_HOME/bookmarks | ||
| 8 | |||
| 9 | cat $(dmenu-filepicker "$dir") | xargs open-url | ||
