Refactor stuff
This commit is contained in:
parent
926f6c07cd
commit
b423a60d33
|
@ -1,5 +1,5 @@
|
||||||
bt() {
|
bt() {
|
||||||
(( ${+commands[bluetoothctl]} )) || return 1
|
(( ${+commands[bluetoothctl]} )) || return 2
|
||||||
|
|
||||||
if [[ $1 == on ]]; then
|
if [[ $1 == on ]]; then
|
||||||
(( ${+commands[connmanctl]} )) \
|
(( ${+commands[connmanctl]} )) \
|
||||||
|
@ -15,7 +15,7 @@ bt() {
|
||||||
}
|
}
|
||||||
|
|
||||||
doasedit() {
|
doasedit() {
|
||||||
(( ${+commands[doas]} )) || return 1
|
(( ${+commands[doas]} )) || return 2
|
||||||
|
|
||||||
doas -L
|
doas -L
|
||||||
doas -u root sh -c \
|
doas -u root sh -c \
|
||||||
|
@ -31,8 +31,7 @@ doasedit() {
|
||||||
return $STATUS
|
return $STATUS
|
||||||
}
|
}
|
||||||
|
|
||||||
get_ip() {
|
get_ip() {
|
||||||
(( ${+commands[jq]} )) && local JQ="| jq"
|
|
||||||
local IP=""
|
local IP=""
|
||||||
local ARGS=()
|
local ARGS=()
|
||||||
|
|
||||||
|
@ -41,12 +40,13 @@ get_ip() {
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
eval "curl ${ARGS[*]} -fsSL 'https://ifconfig.co/json$IP' $JQ"
|
eval "curl ${ARGS[*]} -fsSL 'https://ifconfig.co/json$IP' \
|
||||||
|
$( (( ${+commands[jq]} )) && echo "| jq" )"
|
||||||
}
|
}
|
||||||
|
|
||||||
http() {
|
http() {
|
||||||
(( ${+commands[python]} )) || return 1
|
(( ${+commands[python]} )) || return 2
|
||||||
|
|
||||||
[[ $# -gt 0 ]] && local DIR="--directory $1"
|
eval "python -m http.server 8080 --bind 127.0.0.1 \
|
||||||
eval "python -m http.server 8080 --bind 127.0.0.1 $DIR"
|
$( [[ $# -gt 0 ]] && echo "--directory $1" )"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue