diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2019-09-24 15:01:41 +0300 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2019-09-24 15:01:41 +0300 |
| commit | 9bc53fedde9af6773a15fd3693c6ca1039284aad (patch) | |
| tree | e755235c8a879a4bceefce9a9733a9f61089c98e | |
| parent | e5a9e736a3d66edc6ccb2166415b5baca9525e93 (diff) | |
| download | pfetch-9bc53fedde9af6773a15fd3693c6ca1039284aad.tar.gz | |
docs: update
| -rwxr-xr-x | pfetch | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,4 @@ #!/bin/sh -# shellcheck source=/dev/null # # pfetch - Simple POSIX sh fetch script. @@ -114,6 +113,9 @@ get_title() { get_distro() { case $os in Linux*|GNU*) + # Disable warning about shellcheck not being able + # to read '/etc/os-release'. This is fine. + # shellcheck source=/dev/null . /etc/os-release && distro=$PRETTY_NAME ;; esac |
