mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-17 17:37:11 +00:00
Memory: Added support for AIX
This commit is contained in:
7
neofetch
7
neofetch
@@ -1218,6 +1218,13 @@ get_memory() {
|
|||||||
mem_used="$(sysinfo -mem | awk -F '\\/|)' '{print $2; exit}')"
|
mem_used="$(sysinfo -mem | awk -F '\\/|)' '{print $2; exit}')"
|
||||||
mem_used="$((${mem_used/max} / 1024 / 1024))"
|
mem_used="$((${mem_used/max} / 1024 / 1024))"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"AIX")
|
||||||
|
mem_stat=($(svmon -G -O unit=MB))
|
||||||
|
mem_total="${mem_stat[11]/.*}"
|
||||||
|
mem_free="${mem_stat[16]/.*}"
|
||||||
|
mem_used="$((mem_total - mem_free))"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
memory="${mem_used}MB / ${mem_total}MB"
|
memory="${mem_used}MB / ${mem_total}MB"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user