Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change timezone of browser [duplicate]

I need to run browser with a timezone other than operating system's time zone. Is there any way to customize time zone in any browser or is there any plugin available that provides such functionality?

like image 201
sadhvaryu Avatar asked Sep 29 '14 12:09

sadhvaryu


1 Answers

If you are on Linux, you can launch a process while setting an environment variable for the lifetime of the process. Linux uses the environment variable TZ for time zone configuration. For example, the following command will run firefox using UTC timezone.

TZ=UTC firefox
like image 154
jjmontes Avatar answered Oct 16 '22 08:10

jjmontes