mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
13 lines
315 B
Bash
Executable File
13 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Install the lib32 NVIDIA driver matching the detected GPU generation (no-op if no NVIDIA).
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
if omarchy-hw-nvidia-gsp; then
|
|
omarchy-pkg-add lib32-nvidia-utils
|
|
elif omarchy-hw-nvidia-without-gsp; then
|
|
omarchy-pkg-add lib32-nvidia-580xx-utils
|
|
fi
|