mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-11-01 00:12:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <fmt/format.h>
 | |
| #include "ALabel.hpp"
 | |
| #include "fmt/time.h"
 | |
| #include "util/sleeper_thread.hpp"
 | |
| 
 | |
| namespace waybar::modules {
 | |
| 
 | |
| class Clock : public ALabel {
 | |
|  public:
 | |
|   Clock(const std::string&, const Json::Value&);
 | |
|   ~Clock() = default;
 | |
|   auto update() -> void;
 | |
| 
 | |
|  private:
 | |
|   waybar::util::SleeperThread thread_;
 | |
| };
 | |
| 
 | |
| }  // namespace waybar::modules
 | 
