[WINDOWS] FIX SCRIPT
This commit is contained in:
parent
58e53520a2
commit
c082f526ca
1 changed files with 30 additions and 24 deletions
|
@ -1,28 +1,34 @@
|
|||
# Self-elevate the script if required
|
||||
if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) {
|
||||
# Install required packages with winget
|
||||
winget install alacritty gitui
|
||||
|
||||
# Install other packages with scoop because not available in winget
|
||||
try{
|
||||
Get-Command -Name scoop -ErrorAction Stop
|
||||
}
|
||||
catch{
|
||||
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
|
||||
}
|
||||
|
||||
scoop install neovim
|
||||
|
||||
# Install fonts
|
||||
scoop bucket add nerd-fonts
|
||||
scoop install FiraCode-NF FiraCode-NF-Mono FiraMono-NF FiraCode-Script FiraCode Delugia-Nerd-Font-Complete Delugia-Mono-Nerd-Font-Complete Cascadia-Code CascadiaCode-NF CascadiaCode-NF-Mono
|
||||
|
||||
$CommandLine = "-NoExit -File `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments
|
||||
Start-Process -FilePath PowerShell.exe -Verb Runas -ArgumentList $CommandLine
|
||||
Exit
|
||||
}
|
||||
|
||||
$appDatasToSymlink = 'gitui'
|
||||
Foreach ($item in $appDatasToSymlink) {
|
||||
$config_folder = "$env:USERPROFILE\.config\$item"
|
||||
$symlink_folder = "$env:APPDATA\$item"
|
||||
if (Test-Path $symlink_folder) {
|
||||
Remove-Item -Recurse $symlink_folder
|
||||
Start-Sleep -Seconds 10
|
||||
} else {
|
||||
try {
|
||||
$appDatasToSymlink = 'gitui'
|
||||
Foreach ($item in $appDatasToSymlink) {
|
||||
$config_folder = "$env:USERPROFILE\.config\$item"
|
||||
$symlink_folder = "$env:APPDATA\$item"
|
||||
New-Item -Force -Path $symlink_folder -ItemType SymbolicLink -Value $config_folder
|
||||
}
|
||||
Exit
|
||||
} catch {
|
||||
Start-Sleep -Seconds 10
|
||||
}
|
||||
New-Item -Path $symlink_folder -ItemType SymbolicLink -Value $config_folder
|
||||
}
|
||||
|
||||
# Install required packages with winget
|
||||
winget install alacritty gitui
|
||||
|
||||
# Install other packages with scoop because not available in winget
|
||||
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
|
||||
|
||||
scoop install neovim
|
||||
|
||||
# Install fonts
|
||||
scoop bucket add nerd-fonts
|
||||
scoop install FiraCode-NF FiraCode-NF-Mono FiraMono-NF FiraCode-Script FiraCode Delugia-Nerd-Font-Complete Delugia-Mono-Nerd-Font-Complete Cascadia-Code CascadiaCode-NF CascadiaCode-NF-Mono
|
||||
}
|
Loading…
Reference in a new issue