mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-10-30 15:32:43 +01:00 
			
		
		
		
	fix(Battery): replace spaces w/ dashes
This commit is contained in:
		| @@ -165,9 +165,9 @@ auto waybar::modules::Battery::update() -> void { | ||||
|   } | ||||
|   // Transform to lowercase | ||||
|   std::transform(status.begin(), status.end(), status.begin(), ::tolower); | ||||
|   // Replace space with underscore | ||||
|   // Replace space with dash | ||||
|   std::transform(status.begin(), status.end(), status.begin(), [](char ch) { | ||||
|     return ch == ' ' ? '_' : ch; | ||||
|     return ch == ' ' ? '-' : ch; | ||||
|   }); | ||||
|   auto format = format_; | ||||
|   auto state = getState(capacity, true); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alex
					Alex