mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-10-05 04:57:21 +02:00
add atkinson-hyperlegible fonts including -next,{mono}
This commit is contained in:
parent
a2727f17f1
commit
2332549b93
18
.gitmodules
vendored
18
.gitmodules
vendored
@ -58,3 +58,21 @@
|
|||||||
branch = master
|
branch = master
|
||||||
ignore = dirty
|
ignore = dirty
|
||||||
shallow = true
|
shallow = true
|
||||||
|
[submodule "submodules/atkinson-hyperlegible"]
|
||||||
|
path = submodules/atkinson-hyperlegible
|
||||||
|
url = https://github.com/googlefonts/atkinson-hyperlegible.git
|
||||||
|
branch = main
|
||||||
|
ignore = dirty
|
||||||
|
shallow = true
|
||||||
|
[submodule "submodules/atkinson-hyperlegible-next"]
|
||||||
|
path = submodules/atkinson-hyperlegible-next
|
||||||
|
url = https://github.com/googlefonts/atkinson-hyperlegible-next.git
|
||||||
|
branch = main
|
||||||
|
ignore = dirty
|
||||||
|
shallow = true
|
||||||
|
[submodule "submodules/atkinson-hyperlegible-next-mono"]
|
||||||
|
path = submodules/atkinson-hyperlegible-next-mono
|
||||||
|
url = https://github.com/googlefonts/atkinson-hyperlegible-next-mono.git
|
||||||
|
branch = main
|
||||||
|
ignore = dirty
|
||||||
|
shallow = true
|
||||||
|
8
install
8
install
@ -296,6 +296,9 @@ if [ "$(id -u)" == "0" ]; then
|
|||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontMono /usr/local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontMono /usr/local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontPropo /usr/local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontPropo /usr/local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/Inclusive-Sans/fonts/variable /usr/local/share/fonts/Inclusive-Sans
|
ln -nsfv $HOME/.shell-things/submodules/Inclusive-Sans/fonts/variable /usr/local/share/fonts/Inclusive-Sans
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible/fonts/otf /usr/local/share/fonts/atkinson-hyperlegible
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible-next/fonts/variable /usr/local/share/fonts/atkinson-hyperlegible-next
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible-next-mono/fonts/variable /usr/local/share/fonts/atkinson-hyperlegible-next-mono
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Symlink cleanup
|
# Symlink cleanup
|
||||||
@ -399,15 +402,16 @@ fi
|
|||||||
if [ -d "$HOME/.shell-things" ]; then
|
if [ -d "$HOME/.shell-things" ]; then
|
||||||
mkdir -p $HOME/.local/share/fonts
|
mkdir -p $HOME/.local/share/fonts
|
||||||
ln -nsfv $HOME/.shell-things/submodules/comicneue/Fonts/OTF $HOME/.local/share/fonts/comicneue
|
ln -nsfv $HOME/.shell-things/submodules/comicneue/Fonts/OTF $HOME/.local/share/fonts/comicneue
|
||||||
#ln -nsfv $HOME/.shell-things/submodules/comic-shanns-mono/fonts $HOME/.local/share/fonts/comic-shanns-mono
|
|
||||||
ln -nsfv $HOME/.shell-things/submodules/comic-shanns-mono/fonts/ComicShannsMono-Regular.otf $HOME/.local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/comic-shanns-mono/fonts/ComicShannsMono-Regular.otf $HOME/.local/share/fonts/
|
||||||
#ln -nsfv $HOME/.shell-things/submodules/opendyslexic/compiled $HOME/.local/share/fonts/opendyslexic
|
|
||||||
ln -nsfv $HOME/.shell-things/submodules/opendyslexic/compiled/OpenDyslexic-*.otf $HOME/.local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/opendyslexic/compiled/OpenDyslexic-*.otf $HOME/.local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/otf $HOME/.local/share/fonts/SeriousShanns
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/otf $HOME/.local/share/fonts/SeriousShanns
|
||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFont $HOME/.local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFont $HOME/.local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontMono $HOME/.local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontMono $HOME/.local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontPropo $HOME/.local/share/fonts/
|
ln -nsfv $HOME/.shell-things/submodules/serious-sans/SeriousShanns/NerdFontPropo $HOME/.local/share/fonts/
|
||||||
ln -nsfv $HOME/.shell-things/submodules/Inclusive-Sans/fonts/variable $HOME/.local/share/fonts/Inclusive-Sans
|
ln -nsfv $HOME/.shell-things/submodules/Inclusive-Sans/fonts/variable $HOME/.local/share/fonts/Inclusive-Sans
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible/fonts/otf $HOME/.local/share/atkinson-hyperlegible
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible-next/fonts/variable $HOME/.local/share/atkinson-hyperlegible-next
|
||||||
|
ln -nsfv $HOME/.shell-things/submodules/atkinson-hyperlegible-next-mono/fonts/variable $HOME/.local/share/fonts/atkinson-hyperlegible-next-mono
|
||||||
# Font cleanup
|
# Font cleanup
|
||||||
if hash symlinks 2> /dev/null; then
|
if hash symlinks 2> /dev/null; then
|
||||||
symlinks -d $HOME/.local/share/fonts/
|
symlinks -d $HOME/.local/share/fonts/
|
||||||
|
1
submodules/atkinson-hyperlegible
Submodule
1
submodules/atkinson-hyperlegible
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 1cb311624b2ddf88e9e37873999d165a8cd28b46
|
1
submodules/atkinson-hyperlegible-next
Submodule
1
submodules/atkinson-hyperlegible-next
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 7925f50f649b3813257faf2f4c0b381011f434f1
|
1
submodules/atkinson-hyperlegible-next-mono
Submodule
1
submodules/atkinson-hyperlegible-next-mono
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 154d50362016cc3e873eb21d242cd0772384c8f9
|
Loading…
x
Reference in New Issue
Block a user