feat: bold markup; echo usage for default mail script

This commit is contained in:
Ayo Ayco 2025-07-09 12:40:43 +02:00
parent 346678930f
commit 006f0ead09
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
# NOTE: config should be loaded by the script using this shared functions.sh
bold=$(tput bold)
dlob=$(tput sgr0)
# Sync notes via git
notesSync() {
# check if online

View file

@ -14,5 +14,5 @@ if [ "$1" = "task" ] || [ "$1" = "t" ]; then
read -p "Task:" task
mutt -s "$task" things
else
mutt $1 $2 $3 $4 $5
echo "Use ${bold}mail task${dlob} or ${bold}mt${dlob} to send a task to Things. Otherwise, use ${bold}mutt${dlob} for mail"
fi