mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-11-01 00:12:42 +01:00 
			
		
		
		
	Implement hyprland submap module
This commit is contained in:
		
							
								
								
									
										25
									
								
								include/modules/hyprland/submap.hpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								include/modules/hyprland/submap.hpp
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| #include <fmt/format.h> | ||||
| #include "ALabel.hpp" | ||||
| #include "bar.hpp" | ||||
| #include "modules/hyprland/backend.hpp" | ||||
| #include "util/json.hpp" | ||||
|  | ||||
| namespace waybar::modules::hyprland { | ||||
|  | ||||
| class Submap : public waybar::ALabel, public EventHandler { | ||||
|  public: | ||||
|   Submap(const std::string&, const waybar::Bar&, const Json::Value&); | ||||
|   ~Submap(); | ||||
|  | ||||
|   auto update() -> void; | ||||
|  | ||||
|  private: | ||||
|   void onEvent(const std::string&); | ||||
|  | ||||
|   std::mutex mutex_; | ||||
|   const Bar& bar_; | ||||
|   util::JsonParser parser_; | ||||
|   std::string submap_; | ||||
| }; | ||||
|  | ||||
| }  // namespace waybar::modules::hyprland | ||||
		Reference in New Issue
	
	Block a user
	 Enes Hecan
					Enes Hecan