diff options
| author | DGdev91 <iperpido91@gmail.com> | 2025-01-28 12:51:05 +0100 |
|---|---|---|
| committer | DGdev91 <iperpido91@gmail.com> | 2025-01-28 12:51:05 +0100 |
| commit | 09541fca5470d23bd393cfc0b52f254043eea8b1 (patch) | |
| tree | 59870230a7c26f2300dbbe6f4ae32829903bbd64 /assets/fgmod-remover.sh | |
| parent | 709062d93cec154abed768a0dde1122bb4d79a6a (diff) | |
| download | Decky-Framegen-09541fca5470d23bd393cfc0b52f254043eea8b1.tar.gz Decky-Framegen-09541fca5470d23bd393cfc0b52f254043eea8b1.zip | |
Modifed every reference to "/home/deck" to a generic home folder, should allow to run it on non-steamos linux distros
Diffstat (limited to 'assets/fgmod-remover.sh')
| -rw-r--r-- | assets/fgmod-remover.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/fgmod-remover.sh b/assets/fgmod-remover.sh index 32d4f71..1d12a18 100644 --- a/assets/fgmod-remover.sh +++ b/assets/fgmod-remover.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -# Remove /home/deck/fgmod directory if it exists -if [[ -d "/home/deck/fgmod" ]]; then - rm -rf "/home/deck/fgmod" +# Remove ~/fgmod directory if it exists +if [[ -d "$HOME/fgmod" ]]; then + rm -rf "$HOME/fgmod" fi # Remove specific files from ~/Downloads if they exist |
