PortValhalla/scripts/Windows/Software/osu!/Manage.ps1

14 lines
447 B
PowerShell
Raw Normal View History

2023-06-07 18:02:31 +00:00
. "$PSScriptRoot/../../Scripts/Context.ps1";
2023-06-08 00:28:33 +00:00
$null = New-Module {
$path = "$env:LOCALAPPDATA/osu!";
$softwareName = "osu!";
$genericConfigName = "osu!.User.cfg";
2023-06-30 10:19:54 +00:00
function Backup-Osu([Context] $context) {
2023-06-08 00:28:33 +00:00
$archive = $context.SoftwareArchive($softwareName);
$context.Backup($path, $archive, @("-i@`"$PSScriptRoot/include.txt`""));
& 7z rn "$archive" "osu!.$env:USERNAME.cfg" $genericConfigName;
}
2023-06-07 18:02:31 +00:00
}