-
How can I change it to monday? I've tried changing the "format": {
"months": "<span color='#ffead3'><b>{}</b></span>",
"weekdays": "<span color='#ffcc66'><b>{}</b></span>",
"weeks": "<span color='#99ffdd'><b>{:%W}</b></span>",
"today": "<span color='#ff6699'><b>{}</b></span>"
} or "weeks": "{:%W}", or as in example on the same wiki page: "weeks": "<span color='#99ffdd'><b>W{}</b></span>", I also tried setting locale (yes, I checked if it's installed) and running waybar, as explained in #2235 :
But this also didn't help |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
What do your |
Beta Was this translation helpful? Give feedback.
-
Looks like your LC_TIME is still set to en_US. Try to run |
Beta Was this translation helpful? Give feedback.
-
If you only wanted to change
|
Beta Was this translation helpful? Give feedback.
Now I see it, in your
locale
you set yourLC_ALL
toLC_ALL=en_US.UTF-8
that one will override any other LC_* variables. So edit the file in/etc/locale.conf
and change it to justLC_ALL=
(and LC_TIME to en_GB.UTF-8) then reload your session.(and make sure your don't export LC_ALL at some point in your shell file).