diff options
| author | Deposite Pirate | 2025-01-26 06:39:37 +0100 |
|---|---|---|
| committer | Deposite Pirate | 2025-01-26 06:39:37 +0100 |
| commit | c9176eab5756f56ffb2dafb89495b62902ff90ba (patch) | |
| tree | 61ddda39c2709fa7628d8ea5766ca86f4dc6405c /functions/www.fish | |
| parent | 7eccc43affd86423c649c7ffd66ab0b21d429f8a (diff) | |
Fix starting browser.
modified: conf.d/05browser.fish
modified: functions/www.fish
modified: functions/wwwsearch.fish
Diffstat (limited to 'functions/www.fish')
| -rw-r--r-- | functions/www.fish | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/functions/www.fish b/functions/www.fish index 0ae1e86..9fb4074 100644 --- a/functions/www.fish +++ b/functions/www.fish @@ -1,8 +1,10 @@ function www --description "Browse the WWW" if test -z $argv - webbrowser &>/dev/null + $BROWSER &>/dev/null & + disown return end - webbrowser $argv &>/dev/null + $BROWSER $argv &>/dev/null & + disown end |
