0

my question is related to this one.

Is there an easy way to change the first day of the week in XFCE calendar (xfce4-datetime-plugin) WITHOUT changing the language? I want to keep my language setting to English, so changing locale is not an option.

Thanks!

EyR0n
  • 1

1 Answers1

0
  1. There are locales other than en_US which have Monday as the first day of the week, e.g. en_DK.UTF-8, en_GB.UTF-8 and en_IE.UTF-8. Or you could file a feature request. :-)

To figure it out I've used this script:

for i in `localectl list-locales`; do echo "$i"; LANG=$i cal; done
  1. Also, you don't have to redefine LANG, you can get away with LC_TIME.

  2. Lastly you can killall xfce4-panel; LANG=en_GB.UTF-8 xfce4-panel &> /dev/null & disown

Artem S. Tashkinov
  • 26,392
  • 4
  • 33
  • 64