-
Notifications
You must be signed in to change notification settings - Fork 2
/
Modern UI.nsi
34 lines (24 loc) · 955 Bytes
/
Modern UI.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
; Scaffolding by https://github.com/idleberg/NSIS-Sublime-Text
; Includes ---------------------------------
!include MUI2.nsh
; Settings ---------------------------------
Name "installer_name"
OutFile "installer_name.exe"
RequestExecutionLevel user
InstallDir "$PROGRAMFILES\installer_name"
; Pages ------------------------------------
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
; Languages --------------------------------
!insertmacro MUI_LANGUAGE "English"
; Sections ---------------------------------
Section "section_name" section_index
# your code here
SectionEnd
; Descriptions -----------------------------
LangString DESC_section_index ${LANG_English} "section_description"
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${section_index} $(DESC_section_index)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
; Functions --------------------------------