diff options
Diffstat (limited to 'functions/wwws.fish')
| -rw-r--r-- | functions/wwws.fish | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/functions/wwws.fish b/functions/wwws.fish new file mode 100644 index 0000000..8e70f1e --- /dev/null +++ b/functions/wwws.fish @@ -0,0 +1,10 @@ +function wwws --description "Search on the WWW" + if test -z $argv + $BROWSER $WEBSEARCH &>/dev/null & + disown + return + end + + $BROWSER "$WEBSEARCH/$argv" &>/dev/null & + disown +end |
