From f395616902c4fe90b176a1ef830ce08e1077885a Mon Sep 17 00:00:00 2001 From: Khirman1 <85698758+Khirman1@users.noreply.github.com> Date: Thu, 25 Jan 2024 00:00:00 -0600 Subject: [PATCH] Update platform.rs (#391) made it so bottles actually works directly, instead of having to manually go through all of the games after the fact --- src/platforms/bottles/platform.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/bottles/platform.rs b/src/platforms/bottles/platform.rs index f4d21fc..7d660da 100644 --- a/src/platforms/bottles/platform.rs +++ b/src/platforms/bottles/platform.rs @@ -49,7 +49,7 @@ impl From for ShortcutOwned { fn from(app: BottlesApp) -> Self { // let launch_parameter = format!( - "run --command=bottles-cli com.usebottles.bottles run -b \"{}\" -p \"{}\"", + "run --command=bottles-cli com.usebottles.bottles run --args-replace -b \"{}\" -p \"{}\"", app.bottle, app.name ); Shortcut::new("0", &app.name, "flatpak", "", "", "", &launch_parameter).to_owned()