Is it possible to show the seconds on the clock in GNOME 3?
6 Answers
Not sure when this path changed, but as of Ubuntu 13.04 the seconds display can be set in the terminal with:
gsettings set org.gnome.desktop.interface clock-show-seconds true
To turn seconds display off:
gsettings set org.gnome.desktop.interface clock-show-seconds false
and checked with:
gsettings get org.gnome.desktop.interface clock-show-seconds
- 2,041
GUI way:
- launch gnome-tweak-tool, sometimes called Advanced Settings
- click the Top Bar menu
- enable Show seconds
- 901
-
2I found this on my new RHEL 7 VM was called "Tweaks". It was a separate application from "Settings". – ArtOfWarfare May 18 '20 at 19:51
-
6
-
Worked great for me on Ubuntu 22.02 (using gnome-tweaks instead of gnome-tweak). – KBurchfiel Jun 21 '23 at 16:20
The GUI way to do this, (on 22.04 LTS) seems to be:
sudo apt install gnome-tweaks
Before 20.04 LTS the package name was different:
sudo apt install gnome-tweak-tool
and then launch "Tweaks" either by searching for it in Applications menu or launching gnome-tweaks from terminal.
From there you'll see something like this:
- 183
- 3,651
-
5ugh. having to install a separate tool isn't "user-friendly" in my mind. – Michael Dec 02 '20 at 00:49
-
Yes, run this command in a Terminal:
gsettings set org.gnome.shell.clock show-seconds true
And you can verify with:
gsettings get org.gnome.shell.clock show-seconds
Or you can install dconf-tools and use
dconf-editor to browse to org.gnome.shell.clock
- 8,304
-
9No such schema 'org.gnome.shell.clock' →
gsettings set org.gnome.desktop.interface clock-show-seconds true– Dereckson Jun 04 '16 at 23:14
For MATE Desktop (the continuation and fork of GNOME 2 with GTK+ 3 support), you can achieve this using the graphical user interface (GUI)!
Drink beer and Vote me up, cause it rocks!
Ubuntu 24.01+ has changed the way to personalize the clock.
"Top Bar" is no longer present in gnome-tweaks tool, all of their settings are now present direct below built-in Settings > Date & Time menu.
- 7,494
-
A small explanation: I thought about adding this information directly to Riki137's post, but I don't know if it would be against the rules, and I also didn't think it was 'fair'. I only posted this information because I was looking for how to add the seconds and I wasn't finding it in gnome-tweaks. – André M. Faria Apr 25 '25 at 13:02
(process:23119): dconf-WARNING **: failed to commit changes to dconf: Cannot autolaunch D-Bus without X11 $DISPLAY. I checked the value of$DISPLAYand it was blank! So I started a new terminal,$DISPLAYwas:0and this time it worked. – Gabriel Devillers Nov 14 '18 at 16:01