diff options
author | xyz <gky44px1999@gmail.com> | 2022-01-12 06:35:59 -0800 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-01-12 06:35:59 -0800 |
commit | fb6be983f5817f3b7508a892728635c650f12aad (patch) | |
tree | 1672ce0779ceb23c551cbf7a18585d87ae344f02 /home | |
parent | ea12cfa36e99f02cb5ad721afbbb3df3fcd4ed42 (diff) |
refactor
Diffstat (limited to 'home')
-rw-r--r-- | home/xyz/.bashrc | 1 | ||||
-rwxr-xr-x | home/xyz/.local/bin/sbar | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/home/xyz/.bashrc b/home/xyz/.bashrc index f7d75d7d..b641afc2 100644 --- a/home/xyz/.bashrc +++ b/home/xyz/.bashrc @@ -67,6 +67,7 @@ alias ll='\ls --color=auto -lAh --group-directories-first' alias m=man alias p=pacman alias pu=paru +alias qre='qrencode -t utf8i' alias s='sudo ' # https://askubuntu.com/a/22043 alias se='sudo -E ' alias spd='speedtest; librespeed-cli' diff --git a/home/xyz/.local/bin/sbar b/home/xyz/.local/bin/sbar index 7b383c41..8741d449 100755 --- a/home/xyz/.local/bin/sbar +++ b/home/xyz/.local/bin/sbar @@ -35,7 +35,7 @@ update_net () { } update_vpn () { - vpn="$( < "$vpn_fifo" awk '{print $3}' | bool)" + vpn="$(awk '{print $3}' "$vpn_fifo" | bool)" } update_vol () { |