Add quotes

This commit is contained in:
Sam A. 2023-03-14 16:32:14 +01:00
parent 3b25addae0
commit 7ea80527af
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
bt() {
(( ${+commands[bluetoothctl]} )) || return 2
if [[ $1 == on ]]; then
if [[ $1 == "on" ]]; then
(( ${+commands[connmanctl]} )) &&
connmanctl enable bluetooth && sleep 0.5
bluetoothctl power on
elif [[ $1 == off ]]; then
elif [[ $1 == "off" ]]; then
bluetoothctl power off
(( ${+commands[connmanctl]} )) &&
connmanctl disable bluetooth
@ -55,9 +55,9 @@ open() {
wg() {
(( ${+commands[wg]} )) && (( ${+commands[wg-quick]} )) || return 2
if [[ $1 == up ]]; then
if [[ $1 == "up" ]]; then
sudo wg-quick up $2
elif [[ $1 == down ]]; then
elif [[ $1 == "down" ]]; then
sudo wg-quick down $2
else
command wg "$@"