diff --git a/.bashrc b/.bashrc index e04aab2..6686549 100644 --- a/.bashrc +++ b/.bashrc @@ -12,11 +12,15 @@ PS1='[\u@\h \W]\$ ' alias l='ls -la' alias lg='lazygit' +# Fix Electron scaling issues by forcing wayland export ELECTRON_ENABLE_OZONE=1 export OZONE_PLATFORM=wayland export GDK_SCALE=1 export GDK_DPI_SCALE=1 +# Force Firefox to run in wayland +export MOZ_ENABLE_WAYLAND=1 + # Yazi function y() { local tmp="$(mktemp -t "yazi-cwd.XXXXXX")" cwd diff --git a/.config/hypr/conf.d/keybinds.conf b/.config/hypr/conf.d/keybinds.conf index f2f7620..f1adde7 100644 --- a/.config/hypr/conf.d/keybinds.conf +++ b/.config/hypr/conf.d/keybinds.conf @@ -7,6 +7,9 @@ # See https://wiki.hyprland.org/Configuring/Keywords/ $mainMod = SUPER # Sets "Windows" key as main modifier +# Lockscreen +bind = $mainMod, Escape, exec, $lockscreen + # Screenshot bind = , Print, exec, $screenshot bind = CTRL, Print, exec, $screenshotSelect diff --git a/.config/hypr/hypridle.conf b/.config/hypr/hypridle.conf new file mode 100644 index 0000000..876c076 --- /dev/null +++ b/.config/hypr/hypridle.conf @@ -0,0 +1,34 @@ +general { + lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances. + before_sleep_cmd = loginctl lock-session # lock before suspend. + after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display. +} + +listener { + timeout = 150 # 2.5min. + on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor. + on-resume = brightnessctl -r # monitor backlight restore. +} + +# turn off keyboard backlight, comment out this section if you dont have a keyboard backlight. +listener { + timeout = 150 # 2.5min. + on-timeout = brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight. + on-resume = brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight. +} + +listener { + timeout = 300 # 5min + on-timeout = loginctl lock-session # lock screen when timeout has passed +} + +listener { + timeout = 330 # 5.5min + on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed + on-resume = hyprctl dispatch dpms on && brightnessctl -r # screen on when activity is detected after timeout has fired. +} + +listener { + timeout = 1800 # 30min + on-timeout = systemctl suspend # suspend pc +} diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 78b47d6..a28abcb 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -23,6 +23,7 @@ $browser = firefox $email = thunderbird $screenshot = grim $screenshotSelect = grim -g "$(slurp)" +$lockscreen = hyprlock ################# ### AUTOSTART ### @@ -30,7 +31,7 @@ $screenshotSelect = grim -g "$(slurp)" # Autostart necessary processes (like notifications daemons, status bars, etc.) exec-once = waybar -exec-once = hyprpaper +exec-once = hyprpaper & hypridle exec-once = dunst exec-once = [workspace 2 silent] $browser exec-once = [workspace 1 silent] $terminal @@ -43,7 +44,6 @@ exec-once = [workspace 1 silent] $terminal env = XCURSOR_SIZE,24 env = HYPRCURSOR_SIZE,24 -#env = ELECTRON_OZONE_PLATFORM_HINT,"wayland" ############################## ### WINDOWS AND WORKSPACES ### diff --git a/.config/hypr/hyprlock.conf b/.config/hypr/hyprlock.conf new file mode 100644 index 0000000..615ce5b --- /dev/null +++ b/.config/hypr/hyprlock.conf @@ -0,0 +1,106 @@ +# sample hyprlock.conf +# for more configuration options, refer https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock +# +# rendered text in all widgets supports pango markup (e.g. or tags) +# ref. https://wiki.hyprland.org/Hypr-Ecosystem/hyprlock/#general-remarks +# +# shortcuts to clear password buffer: ESC, Ctrl+U, Ctrl+Backspace +# +# you can get started by copying this config to ~/.config/hypr/hyprlock.conf +# + +$font = Monospace +$font_dune = Dune Rise + +general { + hide_cursor = true +} + +auth { + fingerprint { + enabled = true + ready_message = Scan fingerprint to unlock + present_message = Scanning... + retry_delay = 250 # in milliseconds + } +} + +animations { + enabled = true + bezier = linear, 1, 1, 0, 0 + animation = fadeIn, 1, 2, linear + animation = fadeOut, 1, 2, linear + animation = inputFieldDots, 1, 2, linear +} + +background { + monitor = + path = ~/wallpapers/dune.jpg + blur_passes = 0 +} + +input-field { + monitor = + size = 20%, 5% + outline_thickness = 3 + inner_color = rgba(0, 0, 0, 0.3) + + outer_color = rgba(f26d00ff) rgba(fcd705ff) 45deg + check_color = rgba(00ff99ee) rgba(ff6633ee) 120deg + fail_color = rgba(ff6633ee) rgba(ff0066ee) 40deg + + font_color = rgba(fce4b8ff) + fade_on_empty = false + rounding = 15 + + shadow_size = 8 + shadow_passes = 2 + + font_family = $font + placeholder_text = Input password... + fail_text = $PAMFAIL + + # uncomment to use a letter instead of a dot to indicate the typed password + # dots_text_format = * + # dots_size = 0.4 + dots_spacing = 0.3 + + # uncomment to use an input indicator that does not show the password length (similar to swaylock's input indicator) + # hide_input = true + + position = 0, -200 + halign = center + valign = center +} + +# TITLE +label { + monitor = + text = Dune-OS + font_size = 90 + font_family = $font_dune + + shadow_size = 10 + shadow_passes = 3 + + #color = rgba(fc9e07ff) + + position = 0, 400 + halign = center + valign = center +} + +# TIME +label { + monitor = + text = $TIME + font_size = 25 + font_family = $font + + shadow_size = 5 + shadow_passes = 2 + + position = 0, -300 + halign = center + valign = center +} diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Bold.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Bold.ttf new file mode 100644 index 0000000..e0bb1d2 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Bold.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-BoldItalic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-BoldItalic.ttf new file mode 100644 index 0000000..f90d847 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-BoldItalic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Italic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Italic.ttf new file mode 100644 index 0000000..ea3f82f Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Italic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Regular.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Regular.ttf new file mode 100644 index 0000000..e6322eb Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFont-Regular.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Bold.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Bold.ttf new file mode 100644 index 0000000..13b39bb Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Bold.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-BoldItalic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-BoldItalic.ttf new file mode 100644 index 0000000..e422339 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-BoldItalic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Italic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Italic.ttf new file mode 100644 index 0000000..335992b Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Italic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Regular.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Regular.ttf new file mode 100644 index 0000000..3850f43 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontMono-Regular.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Bold.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Bold.ttf new file mode 100644 index 0000000..9d70cbe Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Bold.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-BoldItalic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-BoldItalic.ttf new file mode 100644 index 0000000..c796d81 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-BoldItalic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Italic.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Italic.ttf new file mode 100644 index 0000000..285d366 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Italic.ttf differ diff --git a/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Regular.ttf b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Regular.ttf new file mode 100644 index 0000000..fef40b7 Binary files /dev/null and b/.fonts/AdwaitaMono/AdwaitaMonoNerdFontPropo-Regular.ttf differ diff --git a/.fonts/AdwaitaMono/LICENSE b/.fonts/AdwaitaMono/LICENSE new file mode 100644 index 0000000..6dc188d --- /dev/null +++ b/.fonts/AdwaitaMono/LICENSE @@ -0,0 +1,96 @@ +Copyright (c) 2016, The Inter Project Authors (https://github.com/rsms/inter) +Copyright (c) 2015-2025, Renzhi Li (aka. Belleve Invis, belleve@typeof.net) +Copyright (c) 2025, Jamie Gravendeel (https://jamie.garden) +Copyright (c) 2025, Florian Müllner + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/.fonts/AdwaitaMono/README.md b/.fonts/AdwaitaMono/README.md new file mode 100644 index 0000000..e960d55 --- /dev/null +++ b/.fonts/AdwaitaMono/README.md @@ -0,0 +1,48 @@ +# Nerd Fonts + +This is an archived font from the Nerd Fonts release v3.4.0. + +For more information see: +* https://github.com/ryanoasis/nerd-fonts/ +* https://github.com/ryanoasis/nerd-fonts/releases/latest/ + +# Adwaita Mono + +Adwaita Mono is the default monospace font for GNOME 48+. It is a modification of the [Iosevka](https://typeof.net/Iosevka/) font, customized to fit with Adwaita Sans, which is a variation of [Inter](https://rsms.me/inter/) with a disambiguated lowercase L. + +The fonts and license are available on the GNOME GitLab instance: https://gitlab.gnome.org/GNOME/adwaita-fonts + +Version: 32.4 + +## Which font? + +### TL;DR + +* Pick your font family: + * If you are limited to monospaced fonts (because of your terminal, etc) then pick a font with `Nerd Font Mono` (or `NFM`). + * If you want to have bigger icons (usually around 1.5 normal letters wide) pick a font without `Mono` i.e. `Nerd Font` (or `NF`). Most terminals support this, but ymmv. + * If you work in a proportional context (GUI elements or edit a presentation etc) pick a font with `Nerd Font Propo` (or `NFP`). + +### Ligatures + +Ligatures are generally preserved in the patched fonts. +Nerd Fonts `v2.0.0` had no ligatures in the `Nerd Font Mono` fonts, this has been dropped with `v2.1.0`. +If you have a ligature-aware terminal and don't want ligatures you can (usually) disable them in the terminal settings. + +### Explanation + +Once you narrow down your font choice of family (`Droid Sans`, `Inconsolata`, etc) and style (`bold`, `italic`, etc) you have 2 main choices: + +#### `Option 1: Download already patched font` + + * For a stable version download a font package from the [release page](https://github.com/ryanoasis/nerd-fonts/releases) + * Direct links for [AdwaitaMono.zip](https://github.com/ryanoasis/nerd-fonts/releases/latest/download/AdwaitaMono.zip) or [AdwaitaMono.tar.xz](https://github.com/ryanoasis/nerd-fonts/releases/latest/download/AdwaitaMono.tar.xz) + +#### `Option 2: Patch your own font` + + * Patch your own variations with the various options provided by the font patcher (i.e. not include all symbols for smaller font size) + +For more information see: [The FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting#which-font) + +[SIL-RFN]:http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web_fonts_and_RFNs#14cbfd4a + diff --git a/.fonts/Dune/Dune.otf b/.fonts/Dune/Dune.otf new file mode 100644 index 0000000..df025f4 Binary files /dev/null and b/.fonts/Dune/Dune.otf differ diff --git a/.fonts/Dune/Dune.ttf b/.fonts/Dune/Dune.ttf new file mode 100644 index 0000000..4da6799 Binary files /dev/null and b/.fonts/Dune/Dune.ttf differ diff --git a/.fonts/Dune/License.txt b/.fonts/Dune/License.txt new file mode 100644 index 0000000..9b33381 --- /dev/null +++ b/.fonts/Dune/License.txt @@ -0,0 +1,94 @@ +Copyright (c) 2021, Fontswan(https://fontswan.com), +with Reserved Font Name Dune Rise. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/.fonts/JuliaMono/JuliaMono-Black.ttf b/JuliaMono/JuliaMono-Black.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-Black.ttf rename to JuliaMono/JuliaMono-Black.ttf diff --git a/.fonts/JuliaMono/JuliaMono-BlackItalic.ttf b/JuliaMono/JuliaMono-BlackItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-BlackItalic.ttf rename to JuliaMono/JuliaMono-BlackItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-Bold.ttf b/JuliaMono/JuliaMono-Bold.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-Bold.ttf rename to JuliaMono/JuliaMono-Bold.ttf diff --git a/.fonts/JuliaMono/JuliaMono-BoldItalic.ttf b/JuliaMono/JuliaMono-BoldItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-BoldItalic.ttf rename to JuliaMono/JuliaMono-BoldItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-ExtraBold.ttf b/JuliaMono/JuliaMono-ExtraBold.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-ExtraBold.ttf rename to JuliaMono/JuliaMono-ExtraBold.ttf diff --git a/.fonts/JuliaMono/JuliaMono-ExtraBoldItalic.ttf b/JuliaMono/JuliaMono-ExtraBoldItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-ExtraBoldItalic.ttf rename to JuliaMono/JuliaMono-ExtraBoldItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-Light.ttf b/JuliaMono/JuliaMono-Light.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-Light.ttf rename to JuliaMono/JuliaMono-Light.ttf diff --git a/.fonts/JuliaMono/JuliaMono-LightItalic.ttf b/JuliaMono/JuliaMono-LightItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-LightItalic.ttf rename to JuliaMono/JuliaMono-LightItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-Medium.ttf b/JuliaMono/JuliaMono-Medium.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-Medium.ttf rename to JuliaMono/JuliaMono-Medium.ttf diff --git a/.fonts/JuliaMono/JuliaMono-MediumItalic.ttf b/JuliaMono/JuliaMono-MediumItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-MediumItalic.ttf rename to JuliaMono/JuliaMono-MediumItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-Regular.ttf b/JuliaMono/JuliaMono-Regular.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-Regular.ttf rename to JuliaMono/JuliaMono-Regular.ttf diff --git a/.fonts/JuliaMono/JuliaMono-RegularItalic.ttf b/JuliaMono/JuliaMono-RegularItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-RegularItalic.ttf rename to JuliaMono/JuliaMono-RegularItalic.ttf diff --git a/.fonts/JuliaMono/JuliaMono-SemiBold.ttf b/JuliaMono/JuliaMono-SemiBold.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-SemiBold.ttf rename to JuliaMono/JuliaMono-SemiBold.ttf diff --git a/.fonts/JuliaMono/JuliaMono-SemiBoldItalic.ttf b/JuliaMono/JuliaMono-SemiBoldItalic.ttf similarity index 100% rename from .fonts/JuliaMono/JuliaMono-SemiBoldItalic.ttf rename to JuliaMono/JuliaMono-SemiBoldItalic.ttf