dotfiles/wrappers/surf
2023-10-15 08:58:10 -06:00

7 lines
175 B
Bash
Executable file

#!/bin/sh
# Open 'surf' browser with tabbed
HOME=$HOME/.local/share/surf
mkdir -p "$HOME"
exec tabbed -c /usr/bin/surf -e "$@" || exec tabbed -c /usr/local/bin/surf -e "$@"