add steam deck install constructions

This commit is contained in:
user 2023-06-01 08:47:25 +02:00
parent f4e46ab411
commit 38593c89f9
3 changed files with 19 additions and 2 deletions

View file

@ -1248,7 +1248,7 @@ function abfrage() {
[[ -z "${nvidia}" ]] && nvidia=n
if lspci | grep -e VGA -e 3D -m 1 | grep AMD; then
read -p "Have you a AMD Graphic-Card or a Steam Deck? : [amd/steam/N] " amd
read -p "Have you a AMD Graphic-Card or a Steam Deck? : [amd/deck/N] " amd
fi
[[ -z "${amd}" ]] && amd=n
@ -1624,10 +1624,16 @@ if [ "${amd}" == "amd" ]; then
arch-chroot ${mountpoint} pacman -Sy lib32-amdvlk amdvlk opencl-mesa lib32-opencl-mesa --needed --noconfirm
# https://wiki.archlinux.org/title/Vulkan#Selecting_Vulkan_driver
echo "VK_ICD_FILENAMES=\"/usr/share/vulkan/icd.d/amd_icd64.json\"" >> ${mountpoint}/etc/environment
elif [ "${amd}" == "steam" ]; then
elif [ "${amd}" == "deck" ]; then
arch-chroot ${mountpoint} pacman -Sy lib32-amdvlk amdvlk opencl-mesa lib32-opencl-mesa --needed --noconfirm
# https://wiki.archlinux.org/title/Vulkan#Selecting_Vulkan_driver
echo "AMD_VULKAN_ICD=RADV" >> ${mountpoint}/etc/environment
cp -v /opt/${repo}/steam-deck/xorg.conf.d/* ${mountpoint}/etc/X11/xorg.conf.d/
# An open-source Linux userspace driver for Valves Steam Deck hardware.
# https://open-sd.gitlab.io/opensd-docs/opensd-docs/latest/users_manual/run>
arch-chroot ${mountpoint} su "${user}" -c "aurinstaller opensd-git"
arch-chroot ${mountpoint} su "${user}" -c "systemctl --user enable opensd"
fi
if [ "${multicard}" == "y" ]; then

View file

@ -0,0 +1,4 @@
Section "Monitor"
Identifier "eDP"
Option "Rotate" "right"
EndSection

View file

@ -0,0 +1,7 @@
Section "InputClass"
Identifier "Coordinate Transformation Matrix"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
MatchDriver "libinput"
Option "CalibrationMatrix" "0 1 0 -1 0 1 0 0 1"
EndSection