Set DPI for steam on HiDPI devices

This commit is contained in:
Manuel Thalmann 2023-11-13 12:35:20 +01:00
parent cbd77f6bee
commit 8b87cab142
2 changed files with 7 additions and 0 deletions

View file

@ -11,4 +11,6 @@ NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
INSTALL_FONTS=0 \
. "../../../scripts/Common/Config/UserProfile/install.sh";
. "../../../scripts/Common/Config/Steam/hidpi.sh";
popd > /dev/null;

View file

@ -0,0 +1,5 @@
#!/bin/bash
{
echo '#!/bin/bash';
echo 'export STEAM_FORCE_DESKTOPUI_SCALING=2.0';
} | sudo tee /etc/profile.d/steam.sh > /dev/null;