diff options
-rwxr-xr-x | fzf-url.sh | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -13,6 +13,8 @@ if hash xdg-open &>/dev/null; then open_cmd='nohup xdg-open' elif hash open &>/dev/null; then open_cmd='open' +elif [[ -v BROWSER ]]; then + open_cmd="$BROWSER" fi content="$(tmux capture-pane -J -p)" |