13 lines
217 B
Bash
13 lines
217 B
Bash
# shellcheck shell=bash
|
|
|
|
AMD=/dev/dri/by-path/pci-0000:06:00.0-card
|
|
NVIDIA=/dev/dri/by-path/pci-0000:01:00.0-card
|
|
|
|
if [[ -e "$AMD" ]]; then
|
|
card=$AMD
|
|
else
|
|
card=$NVIDIA
|
|
fi
|
|
|
|
ln -sf "$card" "$HOME"/.config/hypr/card
|