mirror of
				https://github.com/rad4day/Waybar.git
				synced 2025-10-31 16:02:43 +01:00 
			
		
		
		
	Merge pull request #840 from tamirzb/fix-restart-interval
Fix "restart-interval" in the custom module
This commit is contained in:
		| @@ -50,7 +50,6 @@ void waybar::modules::Custom::continuousWorker() { | |||||||
|   thread_ = [this, cmd] { |   thread_ = [this, cmd] { | ||||||
|     char*  buff = nullptr; |     char*  buff = nullptr; | ||||||
|     size_t len = 0; |     size_t len = 0; | ||||||
|     bool   restart = false; |  | ||||||
|     if (getline(&buff, &len, fp_) == -1) { |     if (getline(&buff, &len, fp_) == -1) { | ||||||
|       int exit_code = 1; |       int exit_code = 1; | ||||||
|       if (fp_) { |       if (fp_) { | ||||||
| @@ -63,8 +62,8 @@ void waybar::modules::Custom::continuousWorker() { | |||||||
|         spdlog::error("{} stopped unexpectedly, is it endless?", name_); |         spdlog::error("{} stopped unexpectedly, is it endless?", name_); | ||||||
|       } |       } | ||||||
|       if (config_["restart-interval"].isUInt()) { |       if (config_["restart-interval"].isUInt()) { | ||||||
|         restart = true; |  | ||||||
|         pid_ = -1; |         pid_ = -1; | ||||||
|  |         thread_.sleep_for(std::chrono::seconds(config_["restart-interval"].asUInt())); | ||||||
|         fp_ = util::command::open(cmd, pid_); |         fp_ = util::command::open(cmd, pid_); | ||||||
|         if (!fp_) { |         if (!fp_) { | ||||||
|           throw std::runtime_error("Unable to open " + cmd); |           throw std::runtime_error("Unable to open " + cmd); | ||||||
| @@ -83,9 +82,6 @@ void waybar::modules::Custom::continuousWorker() { | |||||||
|       output_ = {0, output}; |       output_ = {0, output}; | ||||||
|       dp.emit(); |       dp.emit(); | ||||||
|     } |     } | ||||||
|     if (restart) { |  | ||||||
|       thread_.sleep_for(std::chrono::seconds(config_["restart-interval"].asUInt())); |  | ||||||
|     } |  | ||||||
|   }; |   }; | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Alex
					Alex