Skip to content

Commit

Permalink
workspaces.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
MightyPlaza authored Jul 16, 2023
1 parent ca0122c commit 4f81e55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/modules/hyprland/workspaces.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ class Workspace {

int id() const { return id_; };
std::string name() const { return name_; };
std::string monitor() const { return monitor_; };
std::string output() const { return output_; };
int active() const { return active_; };
bool is_special() const { return is_special_; };

auto handle_clicked(GdkEventButton* bt) -> bool;
void set_active(bool value) { active_ = value; };
void set_active(bool value = true) { active_ = value; };

void update(const std::string& format, const std::string& icon);

private:
int id_;
std::string name_;
std::string monitor_;
std::string output_;
int windows_;
bool active_;
bool is_special_;
Expand Down

0 comments on commit 4f81e55

Please sign in to comment.