commit 1a0268ae76eaf5c38cb31f89e2eff456ff9f1c27 parent d5be36f349873238788c5fbf4f92ed3f5bb31278 author: nathanael <nathanael@dalliard.ch> date: Sat, 25 Oct 2025 18:58:33 +0000 s0: 21 -> 1 diffstat:
| M | s0/dotfiles/bin/minbox | | | 2 | +- |
| M | s0/dotfiles/shrc | | | 8 | ++++---- |
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/s0/dotfiles/bin/minbox b/s0/dotfiles/bin/minbox @@ -1,7 +1,7 @@ #!/bin/sh box=${1:-~/mail/Inbox} -n=${2:-21} +n=${2:-1} store=cat [ -t 1 ] && store="mseq -S" diff --git a/s0/dotfiles/shrc b/s0/dotfiles/shrc @@ -24,10 +24,10 @@ calc() { echo "$*" | bc -l; } mless() { mshow "$@" | less -R; } mrm() { mseq "${@:-.}" | xargs rm; } -ma() { minbox ~/mail/Archive "${1:-21}"; } -mi() { minbox ~/mail/Inbox "${1:-21}"; } -mj() { minbox ~/mail/Junk "${1:-21}"; } -ms() { minbox ~/mail/Sent "${1:-21}"; } +ma() { minbox ~/mail/Archive "${1:-1}"; } +mi() { minbox ~/mail/Inbox "${1:-1}"; } +mj() { minbox ~/mail/Junk "${1:-1}"; } +ms() { minbox ~/mail/Sent "${1:-1}"; } alias '?'=duck alias '??'=yout