28 lines
775 B
PowerShell
28 lines
775 B
PowerShell
# Scripts in this $PROFILE folder are added to the PATH
|
|
$env:PATH += ";$(Split-Path -Parent $MyInvocation.MyCommand.Path)"
|
|
|
|
function prompt {
|
|
$prompt = "> "
|
|
If ((New-Object Security.Principal.WindowsPrincipal $(
|
|
[Security.Principal.WindowsIdentity]::GetCurrent()
|
|
)).IsInRole(
|
|
[Security.Principal.WindowsBuiltinRole]::Administrator
|
|
)
|
|
) {
|
|
$prompt = "Admin$prompt"
|
|
}
|
|
$prompt
|
|
}
|
|
|
|
function Install-Scoop {
|
|
# You can read the script before executing it here:
|
|
# https://raw.githubusercontent.com/scoopinstaller/install/master/install.ps1
|
|
Invoke-RestMethod get.scoop.sh | Invoke-Expression
|
|
# (un)install docs: https://github.com/ScoopInstaller/Install
|
|
}
|
|
|
|
function Install-BleachBit {
|
|
scoop bucket add extras
|
|
scoop install bleachbit
|
|
}
|