mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-31 20:56:06 +00:00
gpu_driver: Add linux support.
This commit is contained in:
8
neofetch
8
neofetch
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user