In some countries (e.g. US) Sunday is thought as the first day of the week. But in others (e.g. Russia) Monday is the first day.
As long as Ubuntu has US citizenship its default first day of the week is Sunday. So, here is how to make it Monday. Talking about Gnome right now.
- We need to know which locale we are using (mine is en_US, don't worry about the .UTF ending). So, run locale in the shell
- Now we need to backup the applicable locale file just in case so we can safely edit it. Use the result of the previous command
sudo cp /usr/share/i18n/locales/en_US /usr/share/i18n/locales/en_US.bak
sudo vim /usr/share/i18n/locales/en_US - Locate the following line and change the value. The value for Monday in en_US is 2. So, we need to use number 2: first_weekday 2
- Now we save the file and then we update the locales. Run this in shell:
sudo locale-gen
- Now we need to reboot the machine or just refresh the desktop with this command:
killall gnome-panel
Now Monday is the first day of the week. Neat! :)
Got this from Ubuntu forum.