Unable to change the format on Clock Module to 12 Hr #4174
-
|
I'm attempting to change the format of my clock to 12 Hr. Regardless of the changes I make in my config the clock remains in a 24 Hr format. The time it provides is correct, and I've ensured my locale is set correctly from the troubleshooting steps on the wiki. This discussion might be relevant, but I'm confident that I installed Chrono.date as is listed in the dependencies. In my config currently I have what I believe is the simplest implementation of a 12 Hr clock Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
The wiki says:
So you can try this, or use a custom module for clock if it still doesn't work "custom/clock": {
"exec": "LC_ALL=en_US.UTF-8 date '+%I:%M %p'",
"interval": 60 // seconds
},
"clock": {
"format": "{:L%I:%M %p}",
"locale": "en_US.UTF-8",
},
|
Beta Was this translation helpful? Give feedback.
Using another persons config solved the issue. Thank you for all your help