pfetch: code style changes

This commit is contained in:
Crestwave 2019-09-30 15:32:54 +08:00
parent a9af270b96
commit 02a9bd84af

11
pfetch
View File

@ -468,8 +468,8 @@ get_pkgs() {
;; ;;
SunOS) SunOS)
has pkginfo && pkginfo -i has pkginfo && pkginfo -i
has pkg && pkg list has pkg && pkg list
;; ;;
esac | wc -l esac | wc -l
` `
@ -631,8 +631,11 @@ get_memory() {
SunOS) SunOS)
hw_pagesize=$(pagesize) hw_pagesize=$(pagesize)
while read -r _ p; do while read -r key val; do
: "${pages_total:+"${pages_free="$p"}"}" "${pages_total="$p"}" case $key in
*total) pages_total=$val ;;
*free) pages_free=$val ;;
esac
done <<-EOF done <<-EOF
$(kstat -p unix:0:system_pages:pagestotal \ $(kstat -p unix:0:system_pages:pagestotal \
unix:0:system_pages:pagesfree) unix:0:system_pages:pagesfree)