Merge pull request #1657 from vaxerski/hyprlandLanguage

Added a basic hyprland/language module
This commit is contained in:
Alex
2022-09-05 09:12:17 +02:00
committed by GitHub
6 changed files with 208 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#include <fmt/format.h>
#include "ALabel.hpp"
#include "bar.hpp"
#include "modules/hyprland/backend.hpp"
#include "util/json.hpp"
namespace waybar::modules::hyprland {
class Language : public waybar::ALabel {
public:
Language(const std::string&, const waybar::Bar&, const Json::Value&);
~Language() = default;
auto update() -> void;
private:
void onEvent(const std::string&);
void initLanguage();
std::string getShortFrom(const std::string&);
std::mutex mutex_;
const Bar& bar_;
util::JsonParser parser_;
std::string layoutName_;
};
}