fix(i3): Surround ws names with quotes ()

Fixes 
This commit is contained in:
Jérôme BOULMIER 2019-06-04 17:34:16 -04:00 committed by Patrick Ziegler
parent 5be532c51b
commit c650513b67
2 changed files with 11 additions and 5 deletions
include/modules

View file

@ -56,6 +56,8 @@ namespace modules {
bool input(string&& cmd);
private:
static string make_workspace_command(const string& workspace);
static constexpr const char* DEFAULT_TAGS{"<label-state> <label-mode>"};
static constexpr const char* DEFAULT_MODE{"default"};
static constexpr const char* DEFAULT_WS_ICON{"ws-icon-default"};
@ -92,6 +94,6 @@ namespace modules {
unique_ptr<i3_util::connection_t> m_ipc;
};
}
} // namespace modules
POLYBAR_NS_END