Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Add Uos #1991

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Add Uos #1991

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ image_source="auto"
# Solus, Source_Mage, Sparky, Star, SteamOS, SunOS, openSUSE_Leap, t2,
# openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, Trisquel,
# Ubuntu-Cinnamon, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE,
# Ubuntu-Studio, Ubuntu, Univention, Venom, Void, VNux, LangitKetujuh, semc,
# Ubuntu-Studio, Ubuntu, Univention, Uos, Venom, Void, VNux, LangitKetujuh, semc,
# Obarun, windows10, Windows7, Xubuntu, Zorin, and IRIX have ascii logos.
# NOTE: Arch, Ubuntu, Redhat, Fedora and Dragonfly have 'old' logo variants.
# Use '{distro name}_old' to use the old logos.
Expand Down Expand Up @@ -5166,7 +5166,7 @@ ASCII:
Solus, Source_Mage, Sparky, Star, SteamOS, SunOS, openSUSE_Leap,
t2, openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, Trisquel,
Ubuntu-Cinnamon, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE,
Ubuntu-Studio, Ubuntu, Univention, Venom, Void, VNux, LangitKetujuh, semc,
Ubuntu-Studio, Ubuntu, Uos, Univention, Venom, Void, VNux, LangitKetujuh, semc,
Obarun, windows10, Windows7, Xubuntu, Zorin, and IRIX have ascii logos.

NOTE: Arch, Ubuntu, Redhat, Fedora and Dragonfly have 'old' logo variants.
Expand Down Expand Up @@ -11054,6 +11054,33 @@ oss${c2}yNMMMNyMMh${c1}sssssssssssssshmmmh${c1}ssssssso
EOF
;;

"Uos"*)
set_colors 1 7 3
read -rd '' ascii_data >>'EOF'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also the syntax here is wrong, it's supposed to be << 'EOF'

Just realized the shellcheck warnings

Suggested change
read -rd '' ascii_data >>'EOF'
read -rd '' ascii_data << 'EOF'

image

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also fixed the leading space, you can check this commit: hykilpikonna/hyfetch@e12efe5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Looks nice!)

image

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for fixing the mistakes I made

I just installed hyfetch and found it to be really good, fantastic!

${c1}
.......
..............
......................
.............................
uuuuuu uuuuuu ooooooooooo ssssssssss
u::::u u::::u oo:::::::::::oo ss::::::::::s
u::::u u::::u o:::::::::::::::oss:::::::::::::s
u::::u u::::u o:::::ooooo:::::os::::::ssss:::::s
u::::u u::::u o::::o o::::o s:::::s ssssss
u::::u u::::u o::::o o::::o s::::::s
u::::u u::::u o::::o o::::o s::::::s
u:::::uuuu:::::u o::::o o::::ossssss s:::::s
u:::::::::::::::uuo:::::ooooo:::::os:::::ssss::::::s
u:::::::::::::::uo:::::::::::::::os::::::::::::::s
uu::::::::uu:::u oo:::::::::::oo s:::::::::::ss
uuuuuuuu uuuu ooooooooooo sssssssssss
.............................
.....................
.............
......
EOF
;;

"Univention"*)
set_colors 1 7
read -rd '' ascii_data <<'EOF'
Expand Down