2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2021-10-02 19:27:11 -04:00
|
|
|
#include "adapters/script_runner.hpp"
|
2017-01-01 02:58:33 -05:00
|
|
|
#include "modules/meta/base.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "utils/command.hpp"
|
2017-01-01 02:58:33 -05:00
|
|
|
#include "utils/io.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
namespace modules {
|
2017-01-01 02:58:33 -05:00
|
|
|
class script_module : public module<script_module> {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
explicit script_module(const bar_settings&, string);
|
2017-01-01 02:58:33 -05:00
|
|
|
|
2021-01-04 04:38:43 -05:00
|
|
|
void start() override;
|
|
|
|
void stop() override;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
string get_output();
|
2022-02-23 09:01:28 -05:00
|
|
|
string get_format() const;
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "custom/script";
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
protected:
|
2017-01-09 23:12:53 -05:00
|
|
|
bool check_condition();
|
2017-01-01 02:58:33 -05:00
|
|
|
|
2017-01-09 23:12:53 -05:00
|
|
|
private:
|
2022-04-03 07:11:13 -04:00
|
|
|
void handle_runner_update(const script_runner::data&);
|
|
|
|
|
2022-02-23 09:01:28 -05:00
|
|
|
static constexpr auto TAG_LABEL = "<label>";
|
|
|
|
static constexpr auto TAG_LABEL_FAIL = "<label-fail>";
|
|
|
|
static constexpr auto FORMAT_FAIL = "format-fail";
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2021-10-02 19:27:11 -04:00
|
|
|
const bool m_tail;
|
2022-03-06 03:34:12 -05:00
|
|
|
const script_runner::interval m_interval_success{0};
|
|
|
|
const script_runner::interval m_interval_fail{0};
|
|
|
|
const script_runner::interval m_interval_if{0};
|
2017-01-09 23:12:53 -05:00
|
|
|
|
2021-10-02 19:27:11 -04:00
|
|
|
script_runner m_runner;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-10-15 07:15:56 -04:00
|
|
|
map<mousebtn, string> m_actions;
|
2016-10-14 11:18:29 -04:00
|
|
|
|
2016-12-03 15:07:40 -05:00
|
|
|
label_t m_label;
|
2022-02-23 09:01:28 -05:00
|
|
|
label_t m_label_fail;
|
2022-04-03 07:11:13 -04:00
|
|
|
|
|
|
|
int m_exit_status{0};
|
|
|
|
script_runner::data m_data;
|
|
|
|
std::mutex m_data_mutex;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2022-04-03 07:11:13 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|