-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathicons.py
173 lines (141 loc) · 3.58 KB
/
icons.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Parameters
font_family: str = 'tabler-icons'
font_weight: str = 'normal'
span: str = f"<span font-family='{font_family}' font-weight='{font_weight}'>"
#Panels
apps: str = ""
dashboard: str = ""
chat: str = ""
wallpapers: str = ""
windows: str = ""
# Bar
colorpicker: str = ""
media: str = ""
#Toolbox
toolbox: str = ""
ssfull: str = ""
ssregion: str = ""
screenshots: str = ""
screenrecord: str = ""
recordings: str = ""
ocr: str = "ﳃ"
gamemode: str = ""
gamemode_off: str = ""
close : str = ""
# Circles
temp: str = ""
disk: str = ""
battery: str = ""
memory: str = "流"
cpu: str = ""
# AIchat
reload: str = ""
detach: str = ""
# Wallpapers
add: str = ""
sort: str = ""
circle: str = ""
# Chevrons
chevron_up: str = ""
chevron_down: str = ""
chevron_left: str = ""
chevron_right: str = ""
# Power
lock: str = ""
suspend: str = ""
logout: str = ""
reboot: str = ""
shutdown: str = ""
# Power Manager
power_saving: str = ""
power_balanced: str = "勺"
power_performance: str = ""
charging: str = ""
discharging: str = ""
alert: str = ""
bat_charging: str = ""
bat_discharging: str = ""
bat_low: str = "="
bat_full: str = ""
# Applets
wifi_0: str = ""
wifi_1: str = ""
wifi_2: str = ""
wifi_3: str = ""
world: str = ""
world_off: str = ""
bluetooth: str = ""
night: str = ""
coffee: str = ""
notifications: str = ""
wifi_off: str = ""
bluetooth_off: str = ""
night_off: str = ""
notifications_off: str = ""
notifications_clear: str = "";
download: str = ""
upload: str = ""
# Bluetooth
bluetooth_connected: str = ""
bluetooth_disconnected: str = ""
# Player
pause: str = ""
play: str = ""
stop: str = ""
skip_back: str = ""
skip_forward: str = ""
prev: str = ""
next: str = ""
shuffle: str = ""
repeat: str = ""
music: str = ""
rewind_backward_5: str = "謹"
rewind_forward_5: str = "難"
# Volume
vol_off: str = ""
vol_mute: str = ""
vol_medium: str = ""
vol_high: str = ""
mic: str = ""
mic_mute: str = ""
# Overview
circle_plus: str = ""
# Pins
paperclip: str = ""
# Clipboard Manager
clipboard: str = ""
clip_text: str = ""
# Confirm
accept: str = ""
cancel: str = ""
trash: str = ""
# Config
config: str = ""
# Icons
firefox: str = ""
chromium: str = ""
spotify: str = "ﺆ"
disc: str = "𐀾"
disc_off: str = ""
# Brightness
brightness_low: str = ""
brightness_medium: str = ""
brightness_high: str = ""
# Misc
dot: str = ""
palette: str = ""
cloud_off: str = ""
loader: str = ""
radar: str = ""
emoji: str = ""
keyboard: str = ""
terminal: str = ""
timer_off: str = ""
timer_on: str = ""
exceptions: list[str] = ['font_family', 'font_weight', 'span']
def apply_span() -> None:
global_dict = globals()
for key in global_dict:
if key not in exceptions and not key.startswith('__'):
global_dict[key] = f"{span}{global_dict[key]}</span>"
apply_span()