mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
Style code (#25)
This commit is contained in:
@ -8,15 +8,15 @@
|
||||
|
||||
namespace waybar::modules {
|
||||
|
||||
class Clock : public IModule {
|
||||
public:
|
||||
Clock(Json::Value config);
|
||||
auto update() -> void;
|
||||
operator Gtk::Widget &();
|
||||
private:
|
||||
Gtk::Label _label;
|
||||
waybar::util::SleeperThread _thread;
|
||||
Json::Value _config;
|
||||
};
|
||||
class Clock : public IModule {
|
||||
public:
|
||||
Clock(Json::Value);
|
||||
auto update() -> void;
|
||||
operator Gtk::Widget &();
|
||||
private:
|
||||
Gtk::Label label_;
|
||||
waybar::util::SleeperThread thread_;
|
||||
Json::Value config_;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user