sb

shitty bar for dwm
git clone git://git.ckyln.com/~cem/sb.git
Log | Files | Refs | README | LICENSE

commit b0dbb04baaed4b93716343dcd601486aafffa92c
parent 6f8fdef57717ab0a34eb8061dacde4120714d48a
Author: Cem Keylan <cem@ckyln.com>
Date:   Mon, 13 Apr 2020 19:32:55 +0300

sb_mail: fix variable name

Diffstat:
Mfunc/sb_mail | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/func/sb_mail b/func/sb_mail @@ -5,5 +5,5 @@ mail() { [ -z "$1" ] && printf "Maildir is not set\\n" >&2 && return 1 count="$(find "$1" | wc -l)" ; [ "$count" -gt 1 ] && - printf '%s: %s %s ' "${2:-Mail}" "$(( count - 1 ))" "$DELIMETER" + printf '%s: %s %s ' "${2:-Mail}" "$(( count - 1 ))" "$DELIMITER" }