Delete humble-app directory

This commit is contained in:
Roy 2024-01-25 17:49:18 -08:00 committed by GitHub
parent 4fee1f8bdd
commit 9e5bb59a58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 29 deletions

View File

@ -1,6 +0,0 @@
[Desktop Entry]
Name=Humble App (Login)
Comment=Target for handling Humble App logins. You should not run this manually.
Exec=/home/deck/.local/share/Steam/steamapps/compatdata/$appid/pfx/handle-humble-scheme %u
Type=Application
MimeType=x-scheme-handler/humble;

View File

@ -1,11 +0,0 @@
#!/usr/bin/env sh
set -e
export STEAM_COMPAT_CLIENT_INSTALL_PATH=~/.local/share/Steam
export STEAM_COMPAT_DATA_PATH=~/.steam/steam/steamapps/compatdata/$appid
FIXED_SCHEME="$(echo "$1" | sed "s/?/\//")"
echo $FIXED_SCHEME > /home/deck/.local/share/Steam/steamapps/compatdata/$appid/pfx/drive_c/.auth
~/.steam/steam/steamapps/common/Proton\ -\ Experimental/proton run ~/.local/share/Steam/steamapps/compatdata/$appid/pfx/start-humble.cmd

View File

@ -1,12 +0,0 @@
@echo off
cd /d "C:\Program Files\Humble App\"
set /p Url=<"C:\.auth"
if defined Url (
start "" "Humble App.exe" "%Url%"
) else (
start "" "Humble App.exe" "%*"
)
exit