First commit
17
README.md
|
|
@ -1,2 +1,15 @@
|
||||||
# mgconky
|
TO INSTALL THIS CONKY CONFIG...
|
||||||
My configuration script for Conky
|
|
||||||
|
(1) If you do not alrady have a folder called ".conky" inside your home dir, then create it.
|
||||||
|
mkdir ~/.conky
|
||||||
|
|
||||||
|
(2) Place the "mgconky" folder (from this repo) inside your new ".conky" folder.
|
||||||
|
|
||||||
|
(3) Open up the conf file (~/.conky/mgconky/conf) in a text editor
|
||||||
|
|
||||||
|
* Perform the steps outlined in the section marked "!!!IMPORTANT!!!".
|
||||||
|
|
||||||
|
* To change colors, change the variables in the "Define Colors" section.
|
||||||
|
|
||||||
|
(4) To change weather icon colors, go into the "weather/Make_Icons/" subfolder and read the instructions located in the readme file there.
|
||||||
|
|
||||||
|
|
|
||||||
228
conf
Normal file
|
|
@ -0,0 +1,228 @@
|
||||||
|
###################################################################################################################################
|
||||||
|
# This Conky configuration file was created by Matt Grotke (mgrotke@gmail.com) and is in the public domain.
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# TO RUN THIS CONKY CONFIG, YOU CAN TYPE THE FOLLOWING IN A TERMINAL:
|
||||||
|
# conky -c ~/.conky/mgconky/conf
|
||||||
|
#
|
||||||
|
# TO STOP CONKY, YOU CAN TYPE THE FOLLOWING IN A TERMINAL:
|
||||||
|
# killall conky
|
||||||
|
#
|
||||||
|
# TO HAVE THIS CONKY RUN EVERY TIME AT BOOT, GO INTO "STARTUP SOFTWARE" APP AND ADD THE FOLLOWING COMMAND WITH A DELAY OF 10 SECONDS:
|
||||||
|
# conky -p 10 -c /home/<username>/.conky/mgconky/conf
|
||||||
|
# NOTE: It seems you must actually use the full path (/home/<username>) as the shortcut (~/) does not work.
|
||||||
|
#
|
||||||
|
# !!!IMPORTANT!!! THE FOLLOWING ARE REQUIREMENTS FOR THIS SCRIPT TO WORK PROPERLY:
|
||||||
|
# (1) Install software, if not already installed:
|
||||||
|
# "Conky" sudo apt-get install conky-all (or use software manager)
|
||||||
|
# "Jq" sudo apt-get install jq (or use software manager)
|
||||||
|
# "Curl" sudo apt-get install curl (or use software manager)
|
||||||
|
# "Wget" sudo apt-get install wget (or use software manager)
|
||||||
|
# "lm-sensors" sudo apt-get install lm-sensors (or use software manager)
|
||||||
|
# (2) Install custom fonts:
|
||||||
|
# "Neuropolitical" Place .ttf file in ~/.fonts/ https://www.dafont.com/font-comment.php?file=neuropolitical
|
||||||
|
# "StyleBats" Place .ttf file in ~/.fonts/ https://www.dafont.com/search.php?q=StyleBats
|
||||||
|
# (3) Set the included bash script(s) as executable
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/get_weather.sh
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/parse_weather.sh
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/parse_forecast.sh
|
||||||
|
# (4) Make a free account at https://openweathermap.org/
|
||||||
|
# (5) Write down your API key, which is found on the "API keys" tab after you log in. (https://home.openweathermap.org/api_keys)
|
||||||
|
# (6) Find your city's location ID by entering your CITY NAME in the search box and select your city from the search results.
|
||||||
|
# Your location ID will be the number in the URL (for example: https://openweathermap.org/city/5128581)
|
||||||
|
# (7) In this conf file below, set the following variables:
|
||||||
|
# "template6" Set to your API key.
|
||||||
|
# "template7" Set to your location ID.
|
||||||
|
# "template8" Set to either "imperial" (for Fahrenheit) or "metric" (for Celsius).
|
||||||
|
# (8) Modify the drive names below with your device name(s), i.e. "/dev/sda", "/dev/sdb", "/dev/sdc", etc.
|
||||||
|
# (9) Modify the filesystems below with your mount name(s), i.e. "/" (root), "/mnt/MyData", "/media/<username>/MyUSBStick", etc.
|
||||||
|
# (10) Replace "enp34s0" below with name of your ethernet device. (Find name of ethernet device by typing "ip a" in terminal.)
|
||||||
|
# (11) If you use Wi-Fi instead of ethernet, change the Network section. The following variables are available from Conky:
|
||||||
|
# ${wireless_ap <device>} Wireless access point MAC address
|
||||||
|
# ${wireless_bitrate <device>} Wireless bitrate (ie 11 Mb/s)
|
||||||
|
# ${wireless_essid <device>} Wireless access point ESSID
|
||||||
|
# ${wireless_link_bar <h>,<w> <device>} Wireless link quality bar
|
||||||
|
# ${wireless_link_qual <device>} Wireless link quality
|
||||||
|
# ${wireless_link_qual_max <device>} Wireless link quality maximum value
|
||||||
|
# ${wireless_link_qual_perc <device>} Wireless link quality in percents
|
||||||
|
# ${wireless_mode <device>} Wireless mode (Managed/Ad-Hoc/Master)
|
||||||
|
###################################################################################################################################
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Window and drawing properties
|
||||||
|
#--------------------------
|
||||||
|
alignment top_right
|
||||||
|
minimum_size 225
|
||||||
|
maximum_width 225
|
||||||
|
gap_x 15
|
||||||
|
gap_y 15
|
||||||
|
background no
|
||||||
|
own_window yes
|
||||||
|
own_window_transparent yes
|
||||||
|
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
|
||||||
|
own_window_type normal
|
||||||
|
double_buffer yes
|
||||||
|
draw_shades no
|
||||||
|
draw_outline no
|
||||||
|
draw_borders no
|
||||||
|
draw_graph_borders yes
|
||||||
|
no_buffers yes
|
||||||
|
imlib_cache_size 0
|
||||||
|
cpu_avg_samples 2
|
||||||
|
update_interval 1.5
|
||||||
|
total_run_times 0
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Define fonts
|
||||||
|
#--------------------------
|
||||||
|
use_xft yes
|
||||||
|
xftalpha 0.9
|
||||||
|
#xftfont DejaVu Sans:size=8
|
||||||
|
xftfont Courier:size=9
|
||||||
|
override_utf8_locale yes # Force UTF8? Requires XFT (see above)... will displays degree symbol, instead of °, etc.
|
||||||
|
short_units yes
|
||||||
|
uppercase no
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Define Colors
|
||||||
|
#--------------------------
|
||||||
|
default_color white
|
||||||
|
default_shade_color black
|
||||||
|
default_outline_color green
|
||||||
|
color0 orange # Titles
|
||||||
|
color1 slategrey # Horizonal lines
|
||||||
|
color2 white # Not used
|
||||||
|
color3 lime # Values
|
||||||
|
color4 yellow # Important
|
||||||
|
color5 lime # Bar graphs
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Weather variables
|
||||||
|
#--------------------------
|
||||||
|
template6 "<ENTER YOUR API KEY HERE>" # OpenWeatherMap API key (https://home.openweathermap.org/api_keys)
|
||||||
|
template7 "<ENTER YOUR CITY ID HERE>" # OpenWeatherMap City ID (the number in the URL of your city, for example: https://openweathermap.org/city/5128581)
|
||||||
|
template8 "imperial" # Temp unit ("default" for Kelvin, "metric" for Celcius, "imperial" for Fahrenheit)
|
||||||
|
template9 "" # Locale (e.g. "es_ES.UTF-8") # Leave empty for default
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Load Lua script(s) -- If multiple files, separate each path with a space. They should all be loaded on a single lua_load command.
|
||||||
|
#--------------------------
|
||||||
|
lua_load ~/.conky/mgconky/rounding.lua
|
||||||
|
|
||||||
|
TEXT
|
||||||
|
#--------------------------
|
||||||
|
# Linux Mint Logo and Text
|
||||||
|
#--------------------------
|
||||||
|
${image ~/.conky/mgconky/mint_logo.png -s 35x35 -p 0,0}\
|
||||||
|
${voffset 0}${goto 50}${font Neuropolitical:pixelsize=12}${color0}${execi 100000 lsb_release -sd || cat /etc/*release}${color}${font}
|
||||||
|
${voffset 0}${goto 50}${font Neuropolitical:size=10}${nodename}${font}
|
||||||
|
${voffset 8}Kernel: ${color3}${alignr}${sysname} ${kernel}${color}
|
||||||
|
${voffset 2}Uptime: ${color3}${alignr}${uptime_short}${color}
|
||||||
|
${voffset 2}CPU:${goto 50}${color4}${execi 10 sensors | grep "Tdie" | cut -c16-17}°C${color}${goto 100}${alignr}GPU: ${color4}${nvidia temp}°C${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Weather
|
||||||
|
#--------------------------
|
||||||
|
# ***** Download weather data and position icons *****
|
||||||
|
${execi 300 ~/.conky/mgconky/weather/get_weather.sh ${template6} ${template7} ${template8} ${template9}}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime64/$(~/.conky/mgconky/weather/parse_weather.sh 'iconid').png ~/.cache/mgconky/weather0.png}${image ~/.cache/mgconky/weather0.png -p 40,135 -s 64x64}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '1').png ~/.cache/mgconky/weather1.png}${image ~/.cache/mgconky/weather1.png -p 20,219 -s 32x32}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '2').png ~/.cache/mgconky/weather2.png}${image ~/.cache/mgconky/weather2.png -p 96,219 -s 32x32}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '3').png ~/.cache/mgconky/weather3.png}${image ~/.cache/mgconky/weather3.png -p 175,219 -s 32x32}
|
||||||
|
# ***** Today's date *****
|
||||||
|
${voffset -15}${color0}${alignc}${font Neuropolitical:size=10}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'location'}${font}${color}
|
||||||
|
${voffset -4}${color0}${alignc}${font Neuropolitical:size=10}${execi 300 LANG=${template9} LC_TIME=${template9} date +'%^a, %e %^B'}${font}${color}
|
||||||
|
# ***** Temperature right now *****
|
||||||
|
${voffset 7}${alignc -40}${color3}${font Courier:size=20:bold}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'temperature'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${font}${color}
|
||||||
|
# ***** Today's high/low temps *****
|
||||||
|
${voffset 5}${alignc -40}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '0'}${color}\
|
||||||
|
/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '0'}\
|
||||||
|
${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
# ***** Description of weather right now *****
|
||||||
|
#${voffset 0}${alignc}${color3}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'description'}${color}
|
||||||
|
# ***** Forecast day labels (MON, TUES, WED, etc) *****
|
||||||
|
${voffset 15}${color0}${font Neuropolitical:size=10}${alignc 77}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +1day +%^a}${font}${color}
|
||||||
|
${voffset -18}${color0}${font Neuropolitical:size=10}${alignc}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +2day +%^a}${font}${color}
|
||||||
|
${voffset -18}${color0}${font Neuropolitical:size=10}${alignc -77}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +3day +%^a}${font}${color}
|
||||||
|
# ***** Forecast high/low temps *****
|
||||||
|
${voffset 32}${alignc 77}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '1'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '1'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
${voffset -13}${alignc}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '2'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '2'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
${voffset -13}${alignc -77}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '3'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '3'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
#
|
||||||
|
#--------------------------
|
||||||
|
# Memory
|
||||||
|
#--------------------------
|
||||||
|
#${voffset -10}${color0}${font Neuropolitical:size=8:bold}MEMORY ${color1}${hr 2}${color}${font}
|
||||||
|
#${voffset 4}RAM:${alignr}${color3}${lua MyRound ${mem} 1 halfup G hideUnit}${color} of ${color3}${lua MyRound ${memmax} 0 ceil G addSpace}B${color}
|
||||||
|
#${voffset -2}${color5}${membar}${color}
|
||||||
|
#${voffset 2}Swap:${alignr}${color3}${lua MyRound ${swap} 1 halfup G hideUnit}${color} of ${color3}${lua MyRound ${swapmax} 0 ceil G addSpace}B${color}
|
||||||
|
#${voffset -2}${color5}${swapbar}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #1
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/nvme0n1${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** Read and write speeds for this device *****
|
||||||
|
#${voffset 4}Read: ${color3}${diskio_read nvme0n1}/s${color}${goto 120}Write: ${color3}${diskio_write nvme0n1}/s${color}
|
||||||
|
#${voffset -4}${color5}${diskiograph_read nvme0n1 14,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write nvme0n1 14,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 2}/:${alignr}${color3}${lua MyRound ${fs_used /} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar /}${color}
|
||||||
|
${voffset 2}/home:${alignr}${color3}${lua MyRound ${fs_used /home} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /home} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar /home}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #2
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/sda${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** Read and write speeds for this device *****
|
||||||
|
#${voffset 4}Read: ${color3}${diskio_read sda}/s${color}${goto 120}Write: ${color3}${diskio_write sda}/s${color}
|
||||||
|
#${voffset -4}${color5}${diskiograph_read sda 14,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write sda 14,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 2}/mnt/SSD120:${alignr}${color3}${lua MyRound ${fs_used /mnt/SSD120} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /mnt/SSD120} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar 6 /mnt/SSD120}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #3
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/sdb${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** Read and write speeds for this device *****
|
||||||
|
#${voffset 4}Read: ${color3}${diskio_read sdb}/s${color}${goto 120}Write: ${color3}${diskio_write sdb}/s${color}
|
||||||
|
#${voffset -4}${color5}${diskiograph_read sdb 14,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write sdb 14,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 2}/mnt/SSD180:${alignr}${color3}${lua MyRound ${fs_used /mnt/SSD180} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /mnt/SSD180} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar 6 /mnt/SSD180}${color}
|
||||||
|
|
||||||
|
#----------------------
|
||||||
|
# Top Processes
|
||||||
|
#----------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}TOP PROCESSES ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}By Memory Usage${goto 142}PID${alignr}RAM
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 1}${goto 140}${top_mem pid 1}${alignr}${top_mem mem_res 1}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 2}${goto 140}${top_mem pid 2}${alignr}${top_mem mem_res 2}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 3}${goto 140}${top_mem pid 3}${alignr}${top_mem mem_res 3}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 4}${goto 140}${top_mem pid 4}${alignr}${top_mem mem_res 4}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 5}${goto 140}${top_mem pid 5}${alignr}${top_mem mem_res 5}${color}
|
||||||
|
${voffset 6}By CPU Usage${goto 142}PID${alignr}CPU
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 1}${goto 140}${top pid 1}${alignr}${top cpu 1}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 2}${goto 140}${top pid 2}${alignr}${top cpu 2}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 3}${goto 140}${top pid 3}${alignr}${top cpu 3}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 4}${goto 140}${top pid 4}${alignr}${top cpu 4}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 5}${goto 140}${top pid 5}${alignr}${top cpu 5}%${color}
|
||||||
|
|
||||||
|
#--------------------
|
||||||
|
# Network -- Replace "enp34s0" below with name of your ethernet device. (Find name of ethernet device by typing "ip a" in terminal.)
|
||||||
|
#--------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}NETWORK ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}Ethernet Device:${goto 140}${color3}${gw_iface}${color}
|
||||||
|
${voffset 0}Internal IP:${goto 140}${color3}${addr enp34s0}${color}
|
||||||
|
${voffset 0}External IP:${goto 140}${color3}${execi 1800 wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]\|.]//g'}${color}
|
||||||
|
${voffset 6}DL: ${color3}${downspeed enp34s0}/s${color}${goto 140}UL:${color} ${color3}${upspeed enp34s0}/s${color}
|
||||||
|
${voffset -2}${color5}${downspeedgraph enp34s0 25,90 000000 ff0000}${color}${alignr}${color5}${upspeedgraph enp34s0 25,90 000000 00ffff}${color}
|
||||||
|
${voffset -6}Total: ${color3}${totaldown enp34s0}${color}${goto 140}Total:${color} ${color3}${totalup enp34s0}${color}
|
||||||
|
|
||||||
|
#--------------------
|
||||||
|
# Connections - netstat shows number of connections from your computer and application/PID making it. Kill spyware!
|
||||||
|
#--------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}CONNECTIONS ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}Num. connections / PID / Process
|
||||||
|
${voffset 2}${color3}${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d: -f1 | sort | uniq -c | sort -nr}${color}
|
||||||
247
conf_full
Normal file
|
|
@ -0,0 +1,247 @@
|
||||||
|
###################################################################################################################################
|
||||||
|
# This Conky configuration file was created by Matt Grotke (mgrotke@gmail.com) and is in the public domain.
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# TO RUN THIS CONKY CONFIG, YOU CAN TYPE THE FOLLOWING IN A TERMINAL:
|
||||||
|
# conky -c ~/.conky/mgconky/conf
|
||||||
|
#
|
||||||
|
# TO STOP CONKY, YOU CAN TYPE THE FOLLOWING IN A TERMINAL:
|
||||||
|
# killall conky
|
||||||
|
#
|
||||||
|
# TO HAVE THIS CONKY RUN EVERY TIME AT BOOT, GO INTO "STARTUP SOFTWARE" APP AND ADD THE FOLLOWING COMMAND WITH A DELAY OF 10 SECONDS:
|
||||||
|
# conky -p 10 -c /home/<username>/.conky/mgconky/conf
|
||||||
|
# NOTE: It seems you must actually use the full path (/home/<username>) as the shortcut (~/) does not work.
|
||||||
|
#
|
||||||
|
# !!!IMPORTANT!!! THE FOLLOWING ARE REQUIREMENTS FOR THIS SCRIPT TO WORK PROPERLY:
|
||||||
|
# (1) Install software, if not already installed:
|
||||||
|
# "Conky" sudo apt-get install conky-all (or use software manager)
|
||||||
|
# "Jq" sudo apt-get install jq (or use software manager)
|
||||||
|
# "Curl" sudo apt-get install curl (or use software manager)
|
||||||
|
# "Wget" sudo apt-get install wget (or use software manager)
|
||||||
|
# "lm-sensors" sudo apt-get install lm-sensors (or use software manager)
|
||||||
|
# (2) Install custom fonts:
|
||||||
|
# "Neuropolitical" Place .ttf file in ~/.fonts/ https://www.dafont.com/font-comment.php?file=neuropolitical
|
||||||
|
# "StyleBats" Place .ttf file in ~/.fonts/ https://www.dafont.com/search.php?q=StyleBats
|
||||||
|
# (3) Set the included bash script(s) as executable
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/get_weather.sh
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/parse_weather.sh
|
||||||
|
# chmod +x ~/.conky/mgconky/weather/parse_forecast.sh
|
||||||
|
# (4) Make a free account at https://openweathermap.org/
|
||||||
|
# (5) Write down your API key, which is found on the "API keys" tab after you log in. (https://home.openweathermap.org/api_keys)
|
||||||
|
# (6) Find your city's location ID by entering your CITY NAME in the search box and select your city from the search results.
|
||||||
|
# Your location ID will be the number in the URL (for example: https://openweathermap.org/city/5128581)
|
||||||
|
# (7) In this conf file below, set the following variables:
|
||||||
|
# "template6" Set to your API key.
|
||||||
|
# "template7" Set to your location ID.
|
||||||
|
# "template8" Set to either "imperial" (for Fahrenheit) or "metric" (for Celsius).
|
||||||
|
# (8) Modify the drive names below with your device name(s), i.e. "/dev/sda", "/dev/sdb", "/dev/sdc", etc.
|
||||||
|
# (9) Modify the filesystems below with your mount name(s), i.e. "/" (root), "/mnt/MyData", "/media/<username>/MyUSBStick", etc.
|
||||||
|
# (10) Replace "enp34s0" below with name of your ethernet device. (Find name of ethernet device by typing "ip a" in terminal.)
|
||||||
|
# (11) If you use Wi-Fi instead of ethernet, change the Network section. The following variables are available from Conky:
|
||||||
|
# ${wireless_ap <device>} Wireless access point MAC address
|
||||||
|
# ${wireless_bitrate <device>} Wireless bitrate (ie 11 Mb/s)
|
||||||
|
# ${wireless_essid <device>} Wireless access point ESSID
|
||||||
|
# ${wireless_link_bar <h>,<w> <device>} Wireless link quality bar
|
||||||
|
# ${wireless_link_qual <device>} Wireless link quality
|
||||||
|
# ${wireless_link_qual_max <device>} Wireless link quality maximum value
|
||||||
|
# ${wireless_link_qual_perc <device>} Wireless link quality in percents
|
||||||
|
# ${wireless_mode <device>} Wireless mode (Managed/Ad-Hoc/Master)
|
||||||
|
###################################################################################################################################
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Window and drawing properties
|
||||||
|
#--------------------------
|
||||||
|
alignment top_right
|
||||||
|
minimum_size 225
|
||||||
|
maximum_width 225
|
||||||
|
gap_x 15
|
||||||
|
gap_y 15
|
||||||
|
background no
|
||||||
|
own_window yes
|
||||||
|
own_window_transparent yes
|
||||||
|
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
|
||||||
|
own_window_type normal
|
||||||
|
double_buffer yes
|
||||||
|
draw_shades no
|
||||||
|
draw_outline no
|
||||||
|
draw_borders no
|
||||||
|
draw_graph_borders yes
|
||||||
|
no_buffers yes
|
||||||
|
imlib_cache_size 0
|
||||||
|
cpu_avg_samples 2
|
||||||
|
update_interval 1.5
|
||||||
|
total_run_times 0
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Define fonts
|
||||||
|
#--------------------------
|
||||||
|
use_xft yes
|
||||||
|
xftalpha 0.9
|
||||||
|
#xftfont DejaVu Sans:size=8
|
||||||
|
xftfont Courier:size=9
|
||||||
|
override_utf8_locale yes # Force UTF8? Requires XFT (see above)... will displays degree symbol, instead of °, etc.
|
||||||
|
short_units yes
|
||||||
|
uppercase no
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Define Colors
|
||||||
|
#--------------------------
|
||||||
|
default_color white
|
||||||
|
default_shade_color black
|
||||||
|
default_outline_color green
|
||||||
|
color0 orange # Titles
|
||||||
|
color1 slategrey # Horizonal lines
|
||||||
|
color2 white # Not used
|
||||||
|
color3 lime # Values
|
||||||
|
color4 yellow # Important
|
||||||
|
color5 lime # Bar graphs
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Weather variables
|
||||||
|
#--------------------------
|
||||||
|
template6 "<ENTER YOUR API KEY HERE>" # OpenWeatherMap API key (https://home.openweathermap.org/api_keys)
|
||||||
|
template7 "<ENTER YOUR CITY ID HERE>" # OpenWeatherMap City ID (the number in the URL of your city, for example: https://openweathermap.org/city/5128581)
|
||||||
|
template8 "imperial" # Temp unit ("default" for Kelvin, "metric" for Celcius, "imperial" for Fahrenheit)
|
||||||
|
template9 "" # Locale (e.g. "es_ES.UTF-8") # Leave empty for default
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Load Lua script(s) -- If multiple files, separate each path with a space. They should all be loaded on a single lua_load command.
|
||||||
|
#--------------------------
|
||||||
|
lua_load ~/.conky/mgconky/rounding.lua
|
||||||
|
|
||||||
|
TEXT
|
||||||
|
#--------------------------
|
||||||
|
# Linux Mint Logo and Text
|
||||||
|
#--------------------------
|
||||||
|
${image ~/.conky/mgconky/mint_logo.png -s 35x35}${goto 50}${font Neuropolitical:pixelsize=12}${color0}${execi 100000 lsb_release -sd || cat /etc/*release}${color}${font}
|
||||||
|
${goto 50}${font Neuropolitical:size=10}${nodename}${font}
|
||||||
|
${voffset 8}Kernel: ${color3}${alignr}${sysname} ${kernel}${color}
|
||||||
|
${voffset 2}Uptime: ${color3}${alignr}${uptime_short}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Weather
|
||||||
|
#--------------------------
|
||||||
|
# ***** Download weather data and position icons *****
|
||||||
|
${execi 300 ~/.conky/mgconky/weather/get_weather.sh ${template6} ${template7} ${template8} ${template9}}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime64/$(~/.conky/mgconky/weather/parse_weather.sh 'iconid').png ~/.cache/mgconky/weather0.png}${image ~/.cache/mgconky/weather0.png -p 40,140 -s 64x64}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '1').png ~/.cache/mgconky/weather1.png}${image ~/.cache/mgconky/weather1.png -p 20,216 -s 32x32}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '2').png ~/.cache/mgconky/weather2.png}${image ~/.cache/mgconky/weather2.png -p 96,216 -s 32x32}\
|
||||||
|
${execi 300 cp -f ~/.conky/mgconky/weather/lime32/$(~/.conky/mgconky/weather/parse_forecast.sh 'first' '.weather[0].id' '3').png ~/.cache/mgconky/weather3.png}${image ~/.cache/mgconky/weather3.png -p 175,216 -s 32x32}
|
||||||
|
# ***** Today's date *****
|
||||||
|
${voffset -15}${color0}${alignc}${font Neuropolitical:size=10}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'location'}${font}${color}
|
||||||
|
${voffset -4}${color0}${alignc}${font Neuropolitical:size=10}${execi 300 LANG=${template9} LC_TIME=${template9} date +'%^a, %e %^B'}${font}${color}
|
||||||
|
${voffset 4}${alignc}${color3}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'description'}${color}
|
||||||
|
# ***** Temperature right now *****
|
||||||
|
${voffset 8}${alignc -40}${color3}${font Courier:size=20:bold}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'temperature'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${font}${color}
|
||||||
|
# ***** Today's high/low temps *****
|
||||||
|
${voffset 3}${alignc -40}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '0'}${color}\
|
||||||
|
/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '0'}\
|
||||||
|
${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
# ***** Description of weather right now *****
|
||||||
|
#${voffset 0}${alignc}${color3}${execi 300 ~/.conky/mgconky/weather/parse_weather.sh 'description'}${color}
|
||||||
|
# ***** Forecast day labels (MON, TUES, WED, etc) *****
|
||||||
|
${voffset 17}${color0}${font Neuropolitical:size=10}${alignc 77}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +1day +%^a}${font}${color}
|
||||||
|
${voffset -18}${color0}${font Neuropolitical:size=10}${alignc}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +2day +%^a}${font}${color}
|
||||||
|
${voffset -18}${color0}${font Neuropolitical:size=10}${alignc -77}${execi 300 LANG=${template9} LC_TIME=${template9} date -d +3day +%^a}${font}${color}
|
||||||
|
# ***** Forecast high/low temps *****
|
||||||
|
${voffset 32}${alignc 77}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '1'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '1'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
${voffset -13}${alignc}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '2'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '2'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
${voffset -13}${alignc -77}${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'min' '.main.temp_min' '3'}${color}/${color3}${execi 300 ~/.conky/mgconky/weather/parse_forecast.sh 'max' '.main.temp_max' '3'}${if_match $template8 == "metric"}°C${else}${if_match $template8 == "imperial"}°F${else}${if_match $template8 == "default"}K${endif}${endif}${endif}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Processor
|
||||||
|
#--------------------------
|
||||||
|
${color0}${font Neuropolitical:size=8:bold}PROCESSOR ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 4}${color3}${font DejaVu Sans:size=8}${execi 100000 cat /proc/cpuinfo | grep 'model name' | cut -c 14-55 | uniq }${font}${color}
|
||||||
|
${voffset 2}Temp: ${color4}${execi 10 sensors | grep "Tdie" | cut -c16-19 }°C${color}${alignr}Freq: ${color3}${freq}MHz${color}
|
||||||
|
${voffset 0}${color5}${cpugraph 000000 00ffff}${color}
|
||||||
|
${voffset -4}Core 1:${goto 60}${color5}${cpubar cpu1 6,140}${color}${alignr}${color3}${cpu cpu1}%${color}
|
||||||
|
${voffset 0}Core 2:${goto 60}${color5}${cpubar cpu2 6,140}${color}${alignr}${color3}${cpu cpu2}%${color}
|
||||||
|
${voffset 0}Core 3:${goto 60}${color5}${cpubar cpu3 6,140}${color}${alignr}${color3}${cpu cpu3}%${color}
|
||||||
|
${voffset 0}Core 4:${goto 60}${color5}${cpubar cpu4 6,140}${color}${alignr}${color3}${cpu cpu4}%${color}
|
||||||
|
${voffset 0}Core 5:${goto 60}${color5}${cpubar cpu5 6,140}${color}${alignr}${color3}${cpu cpu5}%${color}
|
||||||
|
${voffset 0}Core 6:${goto 60}${color5}${cpubar cpu6 6,140}${color}${alignr}${color3}${cpu cpu6}%${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Graphics card
|
||||||
|
#--------------------------
|
||||||
|
${color0}${font Neuropolitical:size=8:bold}GRAPHICS CARD ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 4}Temp: ${color4}${nvidia temp}°C${color}${alignr}Threshold: ${color3}${nvidia threshold}°C${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Memory
|
||||||
|
#--------------------------
|
||||||
|
${color0}${font Neuropolitical:size=8:bold}MEMORY ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 4}RAM:${alignr}${color3}${lua MyRound ${mem} 1 halfup G hideUnit}${color} of ${color3}${lua MyRound ${memmax} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${membar}${color}
|
||||||
|
${voffset 2}Swap:${alignr}${color3}${lua MyRound ${swap} 1 halfup G hideUnit}${color} of ${color3}${lua MyRound ${swapmax} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${swapbar}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #1
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/nvme0n1${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** First we show the device *****
|
||||||
|
${voffset 4}Read:${color} ${color3}${diskio_read nvme0n1}/s${color}${goto 120}Write: ${color3}${diskio_write nvme0n1}/s${color}
|
||||||
|
${voffset -4}${color5}${diskiograph_read nvme0n1 25,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write nvme0n1 25,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 0}/ (root):${alignr}${color3}${lua MyRound ${fs_used /} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar /}${color}
|
||||||
|
${voffset 2}/home:${alignr}${color3}${lua MyRound ${fs_used /home} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /home} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar /home}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #2
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/sda${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** First we show the device *****
|
||||||
|
${voffset 4}Read: ${color3}${diskio_read sda}/s${color}${goto 120}Write: ${color3}${diskio_write sda}/s${color}
|
||||||
|
${voffset -4}${color5}${diskiograph_read sda 25,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write sda 25,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 0}/mnt/SSD120:${alignr}${color3}${lua MyRound ${fs_used /mnt/SSD120} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /mnt/SSD120} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar 6 /mnt/SSD120}${color}
|
||||||
|
|
||||||
|
#--------------------------
|
||||||
|
# Drive #3
|
||||||
|
#--------------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}DRIVE${font} /dev/sdb${color} ${color1}${hr 2}${color}
|
||||||
|
# ***** First we show the device *****
|
||||||
|
${voffset 4}Read: ${color3}${diskio_read sdb}/s${color}${goto 120}Write: ${color3}${diskio_write sdb}/s${color}
|
||||||
|
${voffset -4}${color5}${diskiograph_read sdb 25,110 000000 ff0000}${color}${alignr}${color5}${diskiograph_write sdb 25,110 000000 00ffff}${color}
|
||||||
|
# ***** Now we show the mounts under this device *****
|
||||||
|
${voffset 0}/mnt/SSD180:${alignr}${color3}${lua MyRound ${fs_used /mnt/SSD180} 0 halfup G hideUnit}${color} of ${color3}${lua MyRound ${fs_size /mnt/SSD180} 0 ceil G addSpace}B${color}
|
||||||
|
${voffset -2}${color5}${fs_bar 6 /mnt/SSD180}${color}
|
||||||
|
|
||||||
|
#----------------------
|
||||||
|
# Top Processes
|
||||||
|
#----------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}TOP PROCESSES ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}By Memory Usage${goto 142}PID${alignr}RAM
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 1}${goto 140}${top_mem pid 1}${alignr}${top_mem mem_res 1}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 2}${goto 140}${top_mem pid 2}${alignr}${top_mem mem_res 2}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 3}${goto 140}${top_mem pid 3}${alignr}${top_mem mem_res 3}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 4}${goto 140}${top_mem pid 4}${alignr}${top_mem mem_res 4}${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top_mem name 5}${goto 140}${top_mem pid 5}${alignr}${top_mem mem_res 5}${color}
|
||||||
|
${voffset 6}By CPU Usage${goto 142}PID${alignr}CPU
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 1}${goto 140}${top pid 1}${alignr}${top cpu 1}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 2}${goto 140}${top pid 2}${alignr}${top cpu 2}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 3}${goto 140}${top pid 3}${alignr}${top cpu 3}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 4}${goto 140}${top pid 4}${alignr}${top cpu 4}%${color}
|
||||||
|
${voffset 0}${font StyleBats:size=10}h${font}${voffset -1}${color3}${offset 5}${top name 5}${goto 140}${top pid 5}${alignr}${top cpu 5}%${color}
|
||||||
|
|
||||||
|
#--------------------
|
||||||
|
# Network -- Replace "enp34s0" below with name of your ethernet device. (Find name of ethernet device by typing "ip a" in terminal.)
|
||||||
|
#--------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}NETWORK ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}Ethernet Device:${goto 140}${color3}${gw_iface}${color}
|
||||||
|
${voffset 0}Internal IP:${goto 140}${color3}${addr enp34s0}${color}
|
||||||
|
${voffset 0}External IP:${goto 140}${color3}${execi 1800 wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]\|.]//g'}${color}
|
||||||
|
${voffset 6}DL: ${color3}${downspeed enp34s0}/s${color}${goto 140}UL:${color} ${color3}${upspeed enp34s0}/s${color}
|
||||||
|
${voffset -2}${color5}${downspeedgraph enp34s0 25,90 000000 ff0000}${color}${alignr}${color5}${upspeedgraph enp34s0 25,90 000000 00ffff}${color}
|
||||||
|
${voffset -6}Total: ${color3}${totaldown enp34s0}${color}${goto 140}Total:${color} ${color3}${totalup enp34s0}${color}
|
||||||
|
|
||||||
|
#--------------------
|
||||||
|
# Connections - netstat shows number of connections from your computer and application/PID making it. Kill spyware!
|
||||||
|
#--------------------
|
||||||
|
${voffset 0}${color0}${font Neuropolitical:size=8:bold}CONNECTIONS ${color1}${hr 2}${color}${font}
|
||||||
|
${voffset 6}Num. connections / PID / Process
|
||||||
|
${voffset 2}${color3}${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d: -f1 | sort | uniq -c | sort -nr}${color}
|
||||||
BIN
mint_logo.png
Normal file
|
After Width: | Height: | Size: 98 KiB |
145
rounding.lua
Normal file
|
|
@ -0,0 +1,145 @@
|
||||||
|
--[[ ##############################################################################################################################
|
||||||
|
# This lua file was created by Matt Grotke (mgrotke@gmail.com) and is in the public domain.
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# The function below is intended to be called by a Conky config file in the following way:
|
||||||
|
# ${lua MyRound <value to round> <decimal places> <rounding type> <unit to use> <option>}
|
||||||
|
#
|
||||||
|
# Note that the function name in this file is "conky_MyRound" but it is called from Conky using "MyRound". This is normal.
|
||||||
|
#
|
||||||
|
# All arguments are mandatory:
|
||||||
|
# <value to round> Requires a numeric value, which may or may not contiain a trailing unit letter (it is expected that the Conky configuration variable "short_units" is set to "yes").
|
||||||
|
# <decimal places> Requires an integer, such as 0 (for no decimal places), 1, 2, etc.
|
||||||
|
# <rounding type> Requires one of the following (no quotes used): halfup, floor, ceil. Halfup is "standard" rounding where less than .5 goes down, and .5 and over goes up.
|
||||||
|
# <unit to use> Requires one of the following (no quotes used): auto, B, K, M, G, T. They will convert the number to Bytes, Kilobytes, Megabytes, Gigabytes, or Terabytes.
|
||||||
|
# <options> Requires one of the following (no quotes used): normal, hideUnit, addSpace.
|
||||||
|
# Examples:
|
||||||
|
# ${lua MyRound ${mem} 0 halfup auto normal} # Displays memory used, rounded to the nearest whole number, shown in whatever unit Conky determines is the most appropriate.
|
||||||
|
# ${lua MyRound ${mem} 0 halfup M normal} # Displays memory used, rounded to the nearest whole number, shown in Megabytes.
|
||||||
|
# ${lua MyRound ${mem} 0 ceil G hideUnit} # Displays memory used, rounded to the next whole number. The value WILL be in Megabytes, but a unit will not be displayed.
|
||||||
|
# ${lua MyRound ${mem} 1 halfup G addSpace} # Displays memory used, rounded to the nearest 1 decimal place, shown in Gigabytes. There will be a space before the G.
|
||||||
|
############################################################################################################################## ]]--
|
||||||
|
do
|
||||||
|
function conky_MyRound(arg, places, roundType, useUnit, modify)
|
||||||
|
|
||||||
|
-- Get args passed from Conky
|
||||||
|
local sArg = conky_parse(arg)
|
||||||
|
local sPlaces = conky_parse(places)
|
||||||
|
local sRoundType = conky_parse(roundType)
|
||||||
|
local sUseUnit = conky_parse(useUnit)
|
||||||
|
local sModify = conky_parse(modify)
|
||||||
|
|
||||||
|
-- Convert args into types
|
||||||
|
local nPlaces = tonumber(sPlaces)
|
||||||
|
local nValue = tonumber(sArg)
|
||||||
|
local sLastChar = ""
|
||||||
|
if nValue == nil then
|
||||||
|
-- It's not a number, because we assume it has a single char unit trailing
|
||||||
|
sLastChar = string.sub(sArg, -1) --select the last char
|
||||||
|
nValue = tonumber(string.sub(sArg, 0, string.len(sArg) - 1)) --select the first part of the string, except for the last char
|
||||||
|
if nValue == nil then return "Error, not number" end -- Still not a number
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Convert unit
|
||||||
|
local sUnitText = ""
|
||||||
|
if sUseUnit == "auto" then
|
||||||
|
sUnitText = sLastChar
|
||||||
|
elseif sUseUnit == sLastChar then
|
||||||
|
sUnitText = sLastChar
|
||||||
|
else
|
||||||
|
sUnitText = sUseUnit
|
||||||
|
if sLastChar == "B" then
|
||||||
|
if sUseUnit == "K" then
|
||||||
|
nValue = nValue / 1000
|
||||||
|
elseif sUseUnit == "M" then
|
||||||
|
nValue = nValue / 1000000
|
||||||
|
elseif sUseUnit == "G" then
|
||||||
|
nValue = nValue / 1000000000
|
||||||
|
elseif sUseUnit == "T" then
|
||||||
|
nValue = nValue / 1000000000000
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
elseif sLastChar == "K" then
|
||||||
|
if sUseUnit == "B" then
|
||||||
|
nValue = nValue * 1000
|
||||||
|
elseif sUseUnit == "M" then
|
||||||
|
nValue = nValue / 1000
|
||||||
|
elseif sUseUnit == "G" then
|
||||||
|
nValue = nValue / 1000000
|
||||||
|
elseif sUseUnit == "T" then
|
||||||
|
nValue = nValue / 1000000000
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
elseif sLastChar == "M" then
|
||||||
|
if sUseUnit == "B" then
|
||||||
|
nValue = nValue * 1000000
|
||||||
|
elseif sUseUnit == "K" then
|
||||||
|
nValue = nValue * 1000
|
||||||
|
elseif sUseUnit == "G" then
|
||||||
|
nValue = nValue / 1000
|
||||||
|
elseif sUseUnit == "T" then
|
||||||
|
nValue = nValue / 1000000
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
elseif sLastChar == "G" then
|
||||||
|
if sUseUnit == "B" then
|
||||||
|
nValue = nValue * 1000000000
|
||||||
|
elseif sUseUnit == "K" then
|
||||||
|
nValue = nValue * 1000000
|
||||||
|
elseif sUseUnit == "M" then
|
||||||
|
nValue = nValue * 1000
|
||||||
|
elseif sUseUnit == "T" then
|
||||||
|
nValue = nValue / 1000
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
elseif sLastChar == "T" then
|
||||||
|
if sUseUnit == "B" then
|
||||||
|
nValue = nValue * 1000000000000
|
||||||
|
elseif sUseUnit == "K" then
|
||||||
|
nValue = nValue * 1000000000
|
||||||
|
elseif sUseUnit == "M" then
|
||||||
|
nValue = nValue * 1000000
|
||||||
|
elseif sUseUnit == "G" then
|
||||||
|
nValue = nValue * 1000
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
else
|
||||||
|
return "Error, invalid unit"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Modify unit?
|
||||||
|
if sModify == "normal" then
|
||||||
|
--do nothing (keep unit text how it is)
|
||||||
|
elseif sModify == "hideUnit" then
|
||||||
|
sUnitText = ""
|
||||||
|
elseif sModify == "addSpace" then
|
||||||
|
sUnitText = string.format(" %s", sUnitText)
|
||||||
|
else
|
||||||
|
return "Error, invalid modify"
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Do the rounding
|
||||||
|
local nRounded = 0
|
||||||
|
if sRoundType == "halfup" then
|
||||||
|
local nPower = math.pow(10, nPlaces or 0)
|
||||||
|
nValue = nValue * nPower
|
||||||
|
if nValue >= 0 then nValue = math.floor(nValue + 0.5) else nValue = math.ceil(nValue - 0.5) end
|
||||||
|
nRounded = nValue / nPower
|
||||||
|
elseif sRoundType == "ceil" then
|
||||||
|
local nPower = math.pow(10, nPlaces or 0)
|
||||||
|
nRounded = math.ceil(nValue * nPower) / nPower
|
||||||
|
elseif sRoundType == "floor" then
|
||||||
|
local nPower = math.pow(10, nPlaces or 0)
|
||||||
|
nRounded = math.floor(nValue * nPower) / nPower
|
||||||
|
else
|
||||||
|
return "Error, invalid round type"
|
||||||
|
end
|
||||||
|
local sFormatter = string.format("%s%s%s", "%.", tostring(nPlaces), "f%s")
|
||||||
|
return string.format(sFormatter, nRounded, sUnitText)
|
||||||
|
end
|
||||||
|
end
|
||||||
15
weather/Make_Icons/README.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
NOTES
|
||||||
|
|
||||||
|
(1) You need inkscape installed to use this script.
|
||||||
|
|
||||||
|
sudo apt-get install inkscape (or use software manager)
|
||||||
|
|
||||||
|
(2) Make this script executable by doing:
|
||||||
|
|
||||||
|
chmod +x render_pngs.sh
|
||||||
|
|
||||||
|
(3) Execute by doing:
|
||||||
|
|
||||||
|
./render_pngs.sh
|
||||||
|
|
||||||
|
|
||||||
1
weather/Make_Icons/SVG/200.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/201.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m17.499 1040.5c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm-6.4991-13.135c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.3137 2.6863 6 6 6h2l-1 5 5-7h-3l2-4h-3.0006l-1.3333 4h-0.66602c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1562 2h1.6562c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/202.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m17.499 1040.5c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm-6.4991-13.135c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.3137 2.6863 6 6 6h2l-1 5 5-7h-3l2-4h-3.0006l-1.3333 4h-0.66602c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1562 2h1.6562c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/210.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/211.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/212.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/221.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/230.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/231.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1 11-2 6h2l-1 5 5-7h-3l2-4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 732 B |
1
weather/Make_Icons/SVG/232.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m17.499 1040.5c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm-6.4991-13.135c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.3137 2.6863 6 6 6h2l-1 5 5-7h-3l2-4h-3.0006l-1.3333 4h-0.66602c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1562 2h1.6562c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/300.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm5.4991 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-4.9983 3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm-3.0018-3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/301.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm5.4991 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-4.9983 3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm-3.0018-3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/302.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-2.5009 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-7.9983 5.2663c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366zm4 0c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/310.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-2.5009 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-7.9983 5.2663c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366zm4 0c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/311.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-2.5009 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-7.9983 5.2663c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366zm4 0c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/312.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-2.5009 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-7.9983 5.2663c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366zm4 0c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/313.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/314.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/321.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/500.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm5.4991 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-4.9983 3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm-3.0018-3.2662c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/501.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-2.5009 13.135c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.643-1.366 0.366-0.47977-0.277-0.64302-0.8862-0.36602-1.366l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.6431 1.366-0.3661zm4 0c0.47978 0.277 0.64303 0.8863 0.36603 1.3661l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64303-0.8863-0.36603-1.3661l1-1.732c0.277-0.4798 0.88625-0.6431 1.366-0.3661zm-7.9983 5.2663c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366zm4 0c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-1 1.732c-0.277 0.4798-0.88625 0.6431-1.366 0.3661-0.47978-0.277-0.64302-0.8863-0.36602-1.3661l1-1.732c0.277-0.4798 0.88624-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/502.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/503.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/504.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/511.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="m22 2.9995s-3 4.3432-3 6c0 1.6569 1.3432 3 3 3s3-1.3431 3-3c0-1.6568-3-6-3-6zm0 3s1 2.4477 1 3-0.44772 1-1 1c-0.55229 0-1-0.4477-1-1s1-3 1-3zm-10.996 3.0004c-1.0225 0-2.0446 0.3904-2.8281 1.1738-0.78899 0.7891-1.1794 1.822-1.1738 2.8516-0.004 3.9812-0.002 6.9852-0.002 10.975 0 0.554 0.446 1 1 1s1-0.446 1-1v-7.3437l1 1v4.3437c0 0.554 0.446 1 1 1s1-0.446 1-1v-2.3437l1 1v5.3437c0 0.554 0.446 1 1 1s1-0.446 1-1v-3.3437l0.0566 0.057c0.15266 1.0683 0.64628 2.058 1.4082 2.8223 1.9526 1.9526 5.1177 1.9526 7.0703 0s1.9526-5.1177 0-7.0703c-0.764-0.759-1.751-1.252-2.817-1.404l-6.887-6.887c-0.783-0.7834-1.805-1.1737-2.828-1.1737zm0 2.002c0.51124 0 1.0223 0.1942 1.4141 0.5859l7.418 7.4199c0.85111-0.047 1.6817 0.2691 2.2852 0.8711 1.1716 1.1716 1.1716 3.0706 0 4.2422-1.1716 1.1715-3.0706 1.1716-4.2422 0-0.60083-0.6037-0.91845-1.4347-0.8711-2.2851l-7.418-7.418c-0.78345-0.7835-0.78348-2.0466 0-2.8301 0.39174-0.3917 0.90282-0.5859 1.4141-0.5859zm8.9961 8.998c-0.51185 0-1.0236 0.1955-1.4141 0.586-0.78105 0.7811-0.78107 2.047 0 2.8281 0.78107 0.781 2.0471 0.781 2.8281 0 0.78105-0.7811 0.78107-2.047 0-2.8281-0.39053-0.3905-0.90222-0.586-1.4141-0.586z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
1
weather/Make_Icons/SVG/520.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/521.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/522.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/531.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7415 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm-1.5009 12.135c0.47978 0.277 0.64303 0.8862 0.36603 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88625 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/600.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999998" width="32"><path d="m15 7c-3.264 0-6.1985 1.9876-7.416 5.016-3.1442 0.218-5.5833 2.832-5.584 5.984 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.973h-0.6895c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5725-4.092-4.175-7.02-4.178zm-2.5002 16c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.207 0.207h-0.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.207-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm6-3c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.207 0.207h-0.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86469 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35353-1.0606l-0.207-0.207h0.29297c0.55401 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39175-0.3918 0.5494-0.8647 0.35353-1.0606-0.19587-0.1958-0.66882-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1z"/></svg>
|
||||||
|
After Width: | Height: | Size: 2 KiB |
1
weather/Make_Icons/SVG/601.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777zm0.5 13c-0.277 0-0.5 0.446-0.5 1v1.293l-0.91406-0.9141c-0.39174-0.3917-0.86468-0.5494-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0605l0.91406 0.9141h-1.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h1.293l-0.91406 0.9141c-0.39174 0.3917-0.54939 0.8646-0.35352 1.0605s0.66881 0.038 1.0606-0.3535l0.91406-0.9141v1.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-1.293l0.91406 0.9141c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0605l-0.91406-0.9141h1.293c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-1.293l0.91406-0.9141c0.39174-0.3917 0.54939-0.8646 0.35352-1.0605s-0.66881-0.038-1.0606 0.3535l-0.91406 0.9141v-1.293c0-0.554-0.223-1-0.5-1z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
weather/Make_Icons/SVG/602.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.5 1044.4c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm8-5c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm2.5-12c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
1
weather/Make_Icons/SVG/611.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path opacity=".96" d="m10 1046.4a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm3-1a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-1-3a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm3-15c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1616 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7908-4-4 0-2.2091 1.7909-4 4-4 0.36119 0 0.72057 0.051 1.0684 0.1485 0.4232-2.9517 2.9498-5.1447 5.9316-5.1485 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1746-7.0195-4.1777zm2.5 12c-0.277 0-0.5 0.446-0.5 1v1.293l-0.91406-0.9141c-0.39174-0.3917-0.86468-0.5494-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.91406 0.914h-1.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h1.293l-0.91406 0.9141c-0.39174 0.3917-0.54939 0.8647-0.35352 1.0605 0.19587 0.1959 0.66881 0.038 1.0606-0.3535l0.91406-0.9141v1.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-1.293l0.91406 0.9141c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1958 0.0382-0.6688-0.35352-1.0605l-0.91406-0.9141h1.293c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-1.293l0.91406-0.914c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606s-0.66881-0.038-1.0606 0.3535l-0.91406 0.9141v-1.293c0-0.554-0.223-1-0.5-1z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/612.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15.001 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1616 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7908-4-4 0-2.2091 1.7909-4 4-4 0.36119 0 0.72057 0.051 1.0684 0.1485 0.4232-2.9517 2.9498-5.1447 5.9316-5.1485 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1746-7.0195-4.1777zm-4 22a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm13-2a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm-23-2a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm20.008-6a1.0001 1.0001 0 0 0 -0.88086 0.5117l-5.7578 9.9766a1.0001 1.0001 0 0 0 1.3809 1.3555c1.702-1.0235 2.1758-2.1083 5.1641-1.8477a1.0001 1.0001 0 1 0 0.17188 -1.9922c-1.3441-0.1172-2.3331 0.088-3.1934 0.3789l3.9668-6.8711a1.0001 1.0001 0 0 0 -0.85157 -1.5117zm-4 0a1.0001 1.0001 0 0 0 -0.88086 0.5117l-4.0352 6.9883a1.0002 1.0002 0 1 0 1.7324 1l4.0352-6.9883a1.0001 1.0001 0 0 0 -0.85156 -1.5117zm-3.9922-0.012a1.0001 1.0001 0 0 0 -0.88085 0.5117l-5.0137 8.6817c-0.71841-0.9428-1.5539-1.8319-2.8848-2.1543a1.001 1.001 0 1 0 -0.47266 1.9453c1.0118 0.2451 1.7576 1.2552 2.6367 2.5722a1.0001 1.0001 0 0 0 1.6992 -0.057l5.7656-9.9883a1.0001 1.0001 0 0 0 -0.84962 -1.5117z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
1
weather/Make_Icons/SVG/615.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m18.5 1038.4c-0.277 0-0.5 0.446-0.5 1v1.293l-0.91406-0.9141c-0.39174-0.3917-0.86468-0.5494-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0605l0.91406 0.9141h-1.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h1.293l-0.91406 0.9141c-0.39174 0.3917-0.54939 0.8646-0.35352 1.0605s0.66881 0.038 1.0606-0.3535l0.91406-0.9141v1.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-1.293l0.91406 0.9141c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0605l-0.91406-0.9141h1.293c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-1.293l0.91406-0.9141c0.39174-0.3917 0.54939-0.8646 0.35352-1.0605s-0.66881-0.038-1.0606 0.3535l-0.91406 0.9141v-1.293c0-0.554-0.223-1-0.5-1zm-6.5 2s-3 4.3432-3 6c0 1.6569 1.3432 3 3 3s3-1.3431 3-3c0-1.6568-3-6-3-6zm0 3s1 2.4477 1 3-0.44772 1-1 1-1-0.4477-1-1 1-3 1-3zm3-16c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
1
weather/Make_Icons/SVG/616.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m18.5 1038.4c-0.277 0-0.5 0.446-0.5 1v1.293l-0.91406-0.9141c-0.39174-0.3917-0.86468-0.5494-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0605l0.91406 0.9141h-1.293c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h1.293l-0.91406 0.9141c-0.39174 0.3917-0.54939 0.8646-0.35352 1.0605s0.66881 0.038 1.0606-0.3535l0.91406-0.9141v1.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-1.293l0.91406 0.9141c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0605l-0.91406-0.9141h1.293c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-1.293l0.91406-0.9141c0.39174-0.3917 0.54939-0.8646 0.35352-1.0605s-0.66881-0.038-1.0606 0.3535l-0.91406 0.9141v-1.293c0-0.554-0.223-1-0.5-1zm-6.5 2s-3 4.3432-3 6c0 1.6569 1.3432 3 3 3s3-1.3431 3-3c0-1.6568-3-6-3-6zm0 3s1 2.4477 1 3-0.44772 1-1 1-1-0.4477-1-1 1-3 1-3zm3-16c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
1
weather/Make_Icons/SVG/620.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.5 1044.4c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm8-5c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm2.5-12c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
1
weather/Make_Icons/SVG/621.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.5 1044.4c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm8-5c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm2.5-12c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
1
weather/Make_Icons/SVG/622.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.5 1044.4c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm8-5c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm-6 0c-0.277 0-0.5 0.446-0.5 1v0.293l-0.20703-0.2071c-0.39174-0.3917-0.86468-0.5493-1.0606-0.3535-0.19587 0.1959-0.0382 0.6688 0.35352 1.0606l0.20703 0.207h-0.29297c-0.554 0-1 0.223-1 0.5s0.446 0.5 1 0.5h0.29297l-0.20703 0.207c-0.39174 0.3918-0.54939 0.8647-0.35352 1.0606s0.66881 0.038 1.0606-0.3535l0.20703-0.2071v0.293c0 0.554 0.223 1 0.5 1s0.5-0.446 0.5-1v-0.293l0.20703 0.2071c0.39174 0.3917 0.86468 0.5494 1.0606 0.3535 0.19587-0.1959 0.0382-0.6688-0.35352-1.0606l-0.20703-0.207h0.29297c0.554 0 1-0.223 1-0.5s-0.446-0.5-1-0.5h-0.29297l0.20703-0.207c0.39174-0.3918 0.54939-0.8647 0.35352-1.0606-0.19587-0.1958-0.66881-0.038-1.0606 0.3535l-0.20703 0.2071v-0.293c0-0.554-0.223-1-0.5-1zm2.5-12c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1615 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
1
weather/Make_Icons/SVG/701.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 5.0002,1029.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 626 B |
1
weather/Make_Icons/SVG/711.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 5.0002,1029.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 626 B |
1
weather/Make_Icons/SVG/721.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 5.0002,1029.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 626 B |
1
weather/Make_Icons/SVG/731.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="m2 17h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1s0.446-1 1-1zm29-5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-20-4a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm11 11a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm6-1.5a1.5 1.5 0 0 1 -1.5 1.5 1.5 1.5 0 0 1 -1.5 -1.5 1.5 1.5 0 0 1 1.5 -1.5 1.5 1.5 0 0 1 1.5 1.5zm-12-7.5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm5 13a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm8-16a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-7.3923 1.0015c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.501c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-13.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h5.5003c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" opacity=".98"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
1
weather/Make_Icons/SVG/741.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 5.0002,1029.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z m 0,4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 22,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -22,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 626 B |
1
weather/Make_Icons/SVG/751.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="m2 17h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1s0.446-1 1-1zm29-5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-20-4a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm11 11a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm6-1.5a1.5 1.5 0 0 1 -1.5 1.5 1.5 1.5 0 0 1 -1.5 -1.5 1.5 1.5 0 0 1 1.5 -1.5 1.5 1.5 0 0 1 1.5 1.5zm-12-7.5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm5 13a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm8-16a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-7.3923 1.0015c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.501c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-13.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h5.5003c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" opacity=".98"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
1
weather/Make_Icons/SVG/761.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="m2 17h2c0.554 0 1 0.446 1 1s-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1s0.446-1 1-1zm29-5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-20-4a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm11 11a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm6-1.5a1.5 1.5 0 0 1 -1.5 1.5 1.5 1.5 0 0 1 -1.5 -1.5 1.5 1.5 0 0 1 1.5 -1.5 1.5 1.5 0 0 1 1.5 1.5zm-12-7.5a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm5 13a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm8-16a1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1 1 1 0 0 1 1 1zm-7.3923 1.0015c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.501c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-13.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h5.5003c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" opacity=".98"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
1
weather/Make_Icons/SVG/762.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path style="text-decoration-color:#000;isolation:auto;mix-blend-mode:normal;block-progression:tb;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-transform:none" d="m20.945 1024.4a1 1.0001 0 0 0 -0.44528 0.1387c-1.7336 0.9921-2.8965 2.6016-3.4607 4.5801a1 1.0001 0 1 0 1.9218 0.5469c0.45055-1.5798 1.2502-2.6596 2.5311-3.3926a1 1.0001 0 0 0 -0.54684 -1.8731zm-11.002-2.0063a1.0009 1.0016 0 0 0 -0.43395 1.872c2.8366 1.6567 3.0706 3.2439 3.5107 5.3324a1.001 1.0017 0 1 0 1.9587 -0.4147c-0.44197-2.0974-1.1167-4.6939-4.4607-6.6468a1.0009 1.0016 0 0 0 -0.5747 -0.1429zm3.067 9.9986c-0.48414-0.0008-0.89917 0.331-0.98431 0.8086-0.82232 4.6146-1.7561 9.0625-4.8278 13.604-0.77196 1.1092 0.91352 2.2515 1.6542 1.1212 1.221-1.8052 2.1127-3.597 2.8045-5.3752 1.1557 0.7291 2.1405 0.9902 3.0662 0.7579 1.3238-0.3323 1.905-1.489 2.3514-2.3673 0.44643-0.8783 0.75435-1.5038 1.0995-1.7031 0.34519-0.1993 0.97592-0.1077 1.1581 0.2676 0.77074 2.7697 1.8949 5.5796 3.8162 8.4201 0.74067 1.1303 2.4262-0.012 1.6542-1.1212-3.0717-4.5413-4.0055-8.9892-4.8278-13.604-0.0851-0.4776-0.50017-0.8094-0.98431-0.8086-1.9931 0.01-3.987 0-5.9801 0zm0.78901 2.0001c1.4669 0.01 2.9352 0 4.4021 0 0.17125 0.9342 0.57418 2.8223 0.57418 2.8223s-0.62046-0.2712-1.5917 0.2852c-0.97124 0.5563-1.4785 1.7208-1.8925 2.5352-0.41391 0.8143-0.76336 1.2604-1.0566 1.334-0.22979 0.058-0.83011-0.039-1.8944-0.7793 0.65455-2.0896 1.0849-4.1571 1.4589-6.1974z" fill-rule="evenodd" color="#000" solid-color="#000000" white-space="normal" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/771.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/781.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 13,1045.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 z m 1.834,-4 c -0.46167,0 -0.83398,0.446 -0.83398,1 0,0.554 0.37231,1 0.83398,1 l 3.332,0 c 0.46167,0 0.83398,-0.446 0.83398,-1 0,-0.554 -0.37231,-1 -0.83398,-1 l -3.332,0 z m 0.94336,-4 c -0.43089,0 -0.77734,0.446 -0.77734,1 0,0.554 0.34645,1 0.77734,1 l 5.4453,0 c 0.43089,0 0.77734,-0.446 0.77734,-1 0,-0.554 -0.34645,-1 -0.77734,-1 l -5.4453,0 z m -0.95703,-4 c -0.46893,0 -0.8457,0.446 -0.8457,1 0,0.554 0.37677,1 0.8457,1 l 9.334,0 c 0.46893,0 0.8457,-0.446 0.8457,-1 0,-0.554 -0.37677,-1 -0.8457,-1 l -9.334,0 z m -5.031,-4 c -0.43737,0 -0.78929,0.446 -0.78929,1 0,0.554 0.35192,1 0.78929,1 l 13.421,0 c 0.43737,0 0.78929,-0.446 0.78929,-1 0,-0.554 -0.35192,-1 -0.78929,-1 l -13.421,0 z m -4.8726,-4 c -0.50785,0 -0.91667,0.446 -0.91667,1 0,0.554 0.40882,1 0.91667,1 l 20.167,0 c 0.50785,0 0.91667,-0.446 0.91667,-1 0,-0.554 -0.40882,-1 -0.91667,-1 l -20.167,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/800.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.001 1045.4c-0.554 0-1 0.4459-1 1v1c0 0.554 0.446 1 1 1s1-0.446 1-1v-1c0-0.5541-0.446-1-1-1zm7.0703-2.9297c-0.25562 0-0.51116 0.097-0.70703 0.2929-0.39174 0.3917-0.39174 1.0224 0 1.414l0.70703 0.7072c0.39174 0.3916 1.0223 0.3916 1.4141 0 0.39174-0.3919 0.39174-1.0224 0-1.4141l-0.70703-0.7071c-0.19587-0.1958-0.45141-0.2929-0.70703-0.2929zm-14.141 0c-0.25562 0-0.51116 0.097-0.70703 0.2929l-0.70703 0.7071c-0.39174 0.3918-0.39174 1.0223 0 1.4141 0.39173 0.3916 1.0223 0.3916 1.4141 0l0.70703-0.7072c0.39174-0.3916 0.39174-1.0223 0-1.414-0.19587-0.1958-0.45141-0.2929-0.70703-0.2929zm17.07-7.0703c-0.554 0-1 0.4459-1 1 0 0.554 0.446 1 1 1h1c0.554 0 1-0.446 1-1 0-0.5541-0.446-1-1-1h-1zm-21 0c-0.554 0-1 0.4459-1 1 0 0.554 0.446 1 1 1h1c0.554 0 1-0.446 1-1 0-0.5541-0.446-1-1-1h-1zm11-7a8 8 0 0 0 -8 8 8 8 0 0 0 8 8 8 8 0 0 0 8 -8 8 8 0 0 0 -8 -8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1 -6 6 6 6 0 0 1 -6 -6 6 6 0 0 1 6 -6zm7.7773-2.7793c-0.25561 0-0.51116 0.099-0.70703 0.2949l-0.70703 0.7071c-0.39174 0.3917-0.39174 1.0223 0 1.414 0.39174 0.3918 1.0223 0.3918 1.4141 0l0.70703-0.707c0.39174-0.3917 0.39174-1.0223 0-1.4141-0.19586-0.1958-0.45141-0.2949-0.70703-0.2949zm-15.555 0c-0.25562 0-0.51117 0.099-0.70703 0.2949-0.39174 0.3918-0.39174 1.0224 0 1.4141l0.70703 0.707c0.39173 0.3918 1.0223 0.3918 1.4141 0 0.39174-0.3917 0.39174-1.0223 0-1.414l-0.70703-0.7071c-0.19587-0.1958-0.45142-0.2949-0.70703-0.2949zm7.7773-3.2207c-0.554 0-1 0.4459-1 1v1c0 0.554 0.446 1 1 1s1-0.446 1-1v-1c0-0.5541-0.446-1-1-1z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
1
weather/Make_Icons/SVG/801.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m19 1028.4c-2.8956 0.001-5.5646 1.5668-6.9785 4.0938-0.33719-0.06-0.67893-0.092-1.0215-0.094-3.3137 0-6 2.6862-6 6 0 3.3137 2.6863 6 6 6h8c4.4183 0 8-3.5818 8-8 0-4.4183-3.5817-8-8-8zm0 2c3.3137 0 6 2.6863 6 6s-2.6863 6-6 6h-8c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.76723 0 1.5178 0.2241 2.1621 0.6406 0.6316-2.7152 3.0502-4.6378 5.8379-4.6406z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 492 B |
1
weather/Make_Icons/SVG/802.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m19 1028.4c-2.8956 0.001-5.5646 1.5668-6.9785 4.0938-0.33719-0.06-0.67893-0.092-1.0215-0.094-3.3137 0-6 2.6862-6 6 0 3.3137 2.6863 6 6 6h8c4.4183 0 8-3.5818 8-8 0-4.4183-3.5817-8-8-8zm0 2c3.3137 0 6 2.6863 6 6s-2.6863 6-6 6h-8c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.76723 0 1.5178 0.2241 2.1621 0.6406 0.6316-2.7152 3.0502-4.6378 5.8379-4.6406z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 492 B |
1
weather/Make_Icons/SVG/803.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m12 1020.4c-0.554 0-1 0.446-1 1v1c0 0.554 0.446 1 1 1s1-0.446 1-1v-1c0-0.554-0.446-1-1-1zm-7.7773 3.2207c-0.25562 0-0.51117 0.099-0.70703 0.2949-0.39174 0.3918-0.39174 1.0224 0 1.4141l0.70703 0.707c0.39173 0.3918 1.0223 0.3918 1.4141 0 0.39174-0.3917 0.39174-1.0223 0-1.414l-0.70703-0.7071c-0.19587-0.1958-0.45142-0.2949-0.70703-0.2949zm15.555 0c-0.25561 0-0.51116 0.099-0.70703 0.2949l-0.70703 0.7071c-0.39174 0.3917-0.39174 1.0223 0 1.414 0.39174 0.3918 1.0223 0.3918 1.4141 0l0.70704-0.707c0.39173-0.3917 0.39173-1.0223 0-1.4141-0.19587-0.1958-0.45142-0.2949-0.70704-0.2949zm-7.7773 0.7793c-4.4183 0-8 3.5817-8 8 0 2.1312 0.83867 4.0623 2.1973 5.4961-0.12446 0.4813-0.19727 0.9837-0.19727 1.5039 0 3.3137 2.6863 6 6 6h8c4.4183 0 8-3.5817 8-8s-3.5817-8-8-8c-0.19318 0.0001-0.3814 0.025-0.57227 0.039-1.1778-2.9509-4.0566-5.0391-7.4277-5.0391zm0 2c2.3988 0 4.4636 1.4109 5.4238 3.4453-1.839 0.6283-3.4242 1.9003-4.4024 3.6485-0.33719-0.06-0.67893-0.092-1.0215-0.094-2.0062 0-3.7778 0.9876-4.8672 2.5-0.70997-0.9858-1.1328-2.1926-1.1328-3.5001 0-3.3137 2.6863-6 6-6zm-11 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h1c0.554 0 1-0.446 1-1s-0.446-1-1-1h-1zm19 0c3.3137 0 6 2.6863 6 6s-2.6863 6-6 6h-8c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.76723 0 1.5178 0.2242 2.1621 0.6406 0.6316-2.7152 3.0502-4.6378 5.8379-4.6406zm-13.131 4.9043c-0.0178 0.03-0.0374 0.058-0.0547 0.088 0.0174-0.03 0.0368-0.058 0.0547-0.088z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
1
weather/Make_Icons/SVG/804.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m18 1025.4c-3.0799 0-5.7489 1.744-7.0859 4.295-2.3808 0.6468-4.3803 2.3585-5.3301 4.7207-3.1442 0.2185-5.5834 2.8326-5.584 5.9843 0 3.3138 2.6863 6 6 6h15.5c3.1818 0 5.8239-2.2873 6.3848-5.3066 2.3897-0.7906 4.1152-3.0385 4.1152-5.6934 0-3.3137-2.6863-6-6-6-0.34255 0-0.68429 0.033-1.0215 0.094-1.4139-2.5269-4.0829-4.0927-6.9785-4.0937zm0 2c2.7877 0 5.2063 1.9254 5.8379 4.6407 0.64435-0.4165 1.3949-0.6386 2.1621-0.6407 2.2091 0 4 1.7909 4 4 0 1.5118-0.84848 2.8121-2.0859 3.4922-0.48535-3.11-3.1679-5.4922-6.4141-5.4922-0.49867 0-0.99543 0.062-1.4805 0.1778-1.3174-2.4222-3.7857-3.966-6.5137-4.1426 1.0994-1.2449 2.7027-2.0352 4.4941-2.0352zm-5 4c2.8668 0 5.3313 2.0326 5.8828 4.8458 0.76276-0.5482 1.6779-0.8439 2.6172-0.8458 2.4853 0 4.5 2.0148 4.5 4.5 0 2.4853-2.0147 4.5-4.5 4.5h-15.5c-2.2091 0-4-1.7908-4-4 0-2.2091 1.7909-4 4-4 0.36119 0.001 0.72057 0.051 1.0684 0.1485 0.4232-2.9517 2.9498-5.1447 5.9316-5.1485z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1 KiB |
1
weather/Make_Icons/SVG/900.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m 13,1045.4 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 2,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 l -2,0 z m 1.834,-4 c -0.46167,0 -0.83398,0.446 -0.83398,1 0,0.554 0.37231,1 0.83398,1 l 3.332,0 c 0.46167,0 0.83398,-0.446 0.83398,-1 0,-0.554 -0.37231,-1 -0.83398,-1 l -3.332,0 z m 0.94336,-4 c -0.43089,0 -0.77734,0.446 -0.77734,1 0,0.554 0.34645,1 0.77734,1 l 5.4453,0 c 0.43089,0 0.77734,-0.446 0.77734,-1 0,-0.554 -0.34645,-1 -0.77734,-1 l -5.4453,0 z m -0.95703,-4 c -0.46893,0 -0.8457,0.446 -0.8457,1 0,0.554 0.37677,1 0.8457,1 l 9.334,0 c 0.46893,0 0.8457,-0.446 0.8457,-1 0,-0.554 -0.37677,-1 -0.8457,-1 l -9.334,0 z m -5.031,-4 c -0.43737,0 -0.78929,0.446 -0.78929,1 0,0.554 0.35192,1 0.78929,1 l 13.421,0 c 0.43737,0 0.78929,-0.446 0.78929,-1 0,-0.554 -0.35192,-1 -0.78929,-1 l -13.421,0 z m -4.8726,-4 c -0.50785,0 -0.91667,0.446 -0.91667,1 0,0.554 0.40882,1 0.91667,1 l 20.167,0 c 0.50785,0 0.91667,-0.446 0.91667,-1 0,-0.554 -0.40882,-1 -0.91667,-1 l -20.167,0 z" transform="translate(0 -1021.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/901.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.959 1025.5c-4.1082 1.9035-6.78 5.9409-6.9434 10.441a6 6 0 0 0 -0.0156 0.4237 6 6 0 0 0 0.23828 1.6563c-1.8889-0.4463-3.6417-1.343-5.1074-2.6153 1.9035 4.1082 5.941 6.78 10.441 6.9434a6 6 0 0 0 0.42773 0.016 6 6 0 0 0 1.6562 -0.2383c-0.44623 1.8889-1.343 3.6417-2.6152 5.1075 4.1082-1.9035 6.78-5.941 6.9434-10.442a6 6 0 0 0 0.0156 -0.4237 6 6 0 0 0 -0.23828 -1.6562c1.8889 0.4462 3.6417 1.3429 5.1074 2.6152-1.9035-4.1082-5.941-6.78-10.441-6.9434a6 6 0 0 0 -0.004 0 6 6 0 0 0 -0.42373 -0.016 6 6 0 0 0 -1.6562 0.2383c0.44623-1.8889 1.343-3.6417 2.6152-5.1074zm-0.95898 6.8691a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 789 B |
1
weather/Make_Icons/SVG/902.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.959 1025.5c-4.1082 1.9035-6.78 5.9409-6.9434 10.441a6 6 0 0 0 -0.0156 0.4237 6 6 0 0 0 0.23828 1.6563c-1.8889-0.4463-3.6417-1.343-5.1074-2.6153 1.9035 4.1082 5.941 6.78 10.441 6.9434a6 6 0 0 0 0.42773 0.016 6 6 0 0 0 1.6562 -0.2383c-0.44623 1.8889-1.343 3.6417-2.6152 5.1075 4.1082-1.9035 6.78-5.941 6.9434-10.442a6 6 0 0 0 0.0156 -0.4237 6 6 0 0 0 -0.23828 -1.6562c1.8889 0.4462 3.6417 1.3429 5.1074 2.6152-1.9035-4.1082-5.941-6.78-10.441-6.9434a6 6 0 0 0 -0.004 0 6 6 0 0 0 -0.42373 -0.016 6 6 0 0 0 -1.6562 0.2383c0.44623-1.8889 1.343-3.6417 2.6152-5.1074zm-0.95898 6.8691a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 789 B |
1
weather/Make_Icons/SVG/903.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16 1025.4c-1.645 0-3 1.355-3 3 0 0.5444 0.15975 1.0499 0.41797 1.4922-1.7049 0.672-2.9717 1.9774-3.832 3.5449-1.151 2.097-1.7728 4.6416-2.3945 7.086-1.2638 0.3532-2.1914 1.4974-2.1914 2.8769v1c0 1.662 1.338 3 3 3h16c1.662 0 3-1.338 3-3v-1c0-1.3795-0.92765-2.5237-2.1914-2.8769-0.62191-2.4451-1.2438-4.9908-2.3945-7.0879-0.86015-1.5675-2.1268-2.8735-3.832-3.5449 0.25768-0.442 0.41797-0.9465 0.41797-1.4903 0-1.645-1.355-3-3-3zm0 2a1 1 0 0 1 1 1 1 1 0 0 1 -1 1 1 1 0 0 1 -1 -1 1 1 0 0 1 1 -1zm0 4h0.002c2.3853 0 3.6183 1.0995 4.6602 2.9981 0.87572 1.5959 1.4582 3.7735 2.0332 6.0019h-13.391c0.57491-2.2275 1.1592-4.4061 2.0352-6.0019 1.042-1.8987 2.2756-2.9947 4.6601-2.9981zm-8 11h16c0.554 0 1 0.446 1 1v1c0 0.554-0.446 1-1 1h-16c-0.554 0-1-0.446-1-1v-1c0-0.554 0.446-1 1-1z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 924 B |
1
weather/Make_Icons/SVG/904.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15.001 1022.4c-0.554 0-1 0.446-1 1v1c0 0.554 0.446 1 1 1s1-0.446 1-1v-1c0-0.554-0.446-1-1-1zm-6.3633 2.6348c-0.25562 0-0.51116 0.099-0.70703 0.2949-0.39174 0.3918-0.39174 1.0223 0 1.4141l0.70703 0.707c0.39174 0.3917 1.0223 0.3917 1.414 0 0.39174-0.3917 0.39174-1.0223 0-1.4141l-0.70702-0.707c-0.19587-0.1959-0.45141-0.2949-0.70703-0.2949zm12.727 0c-0.25562 0-0.51116 0.099-0.70703 0.2949l-0.70703 0.707c-0.39174 0.3918-0.39174 1.0224 0 1.4141 0.12396 0.124 0.27498 0.1947 0.43164 0.2402 0.31912-0.1092 0.64521-0.2049 0.99023-0.248l0.69922-0.6992c0.39174-0.3918 0.39174-1.0223 0-1.4141-0.19587-0.1959-0.45141-0.2949-0.70703-0.2949zm-6.3633 1.3652a6 6 0 0 0 -6 6 6 6 0 0 0 6 6 6 6 0 0 0 2 -0.3515v-2.1895a4 4 0 0 1 -2 0.541 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4 4 4 0 0 1 2.8535 1.1992c0.37586-0.5566 0.86548-1.0271 1.4297-1.3925a6 6 0 0 0 -4.2832 -1.8067zm-9 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h1c0.554 0 1-0.446 1-1s-0.446-1-1-1h-1zm3.3438 5.6563c-0.25562 0-0.51116 0.097-0.70703 0.2929l-0.70703 0.7071c-0.39173 0.3917-0.39173 1.0223 0 1.414 0.39174 0.3918 1.0223 0.3918 1.4141 0l0.70702-0.707c0.39174-0.3917 0.39174-1.0223 0-1.4141-0.19585-0.1958-0.4514-0.2929-0.70702-0.2929zm5.6562 2.3437c-0.554 0-1 0.446-1 1v1c0 0.554 0.446 1 1 1s1-0.446 1-1v-1c0-0.554-0.446-1-1-1zm7-11c-2.216 0-4 1.784-4 4v10.008c-0.64751 0.8634-0.99831 1.913-1 2.9922 0 2.7614 2.2386 5 5 5s5-2.2386 5-5c-0.003-1.0765-0.35409-2.1231-1-2.9843v-10.016c0-2.216-1.784-4-4-4zm0 2c1.108 0 2 0.892 2 2v10.768c0.63536 0.5683 0.99896 1.38 1 2.2324 0 1.6569-1.3432 3-3 3s-3-1.3431-3-3c0.002-0.8517 0.36515-1.6626 1-2.2304v-10.77c0-1.108 0.892-2 2-2zm0 1c-0.554 0-1 0.446-1 1v11.272c-0.61771 0.3566-0.99874 1.0153-1 1.7285 0 1.1046 0.89543 2 2 2s2-0.8954 2-2c-0.00056-0.7139-0.38169-1.3735-1-1.7304v-11.27c0-0.554-0.446-1-1-1z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
1
weather/Make_Icons/SVG/905.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/906.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m15.001 1027.4c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.1616 2.4483 5.7416 5.5508 5.9727l1.1387-1.9727h-0.68945c-2.2091 0-4-1.7908-4-4 0-2.2091 1.7909-4 4-4 0.36119 0 0.72057 0.051 1.0684 0.1485 0.4232-2.9517 2.9498-5.1447 5.9316-5.1485 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1523 2h1.6523c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1746-7.0195-4.1777zm-4 22a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm13-2a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm-23-2a1 1 0 0 0 -1 1 1 1 0 0 0 1 1 1 1 0 0 0 1 -1 1 1 0 0 0 -1 -1zm20.008-6a1.0001 1.0001 0 0 0 -0.88086 0.5117l-5.7578 9.9766a1.0001 1.0001 0 0 0 1.3809 1.3555c1.702-1.0235 2.1758-2.1083 5.1641-1.8477a1.0001 1.0001 0 1 0 0.17188 -1.9922c-1.3441-0.1172-2.3331 0.088-3.1934 0.3789l3.9668-6.8711a1.0001 1.0001 0 0 0 -0.85157 -1.5117zm-4 0a1.0001 1.0001 0 0 0 -0.88086 0.5117l-4.0352 6.9883a1.0002 1.0002 0 1 0 1.7324 1l4.0352-6.9883a1.0001 1.0001 0 0 0 -0.85156 -1.5117zm-3.9922-0.012a1.0001 1.0001 0 0 0 -0.88085 0.5117l-5.0137 8.6817c-0.71841-0.9428-1.5539-1.8319-2.8848-2.1543a1.001 1.001 0 1 0 -0.47266 1.9453c1.0118 0.2451 1.7576 1.2552 2.6367 2.5722a1.0001 1.0001 0 0 0 1.6992 -0.057l5.7656-9.9883a1.0001 1.0001 0 0 0 -0.84962 -1.5117z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
1
weather/Make_Icons/SVG/951.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="M 14.715,5.9999987 10,15.755998 l 2.42,2.42 7.58,-3.87 0,10.694 c 0,0.554 0.445999,1 0.999999,1 0.554,0 1,-0.446 1,-1 l 0,-18.9999993 z m 1.498,1.9999998 3.783,0.004 0.002,3.7799995 z m -0.855,1.266 3.406,3.4039995 -1.862,0.97 -2.466,-2.468 z m -1.612,3.3369995 1.76,1.76 -2.678,1.393 -0.408,-0.408 z"/></svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
1
weather/Make_Icons/SVG/952.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="M 14.715,5.9999987 10,15.755998 l 2.42,2.42 7.58,-3.87 0,10.694 c 0,0.554 0.445999,1 0.999999,1 0.554,0 1,-0.446 1,-1 l 0,-18.9999993 z m 1.498,1.9999998 3.783,0.004 0.002,3.7799995 z m -0.855,1.266 3.406,3.4039995 -1.862,0.97 -2.466,-2.468 z m -1.612,3.3369995 1.76,1.76 -2.678,1.393 -0.408,-0.408 z"/></svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
1
weather/Make_Icons/SVG/953.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="M 14.715,5.9999987 10,15.755998 l 2.42,2.42 7.58,-3.87 0,10.694 c 0,0.554 0.445999,1 0.999999,1 0.554,0 1,-0.446 1,-1 l 0,-18.9999993 z m 1.498,1.9999998 3.783,0.004 0.002,3.7799995 z m -0.855,1.266 3.406,3.4039995 -1.862,0.97 -2.466,-2.468 z m -1.612,3.3369995 1.76,1.76 -2.678,1.393 -0.408,-0.408 z"/></svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
1
weather/Make_Icons/SVG/954.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 31.999999 31.999996" width="32"><path d="M 14.715,5.9999987 10,15.755998 l 2.42,2.42 7.58,-3.87 0,10.694 c 0,0.554 0.445999,1 0.999999,1 0.554,0 1,-0.446 1,-1 l 0,-18.9999993 z m 1.498,1.9999998 3.783,0.004 0.002,3.7799995 z m -0.855,1.266 3.406,3.4039995 -1.862,0.97 -2.466,-2.468 z m -1.612,3.3369995 1.76,1.76 -2.678,1.393 -0.408,-0.408 z"/></svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
1
weather/Make_Icons/SVG/955.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/956.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/957.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/958.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/959.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m24.608 1028.4c-0.94188-0.027-1.8841 0.3235-2.582 1.0215-0.98167 0.9425 0.47155 2.3957 1.4141 1.414 0.48348-0.4834 1.2184-0.5801 1.8106-0.2382 0.59214 0.3418 0.87618 1.027 0.69922 1.6875-0.17697 0.6604-0.76548 1.1113-1.4492 1.1113h-19.5c-0.55228 0-1 0.4477-1 1s0.44772 0.9999 1 1h19.5c1.5793 0 2.9721-1.0683 3.3809-2.5938 0.40875-1.5254-0.26316-3.1478-1.6309-3.9375-0.51289-0.2961-1.0774-0.4484-1.6426-0.4648zm-19.608 8.9995c-0.55228 0-1 0.4478-1 1 0 0.5523 0.44772 1 1 1h11.5c0.68374 0 1.2722 0.4509 1.4492 1.1114 0.17696 0.6604-0.10708 1.3456-0.69922 1.6875-0.59214 0.3418-1.3271 0.2452-1.8106-0.2383-0.94251-0.9817-2.3957 0.4715-1.4141 1.414 1.1167 1.1168 2.8569 1.3463 4.2246 0.5567 1.3677-0.7897 2.0396-2.412 1.6309-3.9375-0.40875-1.5254-1.8016-2.5938-3.3809-2.5938z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 920 B |
1
weather/Make_Icons/SVG/960.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m17.499 1040.5c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm-6.4991-13.135c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.3137 2.6863 6 6 6h2l-1 5 5-7h-3l2-4h-3.0006l-1.3333 4h-0.66602c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1562 2h1.6562c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/961.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m17.499 1040.5c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm4 0c0.47977 0.277 0.64302 0.8862 0.36602 1.366l-4.0392 6.9961c-0.27699 0.4798-0.88624 0.646-1.366 0.369-0.47978-0.277-0.64302-0.8892-0.36603-1.369l4.0392-6.9961c0.277-0.4798 0.88625-0.643 1.366-0.366zm-6.4991-13.135c-3.2637 0-6.1985 1.9876-7.416 5.0156-3.1442 0.2186-5.5834 2.8326-5.584 5.9844 0 3.3137 2.6863 6 6 6h2l-1 5 5-7h-3l2-4h-3.0006l-1.3333 4h-0.66602c-2.2091 0-4-1.7909-4-4s1.7909-4 4-4c0.36119 0.001 0.72057 0.051 1.0684 0.1484 0.4232-2.9516 2.9498-5.1446 5.9316-5.1484 2.8668 0 5.3313 2.0325 5.8828 4.8457 0.76276-0.5481 1.6779-0.8438 2.6172-0.8457 2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5h-0.5l-1.1562 2h1.6562c3.5898 0 6.5-2.9101 6.5-6.5 0-3.5898-2.9102-6.5-6.5-6.5-0.49867 0-0.99543 0.062-1.4805 0.1777-1.399-2.5722-4.0915-4.1747-7.0195-4.1777z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
1
weather/Make_Icons/SVG/962.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path d="m16.959 1025.5c-4.1082 1.9035-6.78 5.9409-6.9434 10.441a6 6 0 0 0 -0.0156 0.4237 6 6 0 0 0 0.23828 1.6563c-1.8889-0.4463-3.6417-1.343-5.1074-2.6153 1.9035 4.1082 5.941 6.78 10.441 6.9434a6 6 0 0 0 0.42773 0.016 6 6 0 0 0 1.6562 -0.2383c-0.44623 1.8889-1.343 3.6417-2.6152 5.1075 4.1082-1.9035 6.78-5.941 6.9434-10.442a6 6 0 0 0 0.0156 -0.4237 6 6 0 0 0 -0.23828 -1.6562c1.8889 0.4462 3.6417 1.3429 5.1074 2.6152-1.9035-4.1082-5.941-6.78-10.441-6.9434a6 6 0 0 0 -0.004 0 6 6 0 0 0 -0.42373 -0.016 6 6 0 0 0 -1.6562 0.2383c0.44623-1.8889 1.343-3.6417 2.6152-5.1074zm-0.95898 6.8691a4 4 0 0 1 4 4 4 4 0 0 1 -4 4 4 4 0 0 1 -4 -4 4 4 0 0 1 4 -4z" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 789 B |
1
weather/Make_Icons/SVG/null.svg
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32" viewBox="0 0 31.999999 31.999998"><path style="text-decoration-color:#000;isolation:auto;mix-blend-mode:normal;block-progression:tb;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-transform:none" d="m18.965 1028.4a1.0001 1.0001 0 0 0 -0.9277 0.7383l-3.9922 13.973a1.0001 1.0001 0 1 0 1.9219 0.5508l3.9922-13.973a1.0001 1.0001 0 0 0 -0.9942 -1.289zm6.0254 0a1.0001 1.0001 0 0 0 -0.9531 0.7246l-3.9961 13.986a1.0006 1.0006 0 1 0 1.9238 0.5508l0.9317-3.2617h4.205l0.9317 3.2617a1.0001 1.0001 0 1 0 1.9218 -0.5508l-3.996-13.986a1.0001 1.0001 0 0 0 -0.9688 -0.7246zm-14.008 0.016a1.0001 1.0001 0 0 0 -0.9844 1.0136v10.215l-6.1328-10.711a1.0001 1.0001 0 0 0 -1.8672 0.496v13.973a1.0001 1.0001 0 1 0 2 0v-10.215l6.1328 10.711a1.0001 1.0001 0 0 0 1.8672 -0.4961v-13.973a1.0001 1.0001 0 0 0 -1.0156 -1.0137zm14.016 4.6231 1.5313 5.3613h-3.0625l1.5312-5.3613z" fill-rule="evenodd" color="#000" solid-color="#000000" white-space="normal" transform="translate(0 -1020.4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1 KiB |
157
weather/Make_Icons/render_pngs.sh
Executable file
|
|
@ -0,0 +1,157 @@
|
||||||
|
#!/bin/bash
|
||||||
|
###################################################################################################################################
|
||||||
|
# This script was used from the Harmattan Conky theme project: https://github.com/zagortenay333/Harmattan
|
||||||
|
# Below is Harmattan's license for these files:
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# This project is available under 2 licenses -- choose whichever you prefer.
|
||||||
|
# ---
|
||||||
|
# ALTERNATIVE A - MIT License Copyright (c) 2019 zagortenay333
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions: The above copyright
|
||||||
|
# notice and this permission notice shall be included in all copies or
|
||||||
|
# substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS",
|
||||||
|
# WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
||||||
|
# TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||||
|
# FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
||||||
|
# THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
# ---
|
||||||
|
# ALTERNATIVE B - Public Domain (www.unlicense.org)
|
||||||
|
# This is free and unencumbered software released into the public domain.
|
||||||
|
# Anyone is free to copy, modify, publish, use, compile, sell, or distribute
|
||||||
|
# this software, either in source code form or as a compiled binary, for any
|
||||||
|
# purpose, commercial or non-commercial, and by any means. In jurisdictions
|
||||||
|
# that recognize copyright laws, the author or authors of this software
|
||||||
|
# dedicate any and all copyright interest in the software to the public domain.
|
||||||
|
# We make this dedication for the benefit of the public at large and to the
|
||||||
|
# detriment of our heirs and successors. We intend this dedication to be an
|
||||||
|
# overt act of relinquishment in perpetuity of all present and future rights to
|
||||||
|
# this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
|
||||||
|
# WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
||||||
|
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM,
|
||||||
|
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||||
|
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
||||||
|
# OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
###################################################################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
# ======================================
|
||||||
|
# ANSI
|
||||||
|
# ======================================
|
||||||
|
ansi_reset='\e[0m'
|
||||||
|
|
||||||
|
bold='\e[1m'
|
||||||
|
|
||||||
|
blue='\e[34m'
|
||||||
|
|
||||||
|
yellow_b='\e[1;33m'
|
||||||
|
|
||||||
|
red_b='\e[1;31m'
|
||||||
|
|
||||||
|
darkgray_b='\e[1;90m'
|
||||||
|
|
||||||
|
|
||||||
|
# ======================================
|
||||||
|
# Constants
|
||||||
|
# ======================================
|
||||||
|
svg_src="SVG"
|
||||||
|
|
||||||
|
png_dest="renders"
|
||||||
|
|
||||||
|
default_color="#000"
|
||||||
|
|
||||||
|
default_size="32"
|
||||||
|
|
||||||
|
|
||||||
|
# ======================================
|
||||||
|
# User Input
|
||||||
|
# ======================================
|
||||||
|
echo
|
||||||
|
|
||||||
|
echo -e "${bold}Enter icon icon_size (skip for default): ${ansi_reset}"
|
||||||
|
read -r icon_size
|
||||||
|
|
||||||
|
echo -e "${bold}Enter 1 or more colors (space or tab separated): ${ansi_reset}"
|
||||||
|
read -r -a icon_colors
|
||||||
|
|
||||||
|
|
||||||
|
# ======================================
|
||||||
|
# Checks
|
||||||
|
# ======================================
|
||||||
|
# If no colors given, add default color to array
|
||||||
|
[ ${#icon_colors[*]} -eq 0 ] && icon_colors[0]="$default_color"
|
||||||
|
|
||||||
|
mkdir -p "$png_dest"
|
||||||
|
|
||||||
|
icon_size=${icon_size:-"$default_size"}
|
||||||
|
|
||||||
|
|
||||||
|
# ======================================
|
||||||
|
# RENDER
|
||||||
|
# ======================================
|
||||||
|
for color in ${icon_colors[*]}; do
|
||||||
|
echo
|
||||||
|
echo -e "${darkgray_b}---------------------------------------${ansi_reset}"
|
||||||
|
|
||||||
|
|
||||||
|
# Check whether the png folder already exits
|
||||||
|
if [ -d "$png_dest/${color}__$icon_size" ]; then
|
||||||
|
echo
|
||||||
|
echo -e "${red_b}$png_dest/${color}__$icon_size exists!${ansi_reset}"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
mkdir -p "${color}__$icon_size"
|
||||||
|
|
||||||
|
|
||||||
|
trap 'sed -i "s/<path fill=\"$color\"/<path/" $svg_src/*.svg; exit' INT TERM
|
||||||
|
|
||||||
|
|
||||||
|
sed -i "s/<path/<path fill=\"$color\"/" "$svg_src"/*.svg
|
||||||
|
|
||||||
|
|
||||||
|
# Loop through SVG folder & render png's
|
||||||
|
for i in $svg_src/*.svg; do
|
||||||
|
|
||||||
|
# Get basename
|
||||||
|
i2=${i##*/} i2=${i2%.*}
|
||||||
|
|
||||||
|
# If png exists, skip
|
||||||
|
if [ -f "${color}__$icon_size/$i2.png" ]; then
|
||||||
|
echo
|
||||||
|
echo -e "${darkgray_b}${color}__$icon_size/$i2.png exists.${ansi_reset}"
|
||||||
|
|
||||||
|
else
|
||||||
|
echo
|
||||||
|
echo -e "${blue}Rendering ${yellow_b}${color}__$icon_size/$i2.png${ansi_reset}"
|
||||||
|
|
||||||
|
inkscape -e "${color}__$icon_size/$i2.png" "$i" \
|
||||||
|
--export-width="$icon_size" --export-height="$icon_size" &> /dev/null
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# Inkscape has trouble exporting into
|
||||||
|
# arbitrary depth paths, so move manually
|
||||||
|
mv "${color}__${icon_size}" "$png_dest"
|
||||||
|
|
||||||
|
|
||||||
|
# Revert edit of svg's before next iteration or EXIT
|
||||||
|
sed -i "s/<path fill=\"$color\"/<path/" "$svg_src"/*.svg
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# If notify-send installed, send notif
|
||||||
|
hash notify-send 2>/dev/null &&
|
||||||
|
notify-send -i 'terminal' \
|
||||||
|
-a 'Terminal' \
|
||||||
|
'Terminal' \
|
||||||
|
'Finished rendering icons!'
|
||||||
71
weather/get_weather.sh
Executable file
|
|
@ -0,0 +1,71 @@
|
||||||
|
#!/bin/bash
|
||||||
|
###################################################################################################################################
|
||||||
|
# This script was used from the Harmattan Conky theme project: https://github.com/zagortenay333/Harmattan
|
||||||
|
# Below is Harmattan's license for these files:
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# This project is available under 2 licenses -- choose whichever you prefer.
|
||||||
|
# ---
|
||||||
|
# ALTERNATIVE A - MIT License Copyright (c) 2019 zagortenay333
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions: The above copyright
|
||||||
|
# notice and this permission notice shall be included in all copies or
|
||||||
|
# substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS",
|
||||||
|
# WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
||||||
|
# TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||||
|
# FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
||||||
|
# THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
# ---
|
||||||
|
# ALTERNATIVE B - Public Domain (www.unlicense.org)
|
||||||
|
# This is free and unencumbered software released into the public domain.
|
||||||
|
# Anyone is free to copy, modify, publish, use, compile, sell, or distribute
|
||||||
|
# this software, either in source code form or as a compiled binary, for any
|
||||||
|
# purpose, commercial or non-commercial, and by any means. In jurisdictions
|
||||||
|
# that recognize copyright laws, the author or authors of this software
|
||||||
|
# dedicate any and all copyright interest in the software to the public domain.
|
||||||
|
# We make this dedication for the benefit of the public at large and to the
|
||||||
|
# detriment of our heirs and successors. We intend this dedication to be an
|
||||||
|
# overt act of relinquishment in perpetuity of all present and future rights to
|
||||||
|
# this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
|
||||||
|
# WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
||||||
|
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM,
|
||||||
|
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||||
|
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
||||||
|
# OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
# ---------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
# INTENDED USAGE BY A CONKY CONFIGURATION FILE:
|
||||||
|
# template6 "<your API key here>" # OpenWeatherMap API key (https://home.openweathermap.org/api_keys)
|
||||||
|
# template7 "<your city ID here>" # OpenWeatherMap City ID (the number in the URL of your city, for example: https://openweathermap.org/city/5128581)
|
||||||
|
# template8 "imperial" # Temp unit ("default" for Kelvin, "metric" for Celcius, "imperial" for Fahrenheit)
|
||||||
|
# template9 "" # Locale (e.g. "es_ES.UTF-8") # Leave empty for default
|
||||||
|
# TEXT
|
||||||
|
# ${execi 300 ~/.conky/mgconky/weather/get_weather.sh ${template6} ${template7} ${template8} ${template9}}
|
||||||
|
# RESULT:
|
||||||
|
# Two JSON files will now be downloaded and saved in the ~/.cache/mgconky/ folder.
|
||||||
|
###################################################################################################################################
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
# It seems that in conky the execi command will start before curl has completely
|
||||||
|
# written the file. For some reason adding a sleep before calling curl fixes it.
|
||||||
|
sleep 2
|
||||||
|
|
||||||
|
forecast=~/".cache/mgconky/forecast.json"
|
||||||
|
weather=~/".cache/mgconky/weather.json"
|
||||||
|
|
||||||
|
mkdir -p ~/".cache/mgconky"
|
||||||
|
|
||||||
|
api_prefix="api.openweathermap.org/data/2.5/"
|
||||||
|
|
||||||
|
appid="APPID=$1"
|
||||||
|
id="&id=$2"
|
||||||
|
units="&units=$3"
|
||||||
|
lang="" ; [[ -v 4 ]] && lang="${4%%_*}" lang="&lang=$lang"
|
||||||
|
|
||||||
|
curl -s "${api_prefix}forecast?${appid}${id}${units}${lang}" -o "$forecast"
|
||||||
|
curl -s "${api_prefix}weather?${appid}${id}${units}${lang}" -o "$weather"
|
||||||
BIN
weather/lime32/200.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/201.png
Normal file
|
After Width: | Height: | Size: 675 B |
BIN
weather/lime32/202.png
Normal file
|
After Width: | Height: | Size: 675 B |
BIN
weather/lime32/210.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/211.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/212.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/221.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/230.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/231.png
Normal file
|
After Width: | Height: | Size: 600 B |
BIN
weather/lime32/232.png
Normal file
|
After Width: | Height: | Size: 675 B |
BIN
weather/lime32/300.png
Normal file
|
After Width: | Height: | Size: 587 B |
BIN
weather/lime32/301.png
Normal file
|
After Width: | Height: | Size: 587 B |
BIN
weather/lime32/302.png
Normal file
|
After Width: | Height: | Size: 573 B |
BIN
weather/lime32/310.png
Normal file
|
After Width: | Height: | Size: 573 B |
BIN
weather/lime32/311.png
Normal file
|
After Width: | Height: | Size: 573 B |
BIN
weather/lime32/312.png
Normal file
|
After Width: | Height: | Size: 573 B |
BIN
weather/lime32/313.png
Normal file
|
After Width: | Height: | Size: 605 B |
BIN
weather/lime32/314.png
Normal file
|
After Width: | Height: | Size: 605 B |