10321a0d21
remove .local/bin/dwmbar add .local/bin/statusbar scripts directory update .profile ($PATH) update .xprofile (dwmblocks at startup)
20 lines
583 B
Bash
Executable File
20 lines
583 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
######################################################################
|
|
# @author : swytch (swytch@$HOSTNAME)
|
|
# @file : sb-mailbox
|
|
# @license : MIT
|
|
# @created : Saturday Feb 13, 2021 18:15:13 CET
|
|
#
|
|
# @description : mail block for dwmblocks
|
|
######################################################################
|
|
|
|
|
|
unread="$(find "${XDG_DATA_HOME:-$HOME/.local/share}"/mail/*/[Ii][Nn][Bb][Oo][Xx]/new/* -type f | wc -l 2>/dev/null)"
|
|
|
|
pidof mbsync >/dev/null 2>&1 && icon=""
|
|
|
|
[ "$unread" = "0" ] && [ "$icon" = "" ] || echo " $unread$icon"
|
|
|
|
|