gpu_driver: Add linux support.

This commit is contained in:
Dylan Araps 2017-08-29 09:22:56 +10:00
parent ae2f270261
commit 7e94fec6fc
3 changed files with 11 additions and 1 deletions

View File

@ -26,6 +26,7 @@ print_info() {
info "GPU" gpu
info "Memory" memory
# info "GPU Driver" gpu_driver # Linux only
# info "CPU Usage" cpu_usage
# info "Disk" disk
# info "Battery" battery
@ -35,7 +36,7 @@ print_info() {
# info "Public IP" public_ip
# info "Users" users
# info "Install Date" install_date
# info "Locale" locale # This only works on glibc systems.
# info "Locale" locale # This only works on glibc systems.
info line_break
info cols

View File

@ -21,6 +21,7 @@ print_info() {
info "Terminal Font" term_font
info "CPU" cpu
info "GPU" gpu
info "GPU Driver" gpu_driver
info "Memory" memory
info "CPU Usage" cpu_usage

View File

@ -2258,6 +2258,14 @@ get_locale() {
locale="$sys_locale"
}
get_gpu_driver() {
case "$os" in
"Linux")
gpu_driver="$(lspci -nnk | awk -F ': ' '/VGA/{nr[NR+2]}; NR in nr {print $2}')"
;;
esac
}
get_cols() {
if [[ "$color_blocks" == "on" ]]; then
# Convert the width to space chars.