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

推荐订阅源

Cloudbric
Cloudbric
E
Exploit-DB.com RSS Feed
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
N
News | PayPal Newsroom
S
Security @ Cisco Blogs
Schneier on Security
Schneier on Security
V
V2EX - 技术
S
Secure Thoughts
W
WeLiveSecurity
Google DeepMind News
Google DeepMind News
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
S
Securelist
S
Security Archives - TechRepublic
Know Your Adversary
Know Your Adversary
V
Vulnerabilities – Threatpost
Security Latest
Security Latest
Recent Commits to openclaw:main
Recent Commits to openclaw:main
G
GRAHAM CLULEY
H
Hacker News: Front Page
Microsoft Azure Blog
Microsoft Azure Blog
I
Intezer
Google Online Security Blog
Google Online Security Blog
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Exploit Database - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Webroot Blog
Webroot Blog
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
P
Proofpoint News Feed
The Cloudflare Blog
I
InfoQ
L
LangChain Blog
U
Unit 42
P
Proofpoint News Feed
S
Schneier on Security
S
Security Affairs
Y
Y Combinator Blog
T
Tenable Blog
N
News and Events Feed by Topic
MyScale Blog
MyScale Blog
量子位
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
D
Darknet – Hacking Tools, Hacker News & Cyber Security
GbyAI
GbyAI
AWS News Blog
AWS News Blog

Comments for LinuxJedi's /dev/null

When an Amiga A570 Repair Took a Strange Turn 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.