diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2020-08-05 08:18:49 +0300 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2020-08-05 08:18:49 +0300 |
| commit | 265732467ea8a8650f0f13643d7387ff10bd8613 (patch) | |
| tree | eecddfe3dce1cb3e68010532860b20361e96ba2f | |
| parent | a29c4c950a04a6d9b3ecc1361ce81dd7f2bcf10a (diff) | |
| parent | 8fa69a528ce9ec6537bfe5826c4ec1e434651b44 (diff) | |
| download | pfetch-265732467ea8a8650f0f13643d7387ff10bd8613.tar.gz | |
Merge branch 'master' of github.com:dylanaraps/pfetch into master
| -rw-r--r-- | Makefile | 2 | ||||
| -rwxr-xr-x | pfetch | 48 |
2 files changed, 49 insertions, 1 deletions
@@ -4,7 +4,7 @@ all: @echo RUN \'make install\' to install pfetch install: - @install -Dm 755 pfetch $(DESTDIR)$(PREFIX)/bin/pfetch + @install -Dm755 pfetch $(DESTDIR)$(PREFIX)/bin/pfetch uninstall: @rm -f $(DESTDIR)$(PREFIX)/bin/pfetch @@ -1116,6 +1116,22 @@ get_ascii() { EOF ;; + [Gg][Nn][Uu]*) + read_ascii 3 <<-EOF + ${c2} _-\`\`-, ,-\`\`-_ + ${c2} .' _-_| |_-_ '. + ${c2}./ /_._ _._\\ \\. + ${c2}: _/_._\`:'_._\\_ : + ${c2}\\:._/ ,\` \\ \\ \\_.:/ + ${c2} ,-';'.@) \\ @) \\ + ${c2} ,'/' ..- .\\,-.| + ${c2} /'/' \\(( \\\` ./ ) + ${c2} '/'' \\_,----' + ${c2} '/'' ,;/'' + ${c2} \`\`;' + EOF + ;; + [Gg]uix[Ss][Dd]*|[Gg]uix*) read_ascii 3 <<-EOF ${c3}|.__ __.| @@ -1165,6 +1181,17 @@ get_ascii() { EOF ;; + [Kk][Dd][Ee]*[Nn]eon*) + read_ascii 6 <<-EOF + ${c7} .${c6}__${c7}.${c6}__${c7}. + ${c6} / _${c7}.${c6}_ \\ + ${c6} / / \\ \\ + ${c7} . ${c6}| ${c7}O${c6} | ${c7}. + ${c6} \\ \\_${c7}.${c6}_/ / + ${c6} \\${c7}.${c6}__${c7}.${c6}__${c7}.${c6}/ + EOF + ;; + [Ll]inux*[Ll]ite*|[Ll]ite*) read_ascii 3 <<-EOF ${c3} /\\ @@ -1299,6 +1326,16 @@ get_ascii() { EOF ;; + [Oo]pen[Ss][Uu][Ss][Ee]*[Tt]umbleweed*) + read_ascii 2 <<-EOF + ${c2} _____ ______ + ${c2} / ____\\ / ____ \\ + ${c2}/ / \`/ / \\ \\ + ${c2}\\ \\____/ /,____/ / + ${c2} \\______/ \\_____/ + EOF + ;; + [Oo]pen[Ss][Uu][Ss][Ee]*|[Oo]pen*SUSE*|SUSE*|suse*) read_ascii 2 <<-EOF ${c2} _______ @@ -1359,6 +1396,17 @@ get_ascii() { EOF ;; + [Rr]aspbian*) + read_ascii 1 <<-EOF + ${c1} __ __ + ${c1} (_\\)(/_) + ${c2} (_(__)_) + ${c2}(_(_)(_)_) + ${c2} (_(__)_) + ${c2} (__) + EOF + ;; + [Ss]lackware*) read_ascii 4 <<-EOF ${c4} ________ |
