add no gui for heroic launcher (#154)

This commit is contained in:
lublak
2022-05-24 13:24:51 +02:00
committed by GitHub
parent 176dea4c46
commit bf4eba9f7e
+1 -1
View File
@@ -33,7 +33,7 @@ impl From<HeroicGame> for ShortcutOwned {
let (exe, parameter) = match game.install_mode.unwrap() { let (exe, parameter) = match game.install_mode.unwrap() {
InstallationMode::FlatPak => ( InstallationMode::FlatPak => (
"flatpak", "flatpak",
format!("run com.heroicgameslauncher.hgl {}", launch_parameter), format!("run com.heroicgameslauncher.hgl {} --no-gui", launch_parameter),
), ),
InstallationMode::UserBin => ("heroic", launch_parameter), InstallationMode::UserBin => ("heroic", launch_parameter),
}; };