7 lines
77 B
Bash
Executable file
7 lines
77 B
Bash
Executable file
#!/bin/sh
|
|
|
|
bm="$(menu-bookmarks)"
|
|
|
|
if [ -n "$bm" ]; then
|
|
xdg-open "$bm"
|
|
fi
|