Added possibility to set wezterm title

This commit is contained in:
2025-07-16 15:43:27 +02:00
parent 88bd68d93e
commit 029310a027

View File

@@ -6,6 +6,17 @@ oh-my-posh init pwsh --config "$HOME/.theme.omp.json" | Invoke-Expression
# setup fnm
fnm env --use-on-cd --shell powershell | Out-String | Invoke-Expression
wezterm cli set-tab-title "unnamed tab"
function Set-Title {
param(
[string]$title
)
wezterm cli set-tab-title $title
}
Set-Alias -Name title -Value Set-Title
# Functions
function cdli {
Set-Location "C:\repos\litium"