2024-09-20 00:07:32 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
|
|
|
|
function installSW
|
|
|
|
yayinst steam
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function configureSW -V dir
|
|
|
|
. "$dir/../../../Common/Scripts/config.fish"
|
|
|
|
|
2024-09-22 15:50:05 +00:00
|
|
|
if isOSEnabled hidpi
|
2024-09-20 00:07:32 +00:00
|
|
|
begin
|
|
|
|
printf %s\n \
|
|
|
|
"#!/bin/bash" \
|
|
|
|
"export STEAM_FORCE_DESKTOPUI_SCALING=2.0"
|
2024-10-06 19:25:34 +00:00
|
|
|
end | sudo tee /etc/profile.d/steam.sh >/dev/null
|
2024-09-20 00:07:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|