diff --git a/bin/scripts/generate-glyph-info-from-set.py b/bin/scripts/generate-glyph-info-from-set.py index 8d4899170..1a9e58529 100755 --- a/bin/scripts/generate-glyph-info-from-set.py +++ b/bin/scripts/generate-glyph-info-from-set.py @@ -1,10 +1,11 @@ #!/usr/bin/env python # coding=utf8 # Nerd Fonts Version: 2.0.0 -# Script Version: 1.0.0 +# Script Version: 1.1.0 # Example Usage: -# ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesignicons-webfont.ttf --start f001 --end f847 --offset 4ff +# ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesignicons-webfont.ttf --start f001 --end f847 --offset 4ff --prefix mdi +# ./generate-glyph-info-from-set.py --font ../../src/glyphs/weathericons-regular-webfont.ttf --start f000 --end f0eb --negoffset d00 --prefix weather from __future__ import absolute_import, print_function, unicode_literals @@ -38,6 +39,7 @@ parser = argparse.ArgumentParser(description='Nerd Fonts Glyph Info Generator: d parser.add_argument('-start', '--start', type=str, nargs='?', dest='symbolFontStart', help='The starting unicode hex codepoint') parser.add_argument('-end', '--end', type=str, nargs='?', dest='symbolFontEnd', help='The ending unicode hex codepoint') parser.add_argument('-offset', '--offset', type=str, nargs='?', dest='symbolOffset', help='The amount (in hex) to offset the range by for the source font') +parser.add_argument('-negoffset', '--negoffset', type=str, nargs='?', dest='negSymbolOffset', help='The amount (in hex) to negative offset the range by for the source font') parser.add_argument('-prefix', '--prefix', type=str, nargs='?', dest='prefix', help='The prefix to use for the shell variables and css names') parser.add_argument('-font', '--font', type=str, nargs='?', dest='filepath', help='The file path to the font file to open') args = parser.parse_args() @@ -48,16 +50,24 @@ symbolFont = fontforge.open(args.filepath) args.symbolFontStart = int("0x" + args.symbolFontStart, 16) args.symbolFontEnd = int("0x" + args.symbolFontEnd, 16) -args.symbolOffset = int("0x" + args.symbolOffset, 16) ctr = 0 +if args.negSymbolOffset: + args.negSymbolOffset = int("0x" + args.negSymbolOffset, 16) + sign = '-' + offset = args.negSymbolOffset +elif args.symbolOffset: + args.symbolOffset = int("0x" + args.symbolOffset, 16) + sign = '' + offset = args.symbolOffset + symbolFont.selection.select((str("ranges"),str("unicode")),args.symbolFontStart,args.symbolFontEnd) for index, sym_glyph in enumerate(symbolFont.selection.byGlyphs): slot = format(sym_glyph.unicode, 'X') name = sym_glyph.glyphname sh_name = "i_" + args.prefix + "_" + name.replace("-", "_") - char = unichr(int('0x'+slot, 16) + int('0x'+format(args.symbolOffset, 'X'), 16)) + char = unichr(int('0x'+slot, 16) + int(sign+'0x'+format(offset, 'X'), 16)) print("i='" + char + "' " + sh_name + "=$i") ctr += 1 diff --git a/bin/scripts/lib/i_weather.sh b/bin/scripts/lib/i_weather.sh index bcb17805e..ab6ca3d82 100644 --- a/bin/scripts/lib/i_weather.sh +++ b/bin/scripts/lib/i_weather.sh @@ -1,235 +1,235 @@ #!/bin/bash # Weather Icons (228 icons) -# Codepoints: F000, F0EB, Nerd Fonts moved F328-F413 +# Codepoints: F000, F0EB, Nerd Fonts moved E300-E3E4 # Nerd Fonts Version: 2.0.0 -# Script Version 1.0.0 +# Script Version 1.0.1 test -n "$__i_weather_loaded" && return || __i_weather_loaded=1 -i='' i_weather_day_cloudy_gusts=$i -i='' i_weather_day_cloudy_windy=$i -i='' i_weather_day_cloudy=$i -i='' i_weather_day_fog=$i -i='' i_weather_day_hail=$i -i='' i_weather_day_lightning=$i -i='' i_weather_day_rain_mix=$i -i='' i_weather_day_rain_wind=$i -i='' i_weather_day_rain=$i -i='' i_weather_day_showers=$i -i='' i_weather_day_snow=$i -i='' i_weather_day_sprinkle=$i -i='' i_weather_day_sunny_overcast=$i -i='' i_weather_day_sunny=$i -i='' i_weather_day_storm_showers=$i -i='' i_weather_day_thunderstorm=$i -i='' i_weather_cloudy_gusts=$i -i='' i_weather_cloudy_windy=$i -i='' i_weather_cloudy=$i -i='' i_weather_fog=$i -i='' i_weather_hail=$i -i='' i_weather_lightning=$i -i='' i_weather_rain_mix=$i -i='' i_weather_rain_wind=$i -i='' i_weather_rain=$i -i='' i_weather_showers=$i -i='' i_weather_snow=$i -i='' i_weather_sprinkle=$i -i='' i_weather_storm_showers=$i -i='' i_weather_thunderstorm=$i -i='' i_weather_windy=$i -i='' i_weather_night_alt_cloudy_gusts=$i -i='' i_weather_night_alt_cloudy_windy=$i -i='' i_weather_night_alt_hail=$i -i='' i_weather_night_alt_lightning=$i -i='' i_weather_night_alt_rain_mix=$i -i='' i_weather_night_alt_rain_wind=$i -i='' i_weather_night_alt_rain=$i -i='' i_weather_night_alt_rain_mix=$i -i='' i_weather_night_alt_snow=$i -i='' i_weather_night_alt_sprinkle=$i -i='' i_weather_night_alt_storm_showers=$i -i='' i_weather_night_alt_thunderstorm=$i -i='' i_weather_night_clear=$i -i='' i_weather_night_cloudy_gusts=$i -i='' i_weather_night_cloudy_windy=$i -i='' i_weather_night_cloudy=$i -i='' i_weather_night_hail=$i -i='' i_weather_night_lightning=$i -i='' i_weather_night_rain_mix=$i -i='' i_weather_night_rain_wind=$i -i='' i_weather_night_rain=$i -i='' i_weather_night_showers=$i -i='' i_weather_night_snow=$i -i='' i_weather_night_sprinkle=$i -i='' i_weather_night_storm_showers=$i -i='' i_weather_night_thunderstorm=$i -i='' i_weather_celsius=$i -i='' i_weather_cloud_down=$i -i='' i_weather_cloud_refresh=$i -i='' i_weather_cloud_up=$i -i='' i_weather_cloud=$i -i='' i_weather_degrees=$i -i='' i_weather_direction_down_left=$i -i='' i_weather_direction_down=$i -i='' i_weather_fahrenheit=$i -i='' i_weather_horizon_alt=$i -i='' i_weather_horizon=$i -i='' i_weather_direction_left=$i -i='' i_weather_aliens=$i -i='' i_weather_night_fog=$i -i='' i_weather_refresh_alt=$i -i='' i_weather_refresh=$i -i='' i_weather_direction_right=$i -i='' i_weather_raindrops=$i -i='' i_weather_strong_wind=$i -i='' i_weather_sunrise=$i -i='' i_weather_sunset=$i -i='' i_weather_thermometer_exterior=$i -i='' i_weather_thermometer_internal=$i -i='' i_weather_thermometer=$i -i='' i_weather_tornado=$i -i='' i_weather_direction_up_right=$i -i='' i_weather_direction_up=$i -i='' i_weather_wind_west=$i -i='' i_weather_wind_south_west=$i -i='' i_weather_wind_south_east=$i -i='' i_weather_wind_south=$i -i='' i_weather_wind_north_west=$i -i='' i_weather_wind_north_east=$i -i='' i_weather_wind_north=$i -i='' i_weather_wind_east=$i -i='' i_weather_smoke=$i -i='' i_weather_dust=$i -i='' i_weather_snow_wind=$i -i='' i_weather_day_snow_wind=$i -i='' i_weather_night_snow_wind=$i -i='' i_weather_night_alt_snow_wind=$i -i='' i_weather_day_sleet_storm=$i -i='' i_weather_night_sleet_storm=$i -i='' i_weather_night_alt_sleet_storm=$i -i='' i_weather_day_snow_thunderstorm=$i -i='' i_weather_night_snow_thunderstorm=$i -i='' i_weather_night_alt_snow_thunderstorm=$i -i='' i_weather_solar_eclipse=$i -i='' i_weather_lunar_eclipse=$i -i='' i_weather_meteor=$i -i='' i_weather_hot=$i -i='' i_weather_hurricane=$i -i='' i_weather_smog=$i -i='' i_weather_alien=$i -i='' i_weather_snowflake_cold=$i -i='' i_weather_stars=$i -i='' i_weather_raindrop=$i -i='' i_weather_barometer=$i -i='' i_weather_humidity=$i -i='' i_weather_na=$i -i='' i_weather_flood=$i -i='' i_weather_day_cloudy_high=$i -i='' i_weather_night_alt_cloudy_high=$i -i='' i_weather_night_cloudy_high=$i -i='' i_weather_night_alt_partly_cloudy=$i -i='' i_weather_sandstorm=$i -i='' i_weather_night_partly_cloudy=$i -i='' i_weather_umbrella=$i -i='' i_weather_day_windy=$i -i='' i_weather_night_alt_cloudy=$i -i='' i_weather_direction_up_left=$i -i='' i_weather_direction_down_right=$i -i='' i_weather_time_12=$i -i='' i_weather_time_1=$i -i='' i_weather_time_2=$i -i='' i_weather_time_3=$i -i='' i_weather_time_4=$i -i='' i_weather_time_5=$i -i='' i_weather_time_6=$i -i='' i_weather_time_7=$i -i='' i_weather_time_8=$i -i='' i_weather_time_9=$i -i='' i_weather_time_10=$i -i='' i_weather_time_11=$i -i='' i_weather_moon_new=$i -i='' i_weather_moon_waxing_crescent_1=$i -i='' i_weather_moon_waxing_crescent_2=$i -i='' i_weather_moon_waxing_crescent_3=$i -i='' i_weather_moon_waxing_crescent_4=$i -i='' i_weather_moon_waxing_crescent_5=$i -i='' i_weather_moon_waxing_crescent_6=$i -i='' i_weather_moon_first_quarter=$i -i='' i_weather_moon_waxing_gibbous_1=$i -i='' i_weather_moon_waxing_gibbous_2=$i -i='' i_weather_moon_waxing_gibbous_3=$i -i='' i_weather_moon_waxing_gibbous_4=$i -i='' i_weather_moon_waxing_gibbous_5=$i -i='' i_weather_moon_waxing_gibbous_6=$i -i='' i_weather_moon_full=$i -i='' i_weather_moon_waning_gibbous_1=$i -i='' i_weather_moon_waning_gibbous_2=$i -i='' i_weather_moon_waning_gibbous_3=$i -i='' i_weather_moon_waning_gibbous_4=$i -i='' i_weather_moon_waning_gibbous_5=$i -i='' i_weather_moon_waning_gibbous_6=$i -i='' i_weather_moon_third_quarter=$i -i='' i_weather_moon_waning_crescent_1=$i -i='' i_weather_moon_waning_crescent_2=$i -i='' i_weather_moon_waning_crescent_3=$i -i='' i_weather_moon_waning_crescent_4=$i -i='' i_weather_moon_waning_crescent_5=$i -i='' i_weather_moon_waning_crescent_6=$i -i='' i_weather_wind_direction=$i -i='' i_weather_day_sleet=$i -i='' i_weather_night_sleet=$i -i='' i_weather_night_alt_sleet=$i -i='' i_weather_sleet=$i -i='' i_weather_day_haze=$i -i='' i_weather_wind_beaufort_0=$i -i='' i_weather_wind_beaufort_1=$i -i='' i_weather_wind_beaufort_2=$i -i='' i_weather_wind_beaufort_3=$i -i='' i_weather_wind_beaufort_4=$i -i='' i_weather_wind_beaufort_5=$i -i='' i_weather_wind_beaufort_6=$i -i='' i_weather_wind_beaufort_7=$i -i='' i_weather_wind_beaufort_8=$i -i='' i_weather_wind_beaufort_9=$i -i='' i_weather_wind_beaufort_10=$i -i='' i_weather_wind_beaufort_11=$i -i='' i_weather_wind_beaufort_12=$i -i='' i_weather_day_light_wind=$i -i='' i_weather_tsunami=$i -i='' i_weather_earthquake=$i -i='' i_weather_fire=$i -i='' i_weather_volcano=$i -i='' i_weather_moonrise=$i -i='' i_weather_moonset=$i -i='' i_weather_train=$i -i='' i_weather_small_craft_advisory=$i -i='' i_weather_gale_warning=$i -i='' i_weather_storm_warning=$i -i='' i_weather_hurricane_warning=$i -i='' i_weather_moon_alt_waxing_crescent_1=$i -i='' i_weather_moon_alt_waxing_crescent_2=$i -i='' i_weather_moon_alt_waxing_crescent_3=$i -i='' i_weather_moon_alt_waxing_crescent_4=$i -i='' i_weather_moon_alt_waxing_crescent_5=$i -i='' i_weather_moon_alt_waxing_crescent_6=$i -i='' i_weather_moon_alt_first_quarter=$i -i='' i_weather_moon_alt_waxing_gibbous_1=$i -i='' i_weather_moon_alt_waxing_gibbous_2=$i -i='' i_weather_moon_alt_waxing_gibbous_3=$i -i='' i_weather_moon_alt_waxing_gibbous_4=$i -i='' i_weather_moon_alt_waxing_gibbous_5=$i -i='' i_weather_moon_alt_waxing_gibbous_6=$i -i='' i_weather_moon_alt_full=$i -i='' i_weather_moon_alt_waning_gibbous_1=$i -i='' i_weather_moon_alt_waning_gibbous_2=$i -i='' i_weather_moon_alt_waning_gibbous_3=$i -i='' i_weather_moon_alt_waning_gibbous_4=$i -i='' i_weather_moon_alt_waning_gibbous_5=$i -i='' i_weather_moon_alt_waning_gibbous_6=$i -i='' i_weather_moon_alt_third_quarter=$i -i='' i_weather_moon_alt_waning_crescent_1=$i -i='' i_weather_moon_alt_waning_crescent_2=$i -i='' i_weather_moon_alt_waning_crescent_3=$i -i='' i_weather_moon_alt_waning_crescent_4=$i -i='' i_weather_moon_alt_waning_crescent_5=$i -i='' i_weather_moon_alt_waning_crescent_6=$i -i='' i_weather_moon_alt_new=$i +i='' i_weather_day_cloudy_gusts=$i +i='' i_weather_day_cloudy_windy=$i +i='' i_weather_day_cloudy=$i +i='' i_weather_day_fog=$i +i='' i_weather_day_hail=$i +i='' i_weather_day_lightning=$i +i='' i_weather_day_rain_mix=$i +i='' i_weather_day_rain_wind=$i +i='' i_weather_day_rain=$i +i='' i_weather_day_showers=$i +i='' i_weather_day_snow=$i +i='' i_weather_day_sprinkle=$i +i='' i_weather_day_sunny_overcast=$i +i='' i_weather_day_sunny=$i +i='' i_weather_day_storm_showers=$i +i='' i_weather_day_thunderstorm=$i +i='' i_weather_cloudy_gusts=$i +i='' i_weather_cloudy_windy=$i +i='' i_weather_cloudy=$i +i='' i_weather_fog=$i +i='' i_weather_hail=$i +i='' i_weather_lightning=$i +i='' i_weather_rain_mix=$i +i='' i_weather_rain_wind=$i +i='' i_weather_rain=$i +i='' i_weather_showers=$i +i='' i_weather_snow=$i +i='' i_weather_sprinkle=$i +i='' i_weather_storm_showers=$i +i='' i_weather_thunderstorm=$i +i='' i_weather_windy=$i +i='' i_weather_night_alt_cloudy_gusts=$i +i='' i_weather_night_alt_cloudy_windy=$i +i='' i_weather_night_alt_hail=$i +i='' i_weather_night_alt_lightning=$i +i='' i_weather_night_alt_rain_mix=$i +i='' i_weather_night_alt_rain_wind=$i +i='' i_weather_night_alt_rain=$i +i='' i_weather_night_alt_rain_mix=$i +i='' i_weather_night_alt_snow=$i +i='' i_weather_night_alt_sprinkle=$i +i='' i_weather_night_alt_storm_showers=$i +i='' i_weather_night_alt_thunderstorm=$i +i='' i_weather_night_clear=$i +i='' i_weather_night_cloudy_gusts=$i +i='' i_weather_night_cloudy_windy=$i +i='' i_weather_night_cloudy=$i +i='' i_weather_night_hail=$i +i='' i_weather_night_lightning=$i +i='' i_weather_night_rain_mix=$i +i='' i_weather_night_rain_wind=$i +i='' i_weather_night_rain=$i +i='' i_weather_night_showers=$i +i='' i_weather_night_snow=$i +i='' i_weather_night_sprinkle=$i +i='' i_weather_night_storm_showers=$i +i='' i_weather_night_thunderstorm=$i +i='' i_weather_celsius=$i +i='' i_weather_cloud_down=$i +i='' i_weather_cloud_refresh=$i +i='' i_weather_cloud_up=$i +i='' i_weather_cloud=$i +i='' i_weather_degrees=$i +i='' i_weather_direction_down_left=$i +i='' i_weather_direction_down=$i +i='' i_weather_fahrenheit=$i +i='' i_weather_horizon_alt=$i +i='' i_weather_horizon=$i +i='' i_weather_direction_left=$i +i='' i_weather_aliens=$i +i='' i_weather_night_fog=$i +i='' i_weather_refresh_alt=$i +i='' i_weather_refresh=$i +i='' i_weather_direction_right=$i +i='' i_weather_raindrops=$i +i='' i_weather_strong_wind=$i +i='' i_weather_sunrise=$i +i='' i_weather_sunset=$i +i='' i_weather_thermometer_exterior=$i +i='' i_weather_thermometer_internal=$i +i='' i_weather_thermometer=$i +i='' i_weather_tornado=$i +i='' i_weather_direction_up_right=$i +i='' i_weather_direction_up=$i +i='' i_weather_wind_west=$i +i='' i_weather_wind_south_west=$i +i='' i_weather_wind_south_east=$i +i='' i_weather_wind_south=$i +i='' i_weather_wind_north_west=$i +i='' i_weather_wind_north_east=$i +i='' i_weather_wind_north=$i +i='' i_weather_wind_east=$i +i='' i_weather_smoke=$i +i='' i_weather_dust=$i +i='' i_weather_snow_wind=$i +i='' i_weather_day_snow_wind=$i +i='' i_weather_night_snow_wind=$i +i='' i_weather_night_alt_snow_wind=$i +i='' i_weather_day_sleet_storm=$i +i='' i_weather_night_sleet_storm=$i +i='' i_weather_night_alt_sleet_storm=$i +i='' i_weather_day_snow_thunderstorm=$i +i='' i_weather_night_snow_thunderstorm=$i +i='' i_weather_night_alt_snow_thunderstorm=$i +i='' i_weather_solar_eclipse=$i +i='' i_weather_lunar_eclipse=$i +i='' i_weather_meteor=$i +i='' i_weather_hot=$i +i='' i_weather_hurricane=$i +i='' i_weather_smog=$i +i='' i_weather_alien=$i +i='' i_weather_snowflake_cold=$i +i='' i_weather_stars=$i +i='' i_weather_raindrop=$i +i='' i_weather_barometer=$i +i='' i_weather_humidity=$i +i='' i_weather_na=$i +i='' i_weather_flood=$i +i='' i_weather_day_cloudy_high=$i +i='' i_weather_night_alt_cloudy_high=$i +i='' i_weather_night_cloudy_high=$i +i='' i_weather_night_alt_partly_cloudy=$i +i='' i_weather_sandstorm=$i +i='' i_weather_night_partly_cloudy=$i +i='' i_weather_umbrella=$i +i='' i_weather_day_windy=$i +i='' i_weather_night_alt_cloudy=$i +i='' i_weather_direction_up_left=$i +i='' i_weather_direction_down_right=$i +i='' i_weather_time_12=$i +i='' i_weather_time_1=$i +i='' i_weather_time_2=$i +i='' i_weather_time_3=$i +i='' i_weather_time_4=$i +i='' i_weather_time_5=$i +i='' i_weather_time_6=$i +i='' i_weather_time_7=$i +i='' i_weather_time_8=$i +i='' i_weather_time_9=$i +i='' i_weather_time_10=$i +i='' i_weather_time_11=$i +i='' i_weather_moon_new=$i +i='' i_weather_moon_waxing_crescent_1=$i +i='' i_weather_moon_waxing_crescent_2=$i +i='' i_weather_moon_waxing_crescent_3=$i +i='' i_weather_moon_waxing_crescent_4=$i +i='' i_weather_moon_waxing_crescent_5=$i +i='' i_weather_moon_waxing_crescent_6=$i +i='' i_weather_moon_first_quarter=$i +i='' i_weather_moon_waxing_gibbous_1=$i +i='' i_weather_moon_waxing_gibbous_2=$i +i='' i_weather_moon_waxing_gibbous_3=$i +i='' i_weather_moon_waxing_gibbous_4=$i +i='' i_weather_moon_waxing_gibbous_5=$i +i='' i_weather_moon_waxing_gibbous_6=$i +i='' i_weather_moon_full=$i +i='' i_weather_moon_waning_gibbous_1=$i +i='' i_weather_moon_waning_gibbous_2=$i +i='' i_weather_moon_waning_gibbous_3=$i +i='' i_weather_moon_waning_gibbous_4=$i +i='' i_weather_moon_waning_gibbous_5=$i +i='' i_weather_moon_waning_gibbous_6=$i +i='' i_weather_moon_third_quarter=$i +i='' i_weather_moon_waning_crescent_1=$i +i='' i_weather_moon_waning_crescent_2=$i +i='' i_weather_moon_waning_crescent_3=$i +i='' i_weather_moon_waning_crescent_4=$i +i='' i_weather_moon_waning_crescent_5=$i +i='' i_weather_moon_waning_crescent_6=$i +i='' i_weather_wind_direction=$i +i='' i_weather_day_sleet=$i +i='' i_weather_night_sleet=$i +i='' i_weather_night_alt_sleet=$i +i='' i_weather_sleet=$i +i='' i_weather_day_haze=$i +i='' i_weather_wind_beaufort_0=$i +i='' i_weather_wind_beaufort_1=$i +i='' i_weather_wind_beaufort_2=$i +i='' i_weather_wind_beaufort_3=$i +i='' i_weather_wind_beaufort_4=$i +i='' i_weather_wind_beaufort_5=$i +i='' i_weather_wind_beaufort_6=$i +i='' i_weather_wind_beaufort_7=$i +i='' i_weather_wind_beaufort_8=$i +i='' i_weather_wind_beaufort_9=$i +i='' i_weather_wind_beaufort_10=$i +i='' i_weather_wind_beaufort_11=$i +i='' i_weather_wind_beaufort_12=$i +i='' i_weather_day_light_wind=$i +i='' i_weather_tsunami=$i +i='' i_weather_earthquake=$i +i='' i_weather_fire=$i +i='' i_weather_volcano=$i +i='' i_weather_moonrise=$i +i='' i_weather_moonset=$i +i='' i_weather_train=$i +i='' i_weather_small_craft_advisory=$i +i='' i_weather_gale_warning=$i +i='' i_weather_storm_warning=$i +i='' i_weather_hurricane_warning=$i +i='' i_weather_moon_alt_waxing_crescent_1=$i +i='' i_weather_moon_alt_waxing_crescent_2=$i +i='' i_weather_moon_alt_waxing_crescent_3=$i +i='' i_weather_moon_alt_waxing_crescent_4=$i +i='' i_weather_moon_alt_waxing_crescent_5=$i +i='' i_weather_moon_alt_waxing_crescent_6=$i +i='' i_weather_moon_alt_first_quarter=$i +i='' i_weather_moon_alt_waxing_gibbous_1=$i +i='' i_weather_moon_alt_waxing_gibbous_2=$i +i='' i_weather_moon_alt_waxing_gibbous_3=$i +i='' i_weather_moon_alt_waxing_gibbous_4=$i +i='' i_weather_moon_alt_waxing_gibbous_5=$i +i='' i_weather_moon_alt_waxing_gibbous_6=$i +i='' i_weather_moon_alt_full=$i +i='' i_weather_moon_alt_waning_gibbous_1=$i +i='' i_weather_moon_alt_waning_gibbous_2=$i +i='' i_weather_moon_alt_waning_gibbous_3=$i +i='' i_weather_moon_alt_waning_gibbous_4=$i +i='' i_weather_moon_alt_waning_gibbous_5=$i +i='' i_weather_moon_alt_waning_gibbous_6=$i +i='' i_weather_moon_alt_third_quarter=$i +i='' i_weather_moon_alt_waning_crescent_1=$i +i='' i_weather_moon_alt_waning_crescent_2=$i +i='' i_weather_moon_alt_waning_crescent_3=$i +i='' i_weather_moon_alt_waning_crescent_4=$i +i='' i_weather_moon_alt_waning_crescent_5=$i +i='' i_weather_moon_alt_waning_crescent_6=$i +i='' i_weather_moon_alt_new=$i diff --git a/font-patcher b/font-patcher index 2a305b352..585eae11f 100755 --- a/font-patcher +++ b/font-patcher @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding=utf8 # Nerd Fonts Version: 2.0.0 -# script version: 2.0.0 +# script version: 2.0.1 from __future__ import absolute_import, print_function, unicode_literals @@ -415,7 +415,7 @@ PATCH_SET = [ { 'Enabled': args.octicons, 'Name': "Octicons", 'Filename': "octicons.ttf", 'Exact': octiconsExactEncodingPosition, 'SymStart': 0X26A1, 'SymEnd': 0X26A1, 'SrcStart': None, 'SrcEnd': None, 'ScaleGlyph': OCTI_SCALE_LIST, 'Attributes': SYM_ATTR_DEFAULT }, # Zap { 'Enabled': args.octicons, 'Name': "Octicons", 'Filename': "octicons.ttf", 'Exact': octiconsExactEncodingPosition, 'SymStart': 0xF27C, 'SymEnd': 0xF27C, 'SrcStart': 0xF4A9, 'SrcEnd': 0xF4A9, 'ScaleGlyph': OCTI_SCALE_LIST, 'Attributes': SYM_ATTR_DEFAULT }, # Desktop { 'Enabled': args.material, 'Name': "Material", 'Filename': "materialdesignicons-webfont.ttf", 'Exact': False, 'SymStart': 0xF001, 'SymEnd': 0xF847, 'SrcStart': 0xF500, 'SrcEnd': 0xFD46, 'ScaleGlyph': None, 'Attributes': SYM_ATTR_DEFAULT }, - { 'Enabled': args.weather, 'Name': "Weather Icons", 'Filename': "weathericons-regular-webfont.ttf", 'Exact': False, 'SymStart': 0xF000, 'SymEnd': 0xF0EB, 'SrcStart': 0xF328, 'SrcEnd': 0xF413, 'ScaleGlyph': None, 'Attributes': SYM_ATTR_DEFAULT }, + { 'Enabled': args.weather, 'Name': "Weather Icons", 'Filename': "weathericons-regular-webfont.ttf", 'Exact': False, 'SymStart': 0xF000, 'SymEnd': 0xF0EB, 'SrcStart': 0xE300, 'SrcEnd': 0xE3EB, 'ScaleGlyph': None, 'Attributes': SYM_ATTR_DEFAULT }, { 'Enabled': args.custom, 'Name': "Custom", 'Filename': args.custom, 'Exact': True, 'SymStart': 0x0000, 'SymEnd': 0x0000, 'SrcStart': 0x0000, 'SrcEnd': 0x0000, 'ScaleGlyph': None, 'Attributes': CUSTOM_ATTR }, ]