/installer/shortcuts.ini

https://code.google.com/p/camelbox/ · INI · 77 lines · 49 code · 5 blank · 23 comment · 0 complexity · 9c55784addd62d9ba8789a483f2879aa MD5 · raw file

  1. ; === example section ===
  2. ; [examplelink0]
  3. ; ; the path to the shortcut file; assumes $SMPROGRAMS is in front of it
  4. ; shortcut = "Camelbox\program.lnk"
  5. ; ; path to the original file
  6. ; target = "C:\path\to\original\file.exe"
  7. ; ; command line parameters
  8. ; params = "-a -r -g -s here"
  9. ; ; assmes $WINDIR is in front
  10. ; iconfile = "system32\shell32.dll"
  11. ; ; index number of the icon in that file; use iconview to figure this out
  12. ; iconidx = ""
  13. ; ; start options:
  14. ; ; SW_SHOWNORMAL, SW_SHOWMAXIMIZED, SW_SHOWMINIMIZED, or an empty string
  15. ; startopts = ""
  16. ; ; keboard shortcuts; see NSIS section 4.9.3.4 for usage instructions
  17. ; magickeys = ""
  18. ; ; description, what goes into the 'Comment' field of the shortcut; will be
  19. ; ; seen when mouse hovers over icon
  20. ; description = "This is my favorite shortcut"
  21. ; for copying;
  22. [link0]
  23. shortcut = ""
  24. target = ""
  25. params = ""
  26. iconfile = ""
  27. iconidx = ""
  28. startopts = ""
  29. magickeys = ""
  30. description = ""
  31. ; you must number the sections in sequence starting from the number '1', as
  32. ; that's what's enumerated over in the nsh script;
  33. [1]
  34. directory = "Camelbox"
  35. link = "CPAN Shell.lnk"
  36. target = "C:\camelbox\bin\cpan.bat"
  37. params = ""
  38. iconfile = "C:\camelbox\bin\perl.exe"
  39. iconidx = 0
  40. startopts = SW_SHOWNORMAL
  41. magickeys =
  42. description = "The CPAN shell"
  43. [2]
  44. directory = "Camelbox"
  45. link = "zsh.lnk"
  46. target = "C:\camelbox\bin\sh.exe"
  47. params = ""
  48. iconfile = "C:\camelbox\bin\sh.exe"
  49. iconidx = 0
  50. startopts = SW_SHOWNORMAL
  51. magickeys =
  52. description = "The zsh shell compiled for Windows"
  53. [3]
  54. directory = "Camelbox\Developer Tools"
  55. link = "Glade-3.lnk"
  56. target = "C:\camelbox\bin\glade-3.exe"
  57. params = ""
  58. iconfile = "C:\camelbox\bin\glade-3.exe"
  59. iconidx = 0
  60. startopts = SW_SHOWNORMAL
  61. magickeys =
  62. description = "The Glade XML GUI Generation Toolkit"
  63. [4]
  64. directory = "Camelbox\Database Tools"
  65. link = "MySQL Client.lnk"
  66. target = "C:\camelbox\bin\mysql.exe"
  67. params = ""
  68. iconfile = "C:\windows\system32\shell32.dll"
  69. iconidx = 164
  70. startopts = SW_SHOWNORMAL
  71. magickeys =
  72. description = "MySQL Command Line Client"