File: script.hpp

package info (click to toggle)
polybar 3.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,108 kB
  • sloc: cpp: 30,424; python: 3,750; sh: 284; makefile: 83
file content (54 lines) | stat: -rw-r--r-- 1,274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#pragma once

#include "adapters/script_runner.hpp"
#include "modules/meta/base.hpp"
#include "modules/meta/types.hpp"
#include "utils/command.hpp"
#include "utils/io.hpp"

POLYBAR_NS

namespace modules {
  class script_module : public module<script_module> {
   public:
    explicit script_module(const bar_settings&, string, const config&);

    void start() override;
    void stop() override;

    string get_output();
    string get_format() const;

    bool build(builder* builder, const string& tag) const;

    static constexpr auto TYPE = SCRIPT_TYPE;

   protected:
    bool check_condition();

   private:
    void handle_runner_update(const script_runner::data&);

    static constexpr auto TAG_LABEL = "<label>";
    static constexpr auto TAG_LABEL_FAIL = "<label-fail>";
    static constexpr auto FORMAT_FAIL = "format-fail";

    const bool m_tail;
    const script_runner::interval m_interval_success{0};
    const script_runner::interval m_interval_fail{0};
    const script_runner::interval m_interval_if{0};

    script_runner m_runner;

    map<mousebtn, string> m_actions;

    label_t m_label;
    label_t m_label_fail;

    int m_exit_status{0};
    script_runner::data m_data;
    std::mutex m_data_mutex;
  };
} // namespace modules

POLYBAR_NS_END