From f820ccf4dd69d4cf784fca4fc0e1ae273993077e Mon Sep 17 00:00:00 2001 From: JameyBear Date: Mon, 1 Jun 2020 15:29:57 -0400 Subject: Shellcheck (#676) Co-authored-by: WhispersOfJ --- .local/bin/statusbar/crypto | 2 +- .local/bin/statusbar/help-icon | 2 +- .local/bin/statusbar/news | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to '.local/bin/statusbar') diff --git a/.local/bin/statusbar/crypto b/.local/bin/statusbar/crypto index bb19fc9..ef025d4 100755 --- a/.local/bin/statusbar/crypto +++ b/.local/bin/statusbar/crypto @@ -28,7 +28,7 @@ printprices() { # Print/format all prices for x in "$dir"/*; do [ -f "$x" ] || break info="$(cut -d';' -f-2 --output-delimiter=' ' "$x")" - printf "%s$%0.2f " $info + printf "%s$%0.2f " "$info" done | sed 's/ $/\n/' } diff --git a/.local/bin/statusbar/help-icon b/.local/bin/statusbar/help-icon index 9c90964..5044324 100755 --- a/.local/bin/statusbar/help-icon +++ b/.local/bin/statusbar/help-icon @@ -3,7 +3,7 @@ # The clickable help menu. Middle click to restart wm. # If dwm is running, use dwm's readme and restart. -ps ax | grep -q "\sdwm$" && +pgrep -f "\sdwm$" && READMEFILE=/usr/local/share/dwm/larbs.mom restartwm() { pkill -HUP dwm ;} || restartwm() { i3 restart ;} diff --git a/.local/bin/statusbar/news b/.local/bin/statusbar/news index b414981..e997597 100755 --- a/.local/bin/statusbar/news +++ b/.local/bin/statusbar/news @@ -14,4 +14,4 @@ case $BLOCK_BUTTON in 6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac - cat /tmp/newsupdate 2>/dev/null || echo "$(newsboat -x print-unread | awk '{ print "📰" $1}' | sed 's/^📰0$//g')$(cat ${XDG_CONFIG_HOME:-$HOME/.config}/newsboat/.update 2>/dev/null)" + cat /tmp/newsupdate 2>/dev/null || echo "$(newsboat -x print-unread | awk '{ print "📰" $1}' | sed 's/^📰0$//g')$(cat "${XDG_CONFIG_HOME:-$HOME/.config}"/newsboat/.update 2>/dev/null)" -- cgit v1.3.1