blob: 3df1508ff769acbb69b2c96df02a935d0737f074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env bash
#
#
##
nmcli --ask --colors yes d wifi \
| fzf \
--ansi \
--header "^R: reload | ^M: activate" \
--header-lines 1 \
--reverse \
--delimiter '[[:space:]][[:space:]]+' \
--bind "enter:execute(nmcli --ask d wifi c {2})" \
--bind "ctrl-r:reload(nmcli --colors yes d wifi)"
|