This article covers a list of graphical and command line “world clock” applications that can be used to view current time and date values at different time zones / locations around the world.

GNOME Clocks

GNOME Clocks, as the name suggests, is a clock application that is included in default repositories of almost all major Linux distributions. It is part of the official GNOME-3 application stack and it supports displaying time and date for many different time zones. Other features of GNOME Clocks include support for stopwatch, countdown timers and alarm notifications. If you are looking for an all-in-one, comprehensive clock application for Linux, you won’t have to look beyond the GNOME Clocks application.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image2-14.png" data-lazy- height="710" src="data:image/svg xml,” width=”887″>

GNOME Clocks can be installed in Ubuntu by executing the command specified below:

$ sudo apt install gnome-clocks

In other Linux distributions, you can search for the term “GNOME Clocks” in the package manager to install it. Alternatively, it can be installed from the FlatHub store.

Gworldclock

Gworldclock is a simple clock application that can show current date and time for different regions around the world. Unlike GNOME Clocks, it doesn’t have any extra functionalities. However, you can manually add new time zones, customize the format of date and time string, and add your own remarks to the string format.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image4-11.png" data-lazy- height="526" src="data:image/svg xml,” width=”887″>

Gworldclock can be installed in Ubuntu by executing the command specified below:

$ sudo apt install gworldclock

To install it in other distributions, search for the term “Gworldclock” in the package manager.

Tty-clock

Tty-clock is a command line application that can show a real time, continuously updating clock in any terminal emulator. You can customize it extensively using its numerous command line options.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image3-12.png" data-lazy- height="572" src="data:image/svg xml,” width=”821″>

You can install “tty-clock” from the package manager of your Linux distribution by using the search function. To download it in Ubuntu, use the following command:

$ sudo apt install tty-clock

To view all of its options, run the following command:

The clock visible in the screenshot above has been created by running the following command:

$ tty-clock -sct -f “%a, %d %b %Y %T %z”

By default, tty-clock shows time for default locale selected on your Linux system. You can show time for a different time zone by prefixing the command with “TZ” environment variable. The command below shows current date and time in New York.

$ TZ=‘America/New_York’ tty-clock -sct -f “%a, %d %b %Y %T %z”

You can refer to all possible values of the “TZ” environment variable here.

Note that tty-clock cannot simultaneously display multiple clocks. You will have to use a different window for each instance of tty-clock. You can also use multi-pane terminal emulators like “Terminator” to view time at multiple places at once.

Undertime

Undertime is a pretty handy command line utility that can be used to find correct meeting times at different time zones around the world. It automatically calculates time and date values according to user needs and presents them in a nice chart. For the purpose of just displaying a world clock, you can hide the chart by using the “grep” command.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image6-8.png" data-lazy- height="597" src="data:image/svg xml,” width=”1073″>

You can download Undertime from the package manager of your Linux distribution by using the search function. To download it in Ubuntu, use the following command:

$ sudo apt install undertime

By default, Undertime takes the default locale time set on your Linux system. The command used in the above screenshot is specified below (you can customise it as per your needs):

$ undertime –colors –format plain New_York Los_Angeles | grep -E ‘Local|Equivalent’

The “New_York” and “Los_Angeles” parts in the command specify the time zones for which you want to show calculated time. To view names of all possible locations, use the following command:

You can continuously watch the output of undertime command by using a command in the following format (“n” stands for interval in seconds):

$ watch -n 1 ‘undertime –colors –format plain New_York Los_Angeles | grep -E “Local|Equivalent”‘

For more help on Undertime, use the following two commands:

$ undertime –help

$ man undertime

Date command

Date command is available by default on most Linux distributions. It shows current system time according to the locale you have set on on your Linux PC.

To view time for a different locale, you can use “TZ” environment variable (as explained under tty-clock section in this article):

$ TZ=‘America/New_York’ date

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image5-10.png" data-lazy- height="597" src="data:image/svg xml,” width=”832″>

You can refer to all possible values of the “TZ” environment variable here. To continuously watch the output of date command, use a command in the following format (“n” stands for interval in seconds):

$ TZ=‘America/New_York’ watch -n 1 date

Osdclock

Osdclock shows current date and time as on OSD (On Screen Display) overlay. It works on all Linux distributions regardless of the desktop environment or panel used. It is especially useful when you are running a full screen app or game and want to know the current time. Below is an example showing the command and how its output looks like on a fullscreen Firefox window. You can customize its font style, size and display position using various command line options it comes with.

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/image1-14.png" data-lazy- height="1080" src="data:image/svg xml,” width=”1920″>

You can download Osdclock from the package manager of your Linux distribution. To download it in Ubuntu, use the following command:

$ sudo apt install osdclock

To view time for a different locale, you can use “TZ” environment variable (as explained under tty-clock section in this article):

$ TZ=‘America/New_York’ osd_clock

You can refer to all possible values of the “TZ” environment variable here.

Conclusion

There are only a limited number of world clock applications available for Linux. Apps listed in this article get the job done and some of them also come with handy extra features. If you know any command line application in Linux that can show current date and time, you can try prefixing it with the “TZ” environment variable explained in this article.

About the author

<img alt="Nitesh Kumar" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/01/echo/Cartoon-Man-Avatar-2-150×150.png6003c2db95170.jpg" height="112" src="data:image/svg xml,” width=”112″>

Nitesh Kumar

I am a freelancer software developer and content writer who loves Linux, open source software and the free software community.