mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-11-04 09:42:42 +01:00 
			
		
		
		
	Detect timezone changes
Fixes #479, because upstream does not intend to. It may be less expensive to do that only once in a while, or to inotify-watch on /etc/timezone, but this is good enough.
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							048d8d328e
						
					
				
				
					commit
					1e82982dbd
				
			@@ -1,4 +1,5 @@
 | 
			
		||||
#include "modules/clock.hpp"
 | 
			
		||||
#include <time.h>
 | 
			
		||||
 | 
			
		||||
waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
 | 
			
		||||
    : ALabel(config, "clock", id, "{:%H:%M}", 60) {
 | 
			
		||||
@@ -12,6 +13,7 @@ waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
auto waybar::modules::Clock::update() -> void {
 | 
			
		||||
  tzset(); // Update timezone information
 | 
			
		||||
  auto now = std::chrono::system_clock::now();
 | 
			
		||||
  auto localtime = fmt::localtime(std::chrono::system_clock::to_time_t(now));
 | 
			
		||||
  auto text = fmt::format(format_, localtime);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user