-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicons.hpp
38 lines (26 loc) · 878 Bytes
/
icons.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef DWMSTATUS_ICONS_HPP
#define DWMSTATUS_ICONS_HPP
#include "decl.hpp"
namespace dwmstatus {
namespace icons {
namespace awesome { // Font Awesome
extern const vector<string_view> battery;
extern const vector<string_view> hourglass;
extern const vector<string_view> thermometer;
constexpr auto envelope = "";
constexpr auto microchip = "";
constexpr auto wifi = "";
} // namespace awesome
namespace material { // Material Icons
extern const vector<string_view> battery;
extern const vector<string_view> network_wifi;
extern const vector<string_view> wifi;
constexpr auto battery_alert = "";
constexpr auto battery_charging_full = "";
constexpr auto battery_saver = "";
constexpr auto network_wifi_off = "";
constexpr auto wifi_off = "";
} // namespace material
} // namespace icons
} // namespace dwmstatus
#endif // DWMSTATUS_ICONS_HPP