mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 21:14:03 -08:00
39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
[Setup]
|
|
AppName=Oh my Posh
|
|
AppVersion=<VERSION>
|
|
DefaultDirName={autopf}\oh-my-posh
|
|
DefaultGroupName=Oh my Posh
|
|
PrivilegesRequired=lowest
|
|
AppPublisher=Jan De Dobbeleer
|
|
AppPublisherURL=https://ohmyposh.dev
|
|
AppSupportURL=https://github.com/JanDeDobbeleer/oh-my-posh/issues
|
|
LicenseFile="bin\COPYING.txt"
|
|
OutputBaseFilename=install
|
|
|
|
[Files]
|
|
Source: "bin\posh-windows-amd64.exe"; DestDir: "{app}\bin"; DestName: "oh-my-posh.exe"; Flags: 64bit
|
|
Source: "bin\posh-windows-386.exe"; DestDir: "{app}\bin"; DestName: "oh-my-posh.exe"; Flags: 32bit
|
|
Source: "bin\posh-linux-amd64"; DestDir: "{app}\bin"; DestName: "oh-my-posh-wsl"; Flags: 64bit
|
|
Source: "bin\themes\*"; DestDir: "{app}\themes"
|
|
|
|
[Registry]
|
|
Root: "HKCU"; Subkey: "Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}\bin"; Check: NeedsAddPathHKCU(ExpandConstant('{app}\bin'))
|
|
Root: "HKCU"; Subkey: "Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}\themes"; Check: NeedsAddPathHKCU(ExpandConstant('{app}\themes'))
|
|
|
|
[Code]
|
|
function NeedsAddPathHKCU(Param: string): boolean;
|
|
var
|
|
OrigPath: string;
|
|
begin
|
|
if not RegQueryStringValue(HKEY_CURRENT_USER,
|
|
'Environment',
|
|
'Path', OrigPath)
|
|
then begin
|
|
Result := True;
|
|
exit;
|
|
end;
|
|
// look for the path with leading and trailing semicolon
|
|
// Pos() returns 0 if not found
|
|
Result := Pos(';' + Param + ';', ';' + OrigPath + ';') = 0;
|
|
end;
|