Birthday: Fix bug with 0:00
This commit is contained in:
parent
665e9ceb68
commit
d375aa24d6
2
neofetch
2
neofetch
|
@ -2965,7 +2965,7 @@ convert_time() {
|
||||||
|
|
||||||
# Convert 24 hour time to 12 hour time + AM/PM
|
# Convert 24 hour time to 12 hour time + AM/PM
|
||||||
case "$hour" in
|
case "$hour" in
|
||||||
0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;;
|
[0-9] | 0[0-9] | 1[0-1]) time="${hour/00/12}${min} AM" ;;
|
||||||
*) time="$((hour - 12))${min} PM" ;;
|
*) time="$((hour - 12))${min} PM" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Reference in New Issue