├── .github ├── banner_dark.webp ├── banner_light.webp ├── preview_animated.webp ├── screenshot_font_family_screen.png ├── screenshot_main_menu_screen.png └── screenshot_palette_screen.png ├── .gitignore ├── .luacheckrc ├── LICENSE ├── README.md ├── assets ├── README.md ├── fonts │ ├── bitter │ │ ├── OFL.txt │ │ ├── bitter_semibold.ttf │ │ ├── bitter_semibold_26.bin │ │ └── bitter_semibold_39.bin │ ├── cascadia_code │ │ ├── LICENSE │ │ ├── cascadia_code_bold.ttf │ │ ├── cascadia_code_bold_25.bin │ │ └── cascadia_code_bold_37.bin │ ├── inter │ │ ├── OFL.txt │ │ ├── inter_24pt_extrabold.ttf │ │ ├── inter_24pt_semibold.ttf │ │ ├── inter_semibold_24.bin │ │ └── inter_semibold_36.bin │ ├── jetbrains_mono │ │ ├── jetbrains_mono_bold.ttf │ │ ├── jetbrains_mono_bold_25.bin │ │ └── jetbrains_mono_bold_36.bin │ ├── montserrat │ │ ├── OFL.txt │ │ ├── montserrat_semibold.ttf │ │ ├── montserrat_semibold_25.bin │ │ └── montserrat_semibold_37.bin │ ├── nunito │ │ ├── OFL.txt │ │ ├── nunito_bold.ttf │ │ ├── nunito_bold_25.bin │ │ └── nunito_bold_37.bin │ └── retro_pixel │ │ ├── LICENSE │ │ ├── retro_pixel_thick.ttf │ │ ├── retro_pixel_thick_28.bin │ │ └── retro_pixel_thick_41.bin ├── icons │ ├── fluent_ui │ │ ├── ic_fluent_battery_0_24_regular.svg │ │ ├── ic_fluent_battery_10_24_regular.svg │ │ ├── ic_fluent_battery_1_24_regular.svg │ │ ├── ic_fluent_battery_2_24_regular.svg │ │ ├── ic_fluent_battery_3_24_regular.svg │ │ ├── ic_fluent_battery_4_24_regular.svg │ │ ├── ic_fluent_battery_5_24_regular.svg │ │ ├── ic_fluent_battery_6_24_regular.svg │ │ ├── ic_fluent_battery_7_24_regular.svg │ │ ├── ic_fluent_battery_8_24_regular.svg │ │ ├── ic_fluent_battery_9_24_regular.svg │ │ ├── ic_fluent_bluetooth_24_regular.svg │ │ └── ic_fluent_wifi_1_24_regular.svg │ ├── glyph │ │ └── muxapp │ │ │ └── aesthetic.png │ ├── kenney_input_prompts │ │ ├── License.txt │ │ ├── playstation_dpad_all.svg │ │ ├── playstation_dpad_down_outline.svg │ │ ├── playstation_dpad_horizontal_outline.svg │ │ ├── playstation_dpad_left_outline.svg │ │ ├── playstation_dpad_right_outline.svg │ │ ├── playstation_dpad_up_outline.svg │ │ ├── playstation_dpad_vertical_outline.svg │ │ ├── playstation_trigger_l1.svg │ │ ├── playstation_trigger_l2.svg │ │ ├── playstation_trigger_r1.svg │ │ ├── playstation_trigger_r2.svg │ │ ├── steam_button_a.svg │ │ ├── steam_button_b.svg │ │ ├── steam_button_c_custom.svg │ │ ├── steam_button_select_custom.svg │ │ ├── steam_button_start_custom.svg │ │ ├── steam_button_start_icon.svg │ │ ├── steam_button_x.svg │ │ ├── steam_button_y.svg │ │ ├── steam_button_z_custom.svg │ │ ├── steamdeck_button_menu_custom.svg │ │ ├── steamdeck_button_quickaccess.svg │ │ ├── steamdeck_stick_l_down.svg │ │ ├── steamdeck_stick_l_left.svg │ │ ├── steamdeck_stick_l_right.svg │ │ ├── steamdeck_stick_l_up.svg │ │ ├── steamdeck_stick_r_down.svg │ │ ├── steamdeck_stick_r_left.svg │ │ ├── steamdeck_stick_r_right.svg │ │ ├── steamdeck_stick_r_up.svg │ │ ├── steamdeck_stick_side_l.svg │ │ ├── steamdeck_stick_side_r.svg │ │ ├── switch_dpad_down.svg │ │ └── switch_dpad_up.svg │ ├── lucide │ │ ├── LICENSE.txt │ │ ├── glyph │ │ │ ├── activity.svg │ │ │ ├── antenna.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-big-down-dash.svg │ │ │ ├── arrow-down-up.svg │ │ │ ├── arrow-down-wide-narrow.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-right.svg │ │ │ ├── axis-3d.svg │ │ │ ├── ban.svg │ │ │ ├── bandage.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-medium.svg │ │ │ ├── battery.svg │ │ │ ├── bell.svg │ │ │ ├── blend.svg │ │ │ ├── bluetooth.svg │ │ │ ├── book-marked.svg │ │ │ ├── book-open.svg │ │ │ ├── book-text.svg │ │ │ ├── boom-box.svg │ │ │ ├── bot.svg │ │ │ ├── box.svg │ │ │ ├── brackets.svg │ │ │ ├── brush-cleaning.svg │ │ │ ├── bubbles.svg │ │ │ ├── cable.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── card-sd.svg │ │ │ ├── case-lower.svg │ │ │ ├── case-sensitive.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-network.svg │ │ │ ├── chart-pie.svg │ │ │ ├── circle-arrow-down.svg │ │ │ ├── circle-arrow-right.svg │ │ │ ├── circle-check-big.svg │ │ │ ├── circle-check.svg │ │ │ ├── circle-dashed.svg │ │ │ ├── circle-ellipsis.svg │ │ │ ├── circle-gauge.svg │ │ │ ├── circle-help.svg │ │ │ ├── circle-pause.svg │ │ │ ├── circle-play.svg │ │ │ ├── circle-power.svg │ │ │ ├── circle-x.svg │ │ │ ├── circuit-board.svg │ │ │ ├── clapperboard.svg │ │ │ ├── clock-arrow-down.svg │ │ │ ├── clock-fading.svg │ │ │ ├── clock.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── compass.svg │ │ │ ├── computer.svg │ │ │ ├── cpu.svg │ │ │ ├── cross.svg │ │ │ ├── crosshair.svg │ │ │ ├── cuboid.svg │ │ │ ├── database-backup.svg │ │ │ ├── database.svg │ │ │ ├── download.svg │ │ │ ├── droplet.svg │ │ │ ├── ellipsis.svg │ │ │ ├── ethernet-port.svg │ │ │ ├── eye.svg │ │ │ ├── fast-forward.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-check-2.svg │ │ │ ├── file-check.svg │ │ │ ├── file-code-2.svg │ │ │ ├── file-code.svg │ │ │ ├── file-heart.svg │ │ │ ├── file-sliders.svg │ │ │ ├── file.svg │ │ │ ├── files.svg │ │ │ ├── flag-triangle-right.svg │ │ │ ├── flame.svg │ │ │ ├── flask-conical.svg │ │ │ ├── folder-search.svg │ │ │ ├── folder-x.svg │ │ │ ├── folder.svg │ │ │ ├── gallery-horizontal-end.svg │ │ │ ├── gamepad-2.svg │ │ │ ├── gamepad.svg │ │ │ ├── gauge.svg │ │ │ ├── ghost.svg │ │ │ ├── git-branch.svg │ │ │ ├── glass-water.svg │ │ │ ├── globe-lock.svg │ │ │ ├── globe.svg │ │ │ ├── grid-2x2.svg │ │ │ ├── hammer.svg │ │ │ ├── hard-drive-upload.svg │ │ │ ├── hard-drive.svg │ │ │ ├── hash.svg │ │ │ ├── hdmi-port.svg │ │ │ ├── heading-1.svg │ │ │ ├── heart.svg │ │ │ ├── hexagon.svg │ │ │ ├── history.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-wifi.svg │ │ │ ├── image-down.svg │ │ │ ├── image-play.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── info.svg │ │ │ ├── joystick.svg │ │ │ ├── keyboard.svg │ │ │ ├── languages.svg │ │ │ ├── laptop.svg │ │ │ ├── layers.svg │ │ │ ├── layout-grid.svg │ │ │ ├── layout-panel-top.svg │ │ │ ├── leaf.svg │ │ │ ├── letter-text.svg │ │ │ ├── library-big.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-ordered.svg │ │ │ ├── list-tree.svg │ │ │ ├── list-video.svg │ │ │ ├── loader-circle.svg │ │ │ ├── loader.svg │ │ │ ├── locate.svg │ │ │ ├── lock.svg │ │ │ ├── map-pin.svg │ │ │ ├── megaphone.svg │ │ │ ├── memory-stick.svg │ │ │ ├── merge.svg │ │ │ ├── minus.svg │ │ │ ├── monitor-pause.svg │ │ │ ├── monitor-smartphone.svg │ │ │ ├── monitor.svg │ │ │ ├── moon-star.svg │ │ │ ├── moon.svg │ │ │ ├── music.svg │ │ │ ├── network.svg │ │ │ ├── package-check.svg │ │ │ ├── package-open.svg │ │ │ ├── package.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── panels-top-left.svg │ │ │ ├── parentheses.svg │ │ │ ├── play.svg │ │ │ ├── pocket-knife.svg │ │ │ ├── pointer.svg │ │ │ ├── power.svg │ │ │ ├── presentation.svg │ │ │ ├── proportions.svg │ │ │ ├── rabbit.svg │ │ │ ├── refresh-cw.svg │ │ │ ├── regex.svg │ │ │ ├── remove-formatting.svg │ │ │ ├── repeat-2.svg │ │ │ ├── rotate-ccw.svg │ │ │ ├── rotate-cw.svg │ │ │ ├── router.svg │ │ │ ├── save.svg │ │ │ ├── scale.svg │ │ │ ├── scaling.svg │ │ │ ├── scan.svg │ │ │ ├── scroll.svg │ │ │ ├── search.svg │ │ │ ├── server.svg │ │ │ ├── settings-2.svg │ │ │ ├── settings.svg │ │ │ ├── shapes.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shrink.svg │ │ │ ├── shuffle.svg │ │ │ ├── signal-high.svg │ │ │ ├── signal.svg │ │ │ ├── skull.svg │ │ │ ├── sliders-horizontal.svg │ │ │ ├── sliders-vertical.svg │ │ │ ├── sparkle.svg │ │ │ ├── sparkles.svg │ │ │ ├── speaker.svg │ │ │ ├── split.svg │ │ │ ├── square-asterisk.svg │ │ │ ├── square-dashed.svg │ │ │ ├── square-terminal.svg │ │ │ ├── square.svg │ │ │ ├── star.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sun-dim.svg │ │ │ ├── sun-medium.svg │ │ │ ├── sun-moon.svg │ │ │ ├── sun.svg │ │ │ ├── swatch-book.svg │ │ │ ├── tag.svg │ │ │ ├── terminal.svg │ │ │ ├── text.svg │ │ │ ├── thermometer-sun.svg │ │ │ ├── thermometer.svg │ │ │ ├── timer-reset.svg │ │ │ ├── timer.svg │ │ │ ├── toolbox.svg │ │ │ ├── trash.svg │ │ │ ├── trending-up.svg │ │ │ ├── triangle.svg │ │ │ ├── tv-minimal-play.svg │ │ │ ├── tv.svg │ │ │ ├── type.svg │ │ │ ├── ungroup.svg │ │ │ ├── unplug.svg │ │ │ ├── usb.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-round-cog.svg │ │ │ ├── users-round.svg │ │ │ ├── venetian-mask.svg │ │ │ ├── vibrate.svg │ │ │ ├── volume-1.svg │ │ │ ├── volume-2.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-x.svg │ │ │ ├── volume.svg │ │ │ ├── wand-sparkles.svg │ │ │ ├── waypoints.svg │ │ │ ├── whole-word.svg │ │ │ ├── wifi.svg │ │ │ ├── wrench.svg │ │ │ ├── youtube.svg │ │ │ └── zap.svg │ │ └── ui │ │ │ ├── arrow-down-to-line.svg │ │ │ ├── arrow-up-from-line.svg │ │ │ ├── check.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── cloud-download.svg │ │ │ ├── delete.svg │ │ │ ├── file-up.svg │ │ │ ├── info.svg │ │ │ ├── list-restart.svg │ │ │ ├── list-x.svg │ │ │ ├── palette.svg │ │ │ ├── power.svg │ │ │ ├── refresh-ccw.svg │ │ │ ├── refresh-cw.svg │ │ │ ├── save.svg │ │ │ ├── square-check.svg │ │ │ ├── square.svg │ │ │ ├── trash.svg │ │ │ └── zap.svg │ ├── material_symbols │ │ ├── battery_android_0_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_1_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_2_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_3_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_4_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_5_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_6_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── battery_android_full_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── bluetooth_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ │ └── wifi_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg │ └── muos │ │ ├── README.md │ │ ├── logo.svg │ │ └── logo_outline.svg ├── images │ ├── header_alignment │ │ ├── header_alignment_center.png │ │ ├── header_alignment_left.png │ │ └── header_alignment_right.png │ ├── home_screen_layout │ │ ├── grid.png │ │ └── list.png │ ├── icons_toggle_samples │ │ ├── icons_disabled.png │ │ └── icons_enabled.png │ ├── kiosk.png │ └── kofi_qrcode.png └── sounds │ ├── back.wav │ ├── confirm.wav │ ├── error.wav │ ├── navigate.wav │ ├── reboot.wav │ └── shutdown.wav ├── bin ├── LICENSE.txt └── love ├── dev_launch.sh ├── lib ├── liblove-11.5.so └── libluajit-5.1.so.2 ├── mux_launch.sh ├── src ├── colors.lua ├── conf.lua ├── control_hints.lua ├── error_handler.lua ├── font_calibration.lua ├── input.lua ├── json_lua │ ├── LICENSE.txt │ └── json.lua ├── main.lua ├── paths.lua ├── presets │ ├── bumblebee.lua │ ├── dmg.lua │ ├── fami.lua │ ├── mint.lua │ ├── orange_cream.lua │ ├── purple_noir.lua │ ├── terminal.lua │ ├── vaporwave.lua │ └── win95.lua ├── scheme_templates │ ├── 1024x768 │ │ └── scheme │ │ │ ├── default.ini │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ └── muxplore.ini │ ├── 1280x720 │ │ └── scheme │ │ │ ├── default.ini │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ └── muxplore.ini │ ├── 640x480 │ │ └── scheme │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ ├── muxplore.ini │ │ │ └── muxstart.ini │ ├── 720x480 │ │ └── scheme │ │ │ ├── default.ini │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ └── muxplore.ini │ ├── 720x576 │ │ └── scheme │ │ │ ├── default.ini │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ └── muxplore.ini │ ├── 720x720 │ │ └── scheme │ │ │ ├── default.ini │ │ │ ├── muxapp.ini │ │ │ ├── muxcollect.ini │ │ │ ├── muxhistory.ini │ │ │ ├── muxlaunch.ini │ │ │ ├── muxpicker.ini │ │ │ └── muxplore.ini │ └── scheme │ │ ├── global.ini │ │ ├── muxcollect.ini │ │ ├── muxconnect.ini │ │ ├── muxcustom.ini │ │ ├── muxhistory.ini │ │ └── muxplore.ini ├── screens.lua ├── screens │ ├── about.lua │ ├── background.lua │ ├── battery.lua │ ├── box_art_width.lua │ ├── color_picker.lua │ ├── color_picker │ │ ├── hex.lua │ │ ├── hsv.lua │ │ ├── palette.lua │ │ └── shared.lua │ ├── datetime.lua │ ├── debug.lua │ ├── font_family.lua │ ├── header.lua │ ├── home_screen_layout.lua │ ├── icons.lua │ ├── load_preset.lua │ ├── main_menu.lua │ ├── navigation.lua │ ├── rgb_lighting.lua │ ├── settings.lua │ ├── splash.lua │ ├── status.lua │ └── virtual_keyboard.lua ├── shaders │ └── feather_alpha.fs ├── state.lua ├── theme_creator.lua ├── tove │ ├── LICENSE │ ├── init.lua │ ├── libTove.dylib │ └── libTove.so ├── tween.lua ├── ui │ ├── background.lua │ ├── component.lua │ ├── components │ │ ├── button.lua │ │ ├── color_preview.lua │ │ ├── constants.lua │ │ ├── gradient_preview.lua │ │ ├── header.lua │ │ ├── image.lua │ │ ├── list.lua │ │ ├── list_select.lua │ │ ├── modal.lua │ │ ├── slider.lua │ │ └── tab_bar.lua │ ├── controllers │ │ ├── focus_manager.lua │ │ ├── input_config.lua │ │ ├── input_manager.lua │ │ └── navigation_utils.lua │ ├── fonts.lua │ └── layouts │ │ └── container.lua ├── utils │ ├── color.lua │ ├── commands.lua │ ├── download_thread.lua │ ├── environment.lua │ ├── fail.lua │ ├── image_generator.lua │ ├── logger.lua │ ├── ota_update.lua │ ├── presets.lua │ ├── rgb.lua │ ├── scheme_configurator.lua │ ├── settings.lua │ ├── svg.lua │ ├── system.lua │ └── theme_packager.lua └── version.lua ├── update.sh └── utils ├── compare_fonts.py ├── compare_themes.sh ├── convert_font_to_binary.sh ├── generate_glyph_pngs.sh ├── generate_glyph_pngs_if_needed.sh ├── glyph_mapping.txt └── print_average_glyph_dimensions.sh /.github/banner_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/banner_dark.webp -------------------------------------------------------------------------------- /.github/banner_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/banner_light.webp -------------------------------------------------------------------------------- /.github/preview_animated.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/preview_animated.webp -------------------------------------------------------------------------------- /.github/screenshot_font_family_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/screenshot_font_family_screen.png -------------------------------------------------------------------------------- /.github/screenshot_main_menu_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/screenshot_main_menu_screen.png -------------------------------------------------------------------------------- /.github/screenshot_palette_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.github/screenshot_palette_screen.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/.luacheckrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/fonts/bitter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/bitter/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/bitter/bitter_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/bitter/bitter_semibold.ttf -------------------------------------------------------------------------------- /assets/fonts/bitter/bitter_semibold_26.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/bitter/bitter_semibold_26.bin -------------------------------------------------------------------------------- /assets/fonts/bitter/bitter_semibold_39.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/bitter/bitter_semibold_39.bin -------------------------------------------------------------------------------- /assets/fonts/cascadia_code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/cascadia_code/LICENSE -------------------------------------------------------------------------------- /assets/fonts/cascadia_code/cascadia_code_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/cascadia_code/cascadia_code_bold.ttf -------------------------------------------------------------------------------- /assets/fonts/cascadia_code/cascadia_code_bold_25.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/cascadia_code/cascadia_code_bold_25.bin -------------------------------------------------------------------------------- /assets/fonts/cascadia_code/cascadia_code_bold_37.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/cascadia_code/cascadia_code_bold_37.bin -------------------------------------------------------------------------------- /assets/fonts/inter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/inter/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/inter/inter_24pt_extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/inter/inter_24pt_extrabold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/inter_24pt_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/inter/inter_24pt_semibold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/inter_semibold_24.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/inter/inter_semibold_24.bin -------------------------------------------------------------------------------- /assets/fonts/inter/inter_semibold_36.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/inter/inter_semibold_36.bin -------------------------------------------------------------------------------- /assets/fonts/jetbrains_mono/jetbrains_mono_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/jetbrains_mono/jetbrains_mono_bold.ttf -------------------------------------------------------------------------------- /assets/fonts/jetbrains_mono/jetbrains_mono_bold_25.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/jetbrains_mono/jetbrains_mono_bold_25.bin -------------------------------------------------------------------------------- /assets/fonts/jetbrains_mono/jetbrains_mono_bold_36.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/jetbrains_mono/jetbrains_mono_bold_36.bin -------------------------------------------------------------------------------- /assets/fonts/montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/montserrat/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/montserrat/montserrat_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/montserrat/montserrat_semibold.ttf -------------------------------------------------------------------------------- /assets/fonts/montserrat/montserrat_semibold_25.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/montserrat/montserrat_semibold_25.bin -------------------------------------------------------------------------------- /assets/fonts/montserrat/montserrat_semibold_37.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/montserrat/montserrat_semibold_37.bin -------------------------------------------------------------------------------- /assets/fonts/nunito/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/nunito/OFL.txt -------------------------------------------------------------------------------- /assets/fonts/nunito/nunito_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/nunito/nunito_bold.ttf -------------------------------------------------------------------------------- /assets/fonts/nunito/nunito_bold_25.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/nunito/nunito_bold_25.bin -------------------------------------------------------------------------------- /assets/fonts/nunito/nunito_bold_37.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/nunito/nunito_bold_37.bin -------------------------------------------------------------------------------- /assets/fonts/retro_pixel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/retro_pixel/LICENSE -------------------------------------------------------------------------------- /assets/fonts/retro_pixel/retro_pixel_thick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/retro_pixel/retro_pixel_thick.ttf -------------------------------------------------------------------------------- /assets/fonts/retro_pixel/retro_pixel_thick_28.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/retro_pixel/retro_pixel_thick_28.bin -------------------------------------------------------------------------------- /assets/fonts/retro_pixel/retro_pixel_thick_41.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/fonts/retro_pixel/retro_pixel_thick_41.bin -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_0_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_0_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_10_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_10_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_1_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_1_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_2_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_2_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_3_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_3_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_4_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_4_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_5_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_5_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_6_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_6_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_7_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_7_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_8_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_8_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_battery_9_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_battery_9_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_bluetooth_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_bluetooth_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/fluent_ui/ic_fluent_wifi_1_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/fluent_ui/ic_fluent_wifi_1_24_regular.svg -------------------------------------------------------------------------------- /assets/icons/glyph/muxapp/aesthetic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/glyph/muxapp/aesthetic.png -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/License.txt -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_all.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_down_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_down_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_horizontal_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_horizontal_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_left_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_left_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_right_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_right_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_up_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_up_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_dpad_vertical_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_dpad_vertical_outline.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_trigger_l1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_trigger_l1.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_trigger_l2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_trigger_l2.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_trigger_r1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_trigger_r1.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/playstation_trigger_r2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/playstation_trigger_r2.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_a.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_b.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_c_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_c_custom.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_select_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_select_custom.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_start_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_start_custom.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_start_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_start_icon.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_x.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_y.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steam_button_z_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steam_button_z_custom.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_button_menu_custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_button_menu_custom.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_button_quickaccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_button_quickaccess.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_l_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_l_down.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_l_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_l_left.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_l_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_l_right.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_l_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_l_up.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_r_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_r_down.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_r_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_r_left.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_r_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_r_right.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_r_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_r_up.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_side_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_side_l.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/steamdeck_stick_side_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/steamdeck_stick_side_r.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/switch_dpad_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/switch_dpad_down.svg -------------------------------------------------------------------------------- /assets/icons/kenney_input_prompts/switch_dpad_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/kenney_input_prompts/switch_dpad_up.svg -------------------------------------------------------------------------------- /assets/icons/lucide/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/LICENSE.txt -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/activity.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/antenna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/antenna.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/archive.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/arrow-big-down-dash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/arrow-big-down-dash.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/arrow-down-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/arrow-down-up.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/arrow-down-wide-narrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/arrow-down-wide-narrow.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/arrow-down.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/arrow-left-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/arrow-left-right.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/axis-3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/axis-3d.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ban.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/bandage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/bandage.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/battery-charging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/battery-charging.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/battery-full.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/battery-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/battery-low.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/battery-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/battery-medium.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/battery.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/bell.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/blend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/blend.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/bluetooth.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/book-marked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/book-marked.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/book-open.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/book-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/book-text.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/boom-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/boom-box.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/bot.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/box.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/brackets.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/brush-cleaning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/brush-cleaning.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/bubbles.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/cable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/cable.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/calendar.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/camera.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/card-sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/card-sd.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/case-lower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/case-lower.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/case-sensitive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/case-sensitive.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/chart-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/chart-line.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/chart-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/chart-network.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/chart-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/chart-pie.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-arrow-down.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-arrow-right.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-check-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-check-big.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-check.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-dashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-dashed.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-ellipsis.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-gauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-gauge.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-help.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-pause.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-play.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-power.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circle-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circle-x.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/circuit-board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/circuit-board.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/clapperboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/clapperboard.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/clock-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/clock-arrow-down.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/clock-fading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/clock-fading.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/clock.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/code.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/coffee.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/compass.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/computer.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/cpu.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/cross.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/crosshair.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/cuboid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/cuboid.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/database-backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/database-backup.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/database.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/download.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/droplet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/droplet.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ellipsis.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ethernet-port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ethernet-port.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/eye.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/fast-forward.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-archive.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-check-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-check-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-check.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-code-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-code-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-code.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-heart.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file-sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file-sliders.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/file.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/files.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/flag-triangle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/flag-triangle-right.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/flame.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/flask-conical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/flask-conical.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/folder-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/folder-search.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/folder-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/folder-x.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/folder.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/gallery-horizontal-end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/gallery-horizontal-end.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/gamepad-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/gamepad-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/gamepad.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/gauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/gauge.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ghost.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/git-branch.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/glass-water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/glass-water.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/globe-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/globe-lock.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/globe.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/grid-2x2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/grid-2x2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hammer.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hard-drive-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hard-drive-upload.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hard-drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hard-drive.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hash.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hdmi-port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hdmi-port.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/heading-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/heading-1.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/heart.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hexagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hexagon.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/history.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/hourglass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/hourglass.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/house-wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/house-wifi.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/image-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/image-down.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/image-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/image-play.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/image.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/images.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/info.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/joystick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/joystick.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/keyboard.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/languages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/languages.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/laptop.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/layers.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/layout-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/layout-grid.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/layout-panel-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/layout-panel-top.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/leaf.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/letter-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/letter-text.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/library-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/library-big.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/lightbulb.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/list-ordered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/list-ordered.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/list-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/list-tree.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/list-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/list-video.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/loader-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/loader-circle.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/loader.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/locate.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/lock.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/map-pin.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/megaphone.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/memory-stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/memory-stick.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/merge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/merge.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/minus.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/monitor-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/monitor-pause.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/monitor-smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/monitor-smartphone.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/monitor.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/moon-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/moon-star.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/moon.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/music.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/network.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/package-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/package-check.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/package-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/package-open.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/package.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/paint-roller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/paint-roller.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/palette.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/panels-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/panels-top-left.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/parentheses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/parentheses.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/play.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/pocket-knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/pocket-knife.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/pointer.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/power.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/presentation.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/proportions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/proportions.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/rabbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/rabbit.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/refresh-cw.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/regex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/regex.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/remove-formatting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/remove-formatting.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/repeat-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/repeat-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/rotate-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/rotate-ccw.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/rotate-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/rotate-cw.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/router.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/router.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/save.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/scale.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/scaling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/scaling.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/scan.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/scroll.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/search.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/server.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/settings-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/settings-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/settings.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/shapes.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/shield.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ship.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/shopping-bag.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/shrink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/shrink.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/shuffle.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/signal-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/signal-high.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/signal.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/skull.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sliders-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sliders-horizontal.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sliders-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sliders-vertical.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sparkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sparkle.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sparkles.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/speaker.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/split.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/split.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/square-asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/square-asterisk.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/square-dashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/square-dashed.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/square-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/square-terminal.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/square.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/star.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/stethoscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/stethoscope.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sun-dim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sun-dim.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sun-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sun-medium.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sun-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sun-moon.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/sun.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/swatch-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/swatch-book.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/tag.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/terminal.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/text.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/thermometer-sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/thermometer-sun.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/thermometer.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/timer-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/timer-reset.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/timer.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/toolbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/toolbox.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/trash.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/trending-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/trending-up.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/triangle.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/tv-minimal-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/tv-minimal-play.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/tv.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/type.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/ungroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/ungroup.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/unplug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/unplug.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/usb.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/user-cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/user-cog.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/user-round-cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/user-round-cog.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/users-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/users-round.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/venetian-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/venetian-mask.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/vibrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/vibrate.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/volume-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/volume-1.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/volume-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/volume-2.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/volume-off.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/volume-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/volume-x.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/volume.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/wand-sparkles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/wand-sparkles.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/waypoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/waypoints.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/whole-word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/whole-word.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/wifi.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/wrench.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/youtube.svg -------------------------------------------------------------------------------- /assets/icons/lucide/glyph/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/glyph/zap.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/arrow-down-to-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/arrow-down-to-line.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/arrow-up-from-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/arrow-up-from-line.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/check.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/chevron-left.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/chevron-right.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/cloud-download.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/delete.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/file-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/file-up.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/info.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/list-restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/list-restart.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/list-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/list-x.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/palette.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/power.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/refresh-ccw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/refresh-ccw.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/refresh-cw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/refresh-cw.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/save.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/square-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/square-check.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/square.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/trash.svg -------------------------------------------------------------------------------- /assets/icons/lucide/ui/zap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/lucide/ui/zap.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_0_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_0_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_1_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_1_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_2_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_2_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_3_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_3_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_4_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_4_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_5_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_5_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_6_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_6_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/battery_android_full_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/battery_android_full_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/bluetooth_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/bluetooth_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/material_symbols/wifi_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/material_symbols/wifi_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /assets/icons/muos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/muos/README.md -------------------------------------------------------------------------------- /assets/icons/muos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/muos/logo.svg -------------------------------------------------------------------------------- /assets/icons/muos/logo_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/icons/muos/logo_outline.svg -------------------------------------------------------------------------------- /assets/images/header_alignment/header_alignment_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/header_alignment/header_alignment_center.png -------------------------------------------------------------------------------- /assets/images/header_alignment/header_alignment_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/header_alignment/header_alignment_left.png -------------------------------------------------------------------------------- /assets/images/header_alignment/header_alignment_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/header_alignment/header_alignment_right.png -------------------------------------------------------------------------------- /assets/images/home_screen_layout/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/home_screen_layout/grid.png -------------------------------------------------------------------------------- /assets/images/home_screen_layout/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/home_screen_layout/list.png -------------------------------------------------------------------------------- /assets/images/icons_toggle_samples/icons_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/icons_toggle_samples/icons_disabled.png -------------------------------------------------------------------------------- /assets/images/icons_toggle_samples/icons_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/icons_toggle_samples/icons_enabled.png -------------------------------------------------------------------------------- /assets/images/kiosk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/kiosk.png -------------------------------------------------------------------------------- /assets/images/kofi_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/images/kofi_qrcode.png -------------------------------------------------------------------------------- /assets/sounds/back.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/back.wav -------------------------------------------------------------------------------- /assets/sounds/confirm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/confirm.wav -------------------------------------------------------------------------------- /assets/sounds/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/error.wav -------------------------------------------------------------------------------- /assets/sounds/navigate.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/navigate.wav -------------------------------------------------------------------------------- /assets/sounds/reboot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/reboot.wav -------------------------------------------------------------------------------- /assets/sounds/shutdown.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/assets/sounds/shutdown.wav -------------------------------------------------------------------------------- /bin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/bin/LICENSE.txt -------------------------------------------------------------------------------- /bin/love: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/bin/love -------------------------------------------------------------------------------- /dev_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/dev_launch.sh -------------------------------------------------------------------------------- /lib/liblove-11.5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/lib/liblove-11.5.so -------------------------------------------------------------------------------- /lib/libluajit-5.1.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/lib/libluajit-5.1.so.2 -------------------------------------------------------------------------------- /mux_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/mux_launch.sh -------------------------------------------------------------------------------- /src/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/colors.lua -------------------------------------------------------------------------------- /src/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/conf.lua -------------------------------------------------------------------------------- /src/control_hints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/control_hints.lua -------------------------------------------------------------------------------- /src/error_handler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/error_handler.lua -------------------------------------------------------------------------------- /src/font_calibration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/font_calibration.lua -------------------------------------------------------------------------------- /src/input.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/input.lua -------------------------------------------------------------------------------- /src/json_lua/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/json_lua/LICENSE.txt -------------------------------------------------------------------------------- /src/json_lua/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/json_lua/json.lua -------------------------------------------------------------------------------- /src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/main.lua -------------------------------------------------------------------------------- /src/paths.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/paths.lua -------------------------------------------------------------------------------- /src/presets/bumblebee.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/bumblebee.lua -------------------------------------------------------------------------------- /src/presets/dmg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/dmg.lua -------------------------------------------------------------------------------- /src/presets/fami.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/fami.lua -------------------------------------------------------------------------------- /src/presets/mint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/mint.lua -------------------------------------------------------------------------------- /src/presets/orange_cream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/orange_cream.lua -------------------------------------------------------------------------------- /src/presets/purple_noir.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/purple_noir.lua -------------------------------------------------------------------------------- /src/presets/terminal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/terminal.lua -------------------------------------------------------------------------------- /src/presets/vaporwave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/vaporwave.lua -------------------------------------------------------------------------------- /src/presets/win95.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/presets/win95.lua -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/default.ini -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 525 -------------------------------------------------------------------------------- /src/scheme_templates/1024x768/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1024x768/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/default.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 661 -------------------------------------------------------------------------------- /src/scheme_templates/1280x720/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/1280x720/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 337 -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/640x480/scheme/muxstart.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/640x480/scheme/muxstart.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/default.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 365 -------------------------------------------------------------------------------- /src/scheme_templates/720x480/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x480/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/default.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 365 -------------------------------------------------------------------------------- /src/scheme_templates/720x576/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x576/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/default.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxapp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/muxapp.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxlaunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/muxlaunch.ini -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxpicker.ini: -------------------------------------------------------------------------------- 1 | [misc] 2 | CONTENT_WIDTH = 365 -------------------------------------------------------------------------------- /src/scheme_templates/720x720/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/720x720/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/global.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/global.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/muxcollect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/muxcollect.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/muxconnect.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/muxconnect.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/muxcustom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/muxcustom.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/muxhistory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/muxhistory.ini -------------------------------------------------------------------------------- /src/scheme_templates/scheme/muxplore.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/scheme_templates/scheme/muxplore.ini -------------------------------------------------------------------------------- /src/screens.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens.lua -------------------------------------------------------------------------------- /src/screens/about.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/about.lua -------------------------------------------------------------------------------- /src/screens/background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/background.lua -------------------------------------------------------------------------------- /src/screens/battery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/battery.lua -------------------------------------------------------------------------------- /src/screens/box_art_width.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/box_art_width.lua -------------------------------------------------------------------------------- /src/screens/color_picker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/color_picker.lua -------------------------------------------------------------------------------- /src/screens/color_picker/hex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/color_picker/hex.lua -------------------------------------------------------------------------------- /src/screens/color_picker/hsv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/color_picker/hsv.lua -------------------------------------------------------------------------------- /src/screens/color_picker/palette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/color_picker/palette.lua -------------------------------------------------------------------------------- /src/screens/color_picker/shared.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/color_picker/shared.lua -------------------------------------------------------------------------------- /src/screens/datetime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/datetime.lua -------------------------------------------------------------------------------- /src/screens/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/debug.lua -------------------------------------------------------------------------------- /src/screens/font_family.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/font_family.lua -------------------------------------------------------------------------------- /src/screens/header.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/header.lua -------------------------------------------------------------------------------- /src/screens/home_screen_layout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/home_screen_layout.lua -------------------------------------------------------------------------------- /src/screens/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/icons.lua -------------------------------------------------------------------------------- /src/screens/load_preset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/load_preset.lua -------------------------------------------------------------------------------- /src/screens/main_menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/main_menu.lua -------------------------------------------------------------------------------- /src/screens/navigation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/navigation.lua -------------------------------------------------------------------------------- /src/screens/rgb_lighting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/rgb_lighting.lua -------------------------------------------------------------------------------- /src/screens/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/settings.lua -------------------------------------------------------------------------------- /src/screens/splash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/splash.lua -------------------------------------------------------------------------------- /src/screens/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/status.lua -------------------------------------------------------------------------------- /src/screens/virtual_keyboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/screens/virtual_keyboard.lua -------------------------------------------------------------------------------- /src/shaders/feather_alpha.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/shaders/feather_alpha.fs -------------------------------------------------------------------------------- /src/state.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/state.lua -------------------------------------------------------------------------------- /src/theme_creator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/theme_creator.lua -------------------------------------------------------------------------------- /src/tove/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/tove/LICENSE -------------------------------------------------------------------------------- /src/tove/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/tove/init.lua -------------------------------------------------------------------------------- /src/tove/libTove.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/tove/libTove.dylib -------------------------------------------------------------------------------- /src/tove/libTove.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/tove/libTove.so -------------------------------------------------------------------------------- /src/tween.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/tween.lua -------------------------------------------------------------------------------- /src/ui/background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/background.lua -------------------------------------------------------------------------------- /src/ui/component.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/component.lua -------------------------------------------------------------------------------- /src/ui/components/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/button.lua -------------------------------------------------------------------------------- /src/ui/components/color_preview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/color_preview.lua -------------------------------------------------------------------------------- /src/ui/components/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/constants.lua -------------------------------------------------------------------------------- /src/ui/components/gradient_preview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/gradient_preview.lua -------------------------------------------------------------------------------- /src/ui/components/header.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/header.lua -------------------------------------------------------------------------------- /src/ui/components/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/image.lua -------------------------------------------------------------------------------- /src/ui/components/list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/list.lua -------------------------------------------------------------------------------- /src/ui/components/list_select.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/list_select.lua -------------------------------------------------------------------------------- /src/ui/components/modal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/modal.lua -------------------------------------------------------------------------------- /src/ui/components/slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/slider.lua -------------------------------------------------------------------------------- /src/ui/components/tab_bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/components/tab_bar.lua -------------------------------------------------------------------------------- /src/ui/controllers/focus_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/controllers/focus_manager.lua -------------------------------------------------------------------------------- /src/ui/controllers/input_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/controllers/input_config.lua -------------------------------------------------------------------------------- /src/ui/controllers/input_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/controllers/input_manager.lua -------------------------------------------------------------------------------- /src/ui/controllers/navigation_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/controllers/navigation_utils.lua -------------------------------------------------------------------------------- /src/ui/fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/fonts.lua -------------------------------------------------------------------------------- /src/ui/layouts/container.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/ui/layouts/container.lua -------------------------------------------------------------------------------- /src/utils/color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/color.lua -------------------------------------------------------------------------------- /src/utils/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/commands.lua -------------------------------------------------------------------------------- /src/utils/download_thread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/download_thread.lua -------------------------------------------------------------------------------- /src/utils/environment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/environment.lua -------------------------------------------------------------------------------- /src/utils/fail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/fail.lua -------------------------------------------------------------------------------- /src/utils/image_generator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/image_generator.lua -------------------------------------------------------------------------------- /src/utils/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/logger.lua -------------------------------------------------------------------------------- /src/utils/ota_update.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/ota_update.lua -------------------------------------------------------------------------------- /src/utils/presets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/presets.lua -------------------------------------------------------------------------------- /src/utils/rgb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/rgb.lua -------------------------------------------------------------------------------- /src/utils/scheme_configurator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/scheme_configurator.lua -------------------------------------------------------------------------------- /src/utils/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/settings.lua -------------------------------------------------------------------------------- /src/utils/svg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/svg.lua -------------------------------------------------------------------------------- /src/utils/system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/system.lua -------------------------------------------------------------------------------- /src/utils/theme_packager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/utils/theme_packager.lua -------------------------------------------------------------------------------- /src/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/src/version.lua -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/update.sh -------------------------------------------------------------------------------- /utils/compare_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/compare_fonts.py -------------------------------------------------------------------------------- /utils/compare_themes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/compare_themes.sh -------------------------------------------------------------------------------- /utils/convert_font_to_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/convert_font_to_binary.sh -------------------------------------------------------------------------------- /utils/generate_glyph_pngs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/generate_glyph_pngs.sh -------------------------------------------------------------------------------- /utils/generate_glyph_pngs_if_needed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/generate_glyph_pngs_if_needed.sh -------------------------------------------------------------------------------- /utils/glyph_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/glyph_mapping.txt -------------------------------------------------------------------------------- /utils/print_average_glyph_dimensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joneavila/aesthetic/HEAD/utils/print_average_glyph_dimensions.sh --------------------------------------------------------------------------------