mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
2dfdbd240e
Added support for fuzzy matching workspace names when assigning icons. This feature is enabled/disabled through a new option, 'fuzzy-match'. It is disabled by default.
26 lines
515 B
C++
26 lines
515 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include "common.hpp"
|
|
#include "drawtypes/label.hpp"
|
|
#include "utils/mixins.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace drawtypes {
|
|
class iconset : public non_copyable_mixin<iconset> {
|
|
public:
|
|
void add(string id, icon_t&& icon);
|
|
bool has(const string& id);
|
|
icon_t get(const string& id, const string& fallback_id = "", bool fuzzy_match = false);
|
|
operator bool();
|
|
|
|
protected:
|
|
std::map<string, icon_t> m_icons;
|
|
};
|
|
|
|
using iconset_t = shared_ptr<iconset>;
|
|
}
|
|
|
|
POLYBAR_NS_END
|