mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
33 lines
656 B
C++
33 lines
656 B
C++
#pragma once
|
|
|
|
#include "modules/base.hpp"
|
|
#include "services/command.hpp"
|
|
|
|
namespace modules
|
|
{
|
|
DefineModule(ScriptModule, TimerModule)
|
|
{
|
|
static constexpr auto TAG_OUTPUT = "<output>";
|
|
|
|
std::unique_ptr<Builder> builder;
|
|
|
|
std::string exec;
|
|
std::string click_left;
|
|
std::string click_middle;
|
|
std::string click_right;
|
|
std::string scroll_up;
|
|
std::string scroll_down;
|
|
|
|
std::string output;
|
|
std::atomic<int> counter;
|
|
|
|
protected:
|
|
|
|
public:
|
|
explicit ScriptModule(const std::string& name);
|
|
|
|
bool update();
|
|
bool build(Builder *builder, const std::string& tag);
|
|
std::string get_output();
|
|
};
|
|
}
|