You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
336 B
Bash
12 lines
336 B
Bash
#!/usr/bin/env bash
|
|
# prints all symbols that can be used to test output with font
|
|
echo -e '\ue30d Clear (Day)'
|
|
echo -e '\ue32b Clear (Night)'
|
|
echo -e '\ue302 Partly Cloud (Day)'
|
|
echo -e '\ue379 Partly Cloudy (Night)'
|
|
echo -e '\ue312 Cloud'
|
|
echo -e '\ue318 Rain'
|
|
echo -e '\ue31d Thunderstorm'
|
|
echo -e '\ue31a Snow'
|
|
echo -e '\ue313 Fog'
|