Update time padding

This commit is contained in:
Abhishek Keshri 2022-08-13 15:28:59 +05:30
parent ebe8c0650d
commit 72dbc29cb4
No known key found for this signature in database
GPG key ID: 87ABE188E6B98D1C

View file

@ -198,7 +198,7 @@ main() {
if $show_day_month && $show_military; then # military time and dd/mm
script=" %a %d/%m %R ${timezone}"
elif $show_military; then # only military time
script=" %a %m/%d %R ${timezone} "
script=" %a %m/%d %R ${timezone}"
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone}"
else
@ -282,7 +282,7 @@ main() {
if $show_day_month && $show_military; then # military time and dd/mm
script=" %a %d/%m %R ${timezone}"
elif $show_military; then # only military time
script=" %a %m/%d %R ${timezone} "
script=" %a %m/%d %R ${timezone}"
elif $show_day_month; then # only dd/mm
script=" %a %d/%m %I:%M %p ${timezone}"
else