diff options
| author | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
|---|---|---|
| committer | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
| commit | 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 (patch) | |
| tree | 2116c49a845dfc0945778f2aa3e2118d72be428b /.config/surfraw/elvi/opensuse | |
| parent | 8cc927e930d5b6aafe3e9862a61e81705479a1b4 (diff) | |
Added the relevent parts of the .config directory. Alss add ssh config
Diffstat (limited to '.config/surfraw/elvi/opensuse')
| -rwxr-xr-x | .config/surfraw/elvi/opensuse | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/surfraw/elvi/opensuse b/.config/surfraw/elvi/opensuse new file mode 100755 index 0000000..9cf9862 --- /dev/null +++ b/.config/surfraw/elvi/opensuse @@ -0,0 +1,29 @@ +https://software.opensuse.org/search +#!/bin/sh +# +# AUTHOR: V.G. Graffagnino +# +# DATE: Mon Aug 28 2017 +# +# DESC: Elvi to search opensuse packages +# elvis: opensuse -- Search Opensuse Software Catalog (https://software.opensuse.org/search) +#!/bin/sh +. surfraw || exit 1 + +w3_usage_hook () { + cat <<EOF +Usage: $w3_argv0 [options] [search words]... +Description: + Search Opensuse Software Catalog (https://software.opensuse.org/search) for applications +EOF + w3_global_usage +} + +w3_config +w3_parse_args "$@" +if test -z "$w3_args"; then + w3_browse_url "https://software.opensuse.org/search" +else + escaped_args=`w3_url_of_arg $w3_args` + w3_browse_url "https://software.opensuse.org/search?utf8=✓&q=${escaped_args}&search_devel=false&search_unsupported=false&baseproject=openSUSE%3ALeap%3A42.3" +fi |
