mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Heroic gog support (#72)
* Only use icons if they exsists * Initial gog support from heroic * Find gog linux games * Update readme to include gog games * rename appName to app_name
This commit is contained in:
@@ -106,9 +106,9 @@ fn fix_shortcut_icons(
|
||||
|
||||
for shortcut in shortcuts {
|
||||
#[cfg(not(target_family = "unix"))]
|
||||
let replace_icon = shortcut.icon.trim().eq("");
|
||||
let replace_icon = shortcut.icon.trim().eq("") || !Path::new(shortcut.icon.trim()).exists();
|
||||
#[cfg(target_family = "unix")]
|
||||
let replace_icon = shortcut.icon.trim().eq("") || shortcut.icon.eq(&shortcut.exe);
|
||||
let replace_icon = shortcut.icon.trim().eq("") || !Path::new(shortcut.icon.trim()).exists() ||shortcut.icon.eq(&shortcut.exe);
|
||||
if replace_icon {
|
||||
let app_id = steam_shortcuts_util::app_id_generator::calculate_app_id(
|
||||
&shortcut.exe,
|
||||
|
||||
Reference in New Issue
Block a user