25 lines
827 B
Bash
25 lines
827 B
Bash
# Settings aliases
|
|
alias about-pc='wsl-open ms-settings:\\about'
|
|
alias update-settings='wsl-open ms-settings://windowsupdate'
|
|
alias antivirus-settings='wsl-open windowsdefender://'
|
|
alias recovery-options='wsl-open ms-settings://recovery'
|
|
alias signin-options='wsl-open ms-settings://signinoptions'
|
|
alias personal-options='wsl-open ms-settings://personalization-background'
|
|
alias bluetooth-options='wsl-open ms-settings://bluetooth'
|
|
alias printer-options='wsl-open ms-settings://printers'
|
|
alias display-options='wsl-open ms-settings://display'
|
|
|
|
# Convienence aliases, OS-specific
|
|
alias cmd='cmd.exe'
|
|
alias notepad='notepad.exe'
|
|
alias regedit='regedit.exe'
|
|
alias powershell='powershell.exe'
|
|
alias pwsh='powershell.exe'
|
|
|
|
# functions
|
|
function win_env() {
|
|
|
|
echo $(cmd.exe /C echo %${1}% 2>/dev/null | sed -e 's|\r||;s|\\|/|g')
|
|
|
|
}
|