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

Add long distro name for Manjaro Linux #1879

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,12 @@ get_distro() {
. /etc/armbian-release
distro="Armbian $DISTRIBUTION_CODENAME (${VERSION:-})"

elif [[ -f /etc/manjaro-release ]]; then
case $distro_shorthand in
on|tiny) distro="Manjaro Linux" ;;
*) distro="Manjaro Linux $(lsb_release -src)"
esac

elif [[ -f /etc/siduction-version ]]; then
case $distro_shorthand in
on|tiny) distro=Siduction ;;
Expand Down