https://www.nerdfonts.com/font-downloads
https://starship.rs/guide/#%F0%9F%9A%80-installation
Add this to ~/.config/fish/config.fish
function starship_transient_prompt_func
starship module character
end
starship init fish | source
enable_transience
Clone this repository into .config
git clone https://github.com/Anti-Shulk/Anti-Shulk-Starship-Theme.git ~/.config/Anti-Shulk-Starship-Theme
Copy the theme file into the .config directory
cp ~/.config/Anti-Shulk-Starship-Theme/starship.toml ~/.config/starship.toml
Install Winget
$progressPreference = 'silentlyContinue'
Write-Information "Downloading WinGet and its dependencies..."
Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile Microsoft.VCLibs.x64.14.00.Desktop.appx
Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.7.3/Microsoft.UI.Xaml.2.7.x64.appx -OutFile Microsoft.UI.Xaml.2.7.x64.appx
Add-AppxPackage Microsoft.VCLibs.x64.14.00.Desktop.appx
Add-AppxPackage Microsoft.UI.Xaml.2.7.x64.appx
Add-AppxPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Install Starship
winget install Starship.Starship
Create $PROFILE (if it does not already exist)
New-Item -Path $PROFILE -Type File -Force
Open Profile with notepad
notepad $PROFILE
Add this to $PROFILE and save
function Invoke-Starship-TransientFunction {
&starship module character
}
Invoke-Expression (&starship init powershell)
Enable-TransientPrompt
Enable powershell script execution in Administator Powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine
Install Git if it is not already installed
winget instal Git.Git
Clone this repository into AppData Local folder
git clone https://github.com/Anti-Shulk/Anti-Shulk-Starship-Theme.git $env:LOCALAPPDATA/Anti-Shulk-Starship-Theme
Create a .config directory (if it does not alreayd exist)
New-Item -ItemType Directory -Force ~/.config
Copy the theme file into the .config directory
cp $env:LOCALAPPDATA/Anti-Shulk-Starship-Theme/starship.toml ~/.config