polybar/include/modules/script.hpp

48 lines
997 B
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-11-20 22:04:31 +00:00
#include <chrono>
#include "modules/meta/event_module.hpp"
2016-06-15 03:32:35 +00:00
#include "utils/command.hpp"
2016-05-19 14:41:06 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2016-11-20 22:04:31 +00:00
namespace chrono = std::chrono;
#define OUTPUT_ACTION(BUTTON) \
if (!m_actions[BUTTON].empty()) \
m_builder->cmd(BUTTON, string_util::replace_all(m_actions[BUTTON], "%counter%", counter_str))
2016-06-15 03:32:35 +00:00
namespace modules {
class script_module : public event_module<script_module> {
2016-06-15 03:32:35 +00:00
public:
using event_module::event_module;
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void setup();
void stop();
void idle();
bool has_event();
bool update();
string get_output();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
2016-06-15 03:32:35 +00:00
protected:
static constexpr auto TAG_OUTPUT = "<output>";
command_util::command_t m_command;
2016-06-15 03:32:35 +00:00
string m_exec;
bool m_tail = false;
2016-11-20 22:04:31 +00:00
chrono::duration<double> m_interval{0};
2016-06-15 03:32:35 +00:00
size_t m_maxlen = 0;
bool m_ellipsis = true;
map<mousebtn, string> m_actions;
string m_output;
string m_prev;
int m_counter{0};
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END