惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
V
V2EX
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
I
InfoQ
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
H
Help Net Security
腾讯CDC
D
Docker
P
Proofpoint News Feed
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
aimingoo的专栏
aimingoo的专栏

Comments for LinuxJedi's /dev/null

Converting a PC Floppy Drive to Amiga Amiga 1000 Restoration: The Keyboard Amiga 1000 Restoration: Floppy Drive and WCS Failure? Amiga 4000 Repair: This one was just weird Socket SO_REUSEPORT and Kernel Implementations Coding an MSP430 From the Linux Command Line Upgrading the RAM Detective: A Firmware Adventure with RAMCHECK When an Amiga A570 Repair Took a Strange Turn AI Didn’t Destroy Your Company, Your Processes Did Raspberry Pi JTAG Programming - 2025 Edition Teletext on a BBC computer in 2024 Amiga RAMesses UART and Ethernet on the STM32 Nucleo-F756ZG Trying Out Even More Amiga 500 Plus Upgrades Programming Xilinx JTAG from a Raspberry Pi
KDE Plasma Automatic Time Zone
LinuxJedi · 2025-11-09 · via Comments for LinuxJedi's /dev/null

I have been a full time KDE Plasma user for quite a while now. Whilst I do not miss much from GNOME, and love the way I can make Plasma my own, there is one niggle that has been missing for a while. That is automatic time zone changing. I don’t mean daylight savings, that is covered nicely, but I have worked abroad several times this year, and each time I have to manually set my location in the System Settings to get the correct time/date.

GNOME Handling

In GNOME, there is an option you can set in the settings to automatically set time zone. This will, as the description indicates, set your time zone according to your detected location. This typically uses your WiFi connection to figure out what country you are in and adjusts everything automatically.

Replicating in KDE

KDE Plasma does, in fact, have the same feature. But it is not yet exposed to System Settings. At the time of writing, this feature has been in Plasma for a couple of years already. Details of the implementation can be found here. There are alternative ways of doing this, especially using systemd. But using the method in this blog post will visually indicate when the time zone change has been made.

To start with, we need to check if geotimezoned is included with your KDE Plasma installation. This can be done with:

$ qdbus org.kde.kded6 | grep geotimezoned

This should return /modules/geotimezoned if it is found. Next up, we need to enable this plugin:

$ qdbus org.kde.kded6 /kded setModuleAutoloading geotimezoned true
$ qdbus org.kde.kded6 /kded loadModule geotimezoned

The first command enables the plugin automatically, the second one loads it in now. In my experience, if you come out of sleep in a different time zone, it can take a little time to detect the change. But it will eventually do it. I don’t mind it taking a few minutes to detect, as long as it happens.

If you do want to manually trigger it early, you can enter the following into the shell:

$ qdbus org.kde.kded6 /modules/geotimezoned refresh

Upon it detecting the time zone change, you will get a banner like this:

Conclusion

I really hope that this eventually becomes an option in the KDE Plasma settings. It is very useful for frequent travellers such as myself. In the meantime, I hope this post helps others, just like it helped me when I figured it out.