mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-19 19:15:14 +00:00
Merge pull request #28 from davinerd/feat_issue_1
we'll print a warning on 'list' if the tomb is almost full
This commit is contained in:
commit
a73e0a3519
6
src/tomb
6
src/tomb
@ -1034,7 +1034,7 @@ list_tombs() {
|
||||
tombused=${ts[(ws:;:)2]}
|
||||
tombavail=${ts[(ws:;:)3]}
|
||||
tombpercent=${ts[(ws:;:)4]}
|
||||
|
||||
tombp=${tombpercent%%%}
|
||||
tombsince=`date --date=@${mapper[(ws:.:)3]} +%c`
|
||||
|
||||
# breaking up such strings is good for translation
|
||||
@ -1055,6 +1055,10 @@ list_tombs() {
|
||||
print -n "$fg_bold[white]$tombpercent"
|
||||
print "$fg_no_bold[white] full)"
|
||||
|
||||
if [[ ${tombp} -ge 90 ]]; then
|
||||
error "Your tomb is almost full!"
|
||||
fi
|
||||
|
||||
print -n "$fg_no_bold[green]$tombname"
|
||||
print -n "$fg_no_bold[white] open since "
|
||||
print "$fg_bold[white]$tombsince$fg_no_bold[white]"
|
||||
|
Loading…
Reference in New Issue
Block a user