7 lines
175 B
Bash
Executable file
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 "$@"
|