-
Notifications
You must be signed in to change notification settings - Fork 2
/
.bash_funs.sh
307 lines (271 loc) · 8.05 KB
/
.bash_funs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#! /bin/env bash
# Copy the bibtex entry for a given DOI
#
# example:
# $ doi 10.7717/peerj.4152
function doi(){ curl -LH "Accept: text/bibliography; style=bibtex" "http://doi.org/$1" \
| sed -r -e 's/([^A-Za-z]), /\1,\n/g' \
| (xclip -selection clipboard 2> /dev/null || pbcopy); }
export -f doi
# shruggie
# Source: https://twitter.com/climagic/status/672862397015658496
function shrug(){ echo -n "¯\_(ツ)_/¯" \
| (xclip -selection clipboard 2> /dev/null || pbcopy); echo "¯\_(ツ)_/¯ copied to your clipboard"; }
export -f shrug
# strollie
function stroll(){ echo -n "ᕕ( ᐛ )ᕗ" \
| (xclip -selection clipboard 2> /dev/null || pbcopy); echo "ᕕ( ᐛ )ᕗ copied to your clipboard"; }
export -f stroll
# flippy
function flip(){ echo -n "(╯°□°)╯︵ ┻━┻" \
| (xclip -selection clipboard 2> /dev/null || pbcopy); echo "(╯°□°)╯︵ ┻━┻ copied to your clipboard"; }
export -f flip
# clone high reference
function jkl { echo -n "(屮゚Д゚)屮" \
| (xclip -selection clipboard 2> /dev/null || pbcopy); echo "(屮゚Д゚)屮 copied to your clipboard"; }
export -f jkl
# ಠ_ಠ
function concern { echo -n "ಠ_ಠ" \
| (xclip -selection clipboard 2> /dev/null || pbcopy); echo "ಠ_ಠ copied to your clipboard"; }
export -f concern
# quick way to view csv files
function csv { column -s, -t < "$1" | less -#2 -N -S; }
export -f csv
# template for a notes repository
function getnotes { curl -L https://api.github.com/repos/zkamvar/notes-template/tarball \
| tar --strip-components=1 -xzv \
--exclude=README.md \
--exclude=LICENSE \
--exclude=flow.png \
--exclude=.gitignore; }
export -f getnotes
# set theme
function theme() {
kitty +kitten themes
if [[ $(black_cat) -eq 0 ]]; then
export BAT_THEME="Zenburn"
else
export BAT_THEME="Monokai Extended Light"
fi
}
export -f theme
function black_cat () {
local bg
bg=$( kitty @ --to="${KITTY_LISTEN_ON}" get-colors | grep '^background' | awk '{print $2}' )
echo "$( luminance "${bg}" ) > 0.228" | bc -l
}
export -f black_cat
# https://stackoverflow.com/a/56678483/2752888
function luminance () {
local hex="${1/\#/}" # remove leading hash
local r g b
r=$( sRGBtoLIN "${hex:0:2}" )
g=$( sRGBtoLIN "${hex:2:2}" )
b=$( sRGBtoLIN "${hex:4:2}" )
echo "${r} * 0.2126 + ${g} * 0.7152 + ${b} * 0.0722" | bc -l
}
export -f luminance
function sRGBtoLIN () {
# convert hex to decimal
local in=$((16#${1}))
# convert to fraction
local v
v=$( echo "${in}/255" | bc -l )
# linearize based on perception threshold.
local thresh
thresh=$( echo "${v} < 0.04045" | bc -l )
if [ "${thresh}" -eq 1 ]; then
v=$(echo "${v}/12.92" | bc -l)
else
# bc gives a weird warning of "non-zero scale in exponent" when trying to
# parse a decimal or negative exponent. The solution is:
#
# e(l(2) * 2.5) == 2^2.5
#
# I would link the page I got it from but yeesh, there was a banner that
# was espousing conspiracy theories
v=$( echo "e(l((${v} + 0.055)/1.055) * 2.4)" | bc -l )
fi
echo "$v"
}
export -f sRGBtoLIN
# Provide an interface to toggle VPN on and off.
function vpn () {
local switch="${1:-none}"
local con="${2:-none}"
local active
active=$( vpn_active )
# cli switching on of VPN: https://askubuntu.com/a/57409/853075
# disabling ipv6 on linux: https://support.vyprvpn.com/hc/en-us/articles/360038553552-How-do-I-disable-IPv6-on-Linux-
case "${switch}" in
"none"|"list"|"help")
echo "Connect to a VPN network and disable IPv6 defaults"
echo "=================================================="
echo
echo "A lot of VPN managers do not support IPv6, which causes your IPv6"
echo "address to be exposed to entities like Google, so it's necessary"
echo "to disable the IPv6 defaults before turning on a VPN."
echo
echo "Use <https://test-ipv6.com/simple_test.html> to test that IPv6 is"
echo "disabled after turning on the VPN."
echo
echo "Usage:"
echo
echo "vpn [on|off|list|help] [NAME]"
echo
echo "Arguments:"
echo
echo " on|off|list|help turn the vpn on, off, or print help with"
echo " a list of available networks and exit"
echo " NAME name of the VPN to use"
echo
echo "Examples:"
echo
echo ' vpn # Show a list of available VPN networks'
echo ' vpn on # Select a VPN network to activate'
echo ' vpn off # Close the current VPN connection'
echo ' vpn on Seattle # Turn on the Seattle VPN'
echo ' vpn on "South Korea" # Turn on the South Korea VPN'
echo
vpn_status "${active}"
echo "----------- Available VPN networks -----------"
echo
vpn_list | awk -F ' ' '{print NR") "$1}'
echo
echo "-----------------------------------------------"
return 0
;;
# Turning on the VPN we have to check that a connection is available
# choose_vpn will search the available connections and
"on")
con=$( vpn_choose "${con}" )
echo "Connecting to ${con} vpn..."
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1 \
&& sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1 \
&& sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=1
nmcli con up id "${con}"
return 0
;;
"off")
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=0 \
&& sudo sysctl -w net.ipv6.conf.default.disable_ipv6=0 \
&& sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0
if [ -z "${active}" ]
then
echo "not connected to vpn"
return 0
else
echo "switching off ${active} ..."
nmcli con down id "${active}"
return 0
fi
;;
*)
echo "VPN command not found: ${switch}"
;;
esac
}
export -f vpn
# choose a specific VPN
function vpn_choose () {
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "On MacOS. The VPN is much better here."
return 0
fi
local connections
local declared="${1:-none}"
# https://www.baeldung.com/linux/reading-output-into-array
# the eval here is to avoid MacOS complaining because readarray does not
# exist here.
# Note that This may work: https://stackoverflow.com/a/23843116
eval "readarray -t connections < <(vpn_list)"
if containsElement "${declared}" "${connections[@]}"
then
echo "${declared}"
return 0
fi
# https://linuxize.com/post/bash-select/
select con in "${connections[@]}":
do
echo "${con}"
return 0
done
}
# List all the VPN connections
vpn_list () {
nmcli -f NAME,TYPE con show \
| grep 'vpn\s*$' \
| awk -F ' ' '{print $1}'
}
export -f vpn_list
# show the active connection name or fail
vpn_active () {
local active
active=$(nmcli -f NAME,TYPE con show --active \
| grep 'vpn\s*$' \
| awk -F' ' '{print $1}'
)
if [[ $active != "" ]]
then
echo "${active}"
return 0
fi
return 1
}
vpn_status () {
local active="${1}"
local __END="\033[00m"
local RED__="\033[0;31m"
local LBLUE__="\033[0;34m"
local LPURPLE__="\033[0;35m"
echo
if [[ -z "${active}" ]]
then
echo -e "VPN status: ${RED__}OFF${__END}"
else
echo -e "VPN status: ${LBLUE__}ON${__END}"
echo -e "Connected to: ${LPURPLE__}${active}${__END}"
fi
echo
}
# https://stackoverflow.com/a/8574392
#
# Returns success if the element exists in an array, a failure otherwise
#
# containsElement <element> <array>
containsElement () {
set +e
local e match="$1"
shift
for e; do [[ "$e" == "$match" ]] && return 0; done
return 1
}
function wifirestart() {
sudo systemctl restart NetworkManager
}
export -f wifirestart
function fails() {
return 1
}
function succeeds() {
return 0
}
function ping_google() {
echo -n > /dev/tcp/8.8.8.8/53 2>&1
}
export -f ping_google
function cont_check_wifi() {
while true; do
sleep 5
ping_google && echo 0 || echo 1
done
}
export -f cont_check_wifi
function checkwifi() {
if ping_google; then
echo "ok"
else
echo "broken"
fi
}
export -f checkwifi