diff options
author | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-06-15 00:46:34 -0400 |
---|---|---|
committer | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-06-15 00:46:34 -0400 |
commit | 251942323e53913112bf807cedf54c98ddc5a2a4 (patch) | |
tree | 8971a973942031d8d312130d5db2a338dfb45a8b | |
parent | 8e3efec40fed65daa48bfd5290b552928e76d6f1 (diff) | |
download | PrismLauncher-251942323e53913112bf807cedf54c98ddc5a2a4.tar.gz PrismLauncher-251942323e53913112bf807cedf54c98ddc5a2a4.tar.bz2 PrismLauncher-251942323e53913112bf807cedf54c98ddc5a2a4.zip |
Deselect desktop shortcut by default
Follows the guidelines at https://docs.microsoft.com/en-us/windows/win32/uxguide/winenv-desktop
-rw-r--r-- | program_info/win_install.nsi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program_info/win_install.nsi.in b/program_info/win_install.nsi.in index 98a87880..1997d6b6 100644 --- a/program_info/win_install.nsi.in +++ b/program_info/win_install.nsi.in @@ -157,7 +157,7 @@ Section "Start Menu Shortcut" SM_SHORTCUTS SectionEnd -Section "Desktop Shortcut" DESKTOP_SHORTCUTS +Section /o "Desktop Shortcut" DESKTOP_SHORTCUTS CreateShortcut "$DESKTOP\@Launcher_CommonName@.lnk" "$INSTDIR\@Launcher_APP_BINARY_NAME@.exe" "" "$INSTDIR\@Launcher_APP_BINARY_NAME@.exe" 0 |