2021-09-06 18:21:51 +00:00
|
|
|
echo "$(date) SZ_SKIP_DEFAULT_SHELL='$SZ_SKIP_DEFAULT_SHELL'; snippet/zsh" >> /tmp/default_shell
|
|
|
|
|
2020-12-02 04:31:42 +00:00
|
|
|
## Place the following line at the top of your .zshrc to make powershell your default shell.
|
2021-02-22 19:58:49 +00:00
|
|
|
## __P=".local/share/powershell/Scripts/shell-loading-snippets/$(basename $SHELL)"; find ~/$__P -exec true \; && . ~/$__P
|
2021-09-06 18:21:51 +00:00
|
|
|
function PowerShellLauncher() {
|
|
|
|
|
|
|
|
export SZ_POWERSHELL_LAUNCER_CALLED=1
|
2020-12-02 04:31:42 +00:00
|
|
|
|
2021-09-06 18:21:51 +00:00
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
|
|
|
if [[ -x ~/.dotnet/tools/pwsh && "1" != "$(which pwsh > /dev/null && echo 1)" ]]; then
|
|
|
|
PWSH='~/.dotnet/tools/pwsh'
|
|
|
|
alias pwsh="$PWSH "
|
2020-12-02 04:31:42 +00:00
|
|
|
|
2021-09-06 18:21:51 +00:00
|
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
|
|
fi
|
2021-02-22 19:58:49 +00:00
|
|
|
|
2021-09-06 18:21:51 +00:00
|
|
|
echo "$(date) SZ_SKIP_DEFAULT_SHELL='$SZ_SKIP_DEFAULT_SHELL'; pwsh: $(which pwsh); Setup-ScriptEnv: $(ls ~/.local/share/powershell/Scripts/Setup-ScriptEnv.ps1) " >> /tmp/default_shell
|
|
|
|
if [[ "$SZ_SKIP_DEFAULT_SHELL" != "1" ]]; then
|
|
|
|
export SZ_SKIP_DEFAULT_SHELL=1
|
|
|
|
if [[ "1" == "$(which pwsh > /dev/null && echo 1)" && -f ~/.local/share/powershell/Scripts/Setup-ScriptEnv.ps1 ]]; then
|
|
|
|
echo 'Starting PowerShell SZcripts...'
|
|
|
|
echo "pwsh" >> /tmp/default_shell
|
|
|
|
pwsh
|
|
|
|
if [[ ! -f /tmp/keep_shell_after_pwsh ]]; then
|
|
|
|
exit
|
|
|
|
fi
|
2021-07-16 13:30:11 +00:00
|
|
|
fi
|
2021-02-22 19:58:49 +00:00
|
|
|
fi
|
2021-09-06 18:21:51 +00:00
|
|
|
echo "continue" >> /tmp/default_shell
|
|
|
|
export SZ_SKIP_DEFAULT_SHELL=1
|
|
|
|
|
|
|
|
}
|
2020-12-02 04:31:42 +00:00
|
|
|
|
2021-09-06 18:21:51 +00:00
|
|
|
[[ "$SZ_POWERSHELL_LAUNCER_CALLED" != "1" ]] && PowerShellLauncher
|