mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-20 05:13:25 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
|
@ -5,33 +5,33 @@
|
|||
|
||||
_nmcli_list()
|
||||
{
|
||||
COMPREPLY=( $( compgen -W '$1' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W '$1' -- "$cur") )
|
||||
}
|
||||
|
||||
_nmcli_con_id()
|
||||
{
|
||||
local IFS=$'\n'
|
||||
COMPREPLY=( $( compgen -W "$(nmcli con list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $1 }')" -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W "$(nmcli con list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $1 }')" -- "$cur") )
|
||||
}
|
||||
|
||||
_nmcli_con_uuid()
|
||||
{
|
||||
COMPREPLY=( $( compgen -W "$(nmcli con list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $2}')" -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W "$(nmcli con list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $2}')" -- "$cur") )
|
||||
}
|
||||
|
||||
_nmcli_ap_ssid()
|
||||
{
|
||||
local IFS=$'\n'
|
||||
COMPREPLY=( $( compgen -W "$(nmcli dev wifi list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $1}')" -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W "$(nmcli dev wifi list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $1}')" -- "$cur") )
|
||||
}
|
||||
|
||||
_nmcli_ab_bssid()
|
||||
{
|
||||
COMPREPLY=( $( compgen -W "$(nmcli dev wifi list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $2}')" -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W "$(nmcli dev wifi list 2>/dev/null | \
|
||||
tail -n +2 | awk -F ' {2,}' '{print $2}')" -- "$cur") )
|
||||
}
|
||||
|
||||
_nmcli()
|
||||
|
@ -41,11 +41,11 @@ _nmcli()
|
|||
|
||||
case $prev in
|
||||
-m|--mode)
|
||||
COMPREPLY=( $( compgen -W 'tabular multiline' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'tabular multiline' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
-f|--fields)
|
||||
COMPREPLY=( $( compgen -W 'all common' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'all common' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
-e|--escape)
|
||||
|
@ -74,12 +74,12 @@ _nmcli()
|
|||
;;
|
||||
esac
|
||||
|
||||
if [[ $cword -eq 1 ]] ; then
|
||||
if [[ $cword -eq 1 ]]; then
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '--terse --pretty --mode --fields
|
||||
--escape --version --help' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W '--terse --pretty --mode --fields
|
||||
--escape --version --help' -- "$cur") )
|
||||
else
|
||||
COMPREPLY=( $( compgen -W "nm con dev" -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W "nm con dev" -- "$cur") )
|
||||
fi
|
||||
else
|
||||
local object=${words[1]}
|
||||
|
@ -110,50 +110,50 @@ _nmcli()
|
|||
;;
|
||||
esac
|
||||
|
||||
COMPREPLY=( $( compgen -W 'status permissions enable sleep
|
||||
wifi wwan wimax' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'status permissions enable sleep
|
||||
wifi wwan wimax' -- "$cur") )
|
||||
;;
|
||||
con)
|
||||
case $command in
|
||||
list)
|
||||
COMPREPLY=( $( compgen -W 'id uuid' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'id uuid' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
up)
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '--nowait --timeout' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W '--nowait --timeout' \
|
||||
-- "$cur") )
|
||||
else
|
||||
COMPREPLY=( $( compgen -W 'id uuid iface ap nsp' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'id uuid iface ap nsp' \
|
||||
-- "$cur") )
|
||||
fi
|
||||
return
|
||||
;;
|
||||
down)
|
||||
COMPREPLY=( $( compgen -W 'id uuid' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'id uuid' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
delete)
|
||||
COMPREPLY=( $( compgen -W 'id uuid' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'id uuid' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
COMPREPLY=( $( compgen -W 'list status up down delete' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'list status up down delete' \
|
||||
-- "$cur") )
|
||||
;;
|
||||
dev)
|
||||
case $command in
|
||||
list)
|
||||
COMPREPLY=( $( compgen -W 'iface' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'iface' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
disconnect)
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '--nowait --timeout' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W '--nowait --timeout' \
|
||||
-- "$cur") )
|
||||
else
|
||||
COMPREPLY=( $( compgen -W 'iface' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'iface' -- "$cur") )
|
||||
fi
|
||||
return
|
||||
;;
|
||||
|
@ -162,34 +162,34 @@ _nmcli()
|
|||
|
||||
case $subcommand in
|
||||
list)
|
||||
COMPREPLY=( $( compgen -W 'iface bssid' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'iface bssid' \
|
||||
-- "$cur") )
|
||||
return
|
||||
;;
|
||||
connect)
|
||||
if [[ "$cur" == -* ]]; then
|
||||
COMPREPLY=( $( compgen -W '--private
|
||||
--nowait --timeout' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W '--private
|
||||
--nowait --timeout' -- "$cur") )
|
||||
else
|
||||
if [[ "$prev" == "connect" ]]; then
|
||||
_nmcli_ap_ssid
|
||||
else
|
||||
COMPREPLY=( $( compgen -W 'password
|
||||
COMPREPLY=( $(compgen -W 'password
|
||||
wep-key-type iface bssid name' \
|
||||
-- "$cur" ) )
|
||||
-- "$cur") )
|
||||
fi
|
||||
fi
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
COMPREPLY=( $( compgen -W 'list connect' -- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'list connect' -- "$cur") )
|
||||
return
|
||||
;;
|
||||
esac
|
||||
|
||||
COMPREPLY=( $( compgen -W 'status list disconnect wifi' \
|
||||
-- "$cur" ) )
|
||||
COMPREPLY=( $(compgen -W 'status list disconnect wifi' \
|
||||
-- "$cur") )
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue