Last active
December 19, 2021 10:39
-
-
Save justinyoo/f5fa2a0e894a185828b76d64170de24e to your computer and use it in GitHub Desktop.
Oh My Azure Cloud Shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh -c "$(curl -fsSL \ | |
https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Plugin: zsh-completions | |
git clone https://github.com/zsh-users/zsh-completions.git \ | |
~/.oh-my-zsh/custom/plugins/zsh-completions | |
# Plugin: zsh-syntax-highlighting | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \ | |
~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting | |
# Plugin: zsh-autosuggestions | |
git clone https://github.com/zsh-users/zsh-autosuggestions.git \ | |
~/.oh-my-zsh/custom/plugins/zsh-autosuggestions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Theme: Spaceship | |
git clone https://github.com/spaceship-prompt/spaceship-prompt.git \ | |
~/.oh-my-zsh/custom/themes/spaceship-prompt --depth=1 | |
ln -s ~/.oh-my-zsh/custom/themes/spaceship-prompt/spaceship.zsh-theme \ | |
~/.oh-my-zsh/custom/themes/spaceship.zsh-theme | |
# Theme: Powerlevel10k | |
git clone https://github.com/romkatv/powerlevel10k.git \ | |
~/.oh-my-zsh/custom/themes/powerlevel10k --depth=1 | |
ln -s ~/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel10k.zsh-theme \ | |
~/.oh-my-zsh/custom/themes/powerlevel10k.zsh-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p10k configure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash -c zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download the GitHub repository | |
git clone https://github.com/justinyoo/oh-my-azure-cloud-shell.git ~/oh-my-azure-cloud-shell | |
# Install oh-my-zsh with the theme of "Spaceship" | |
~/oh-my-azure-cloud-shell/install.sh -t spaceship | |
# Install oh-my-zsh with the theme of "Powerlevel10k" | |
~/oh-my-azure-cloud-shell/install.sh -t p10k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turn on the clock feature | |
~/oh-my-azure-cloud-shell/switch-p10k-clock.sh -c | |
# Turn off the clock feature | |
~/oh-my-azure-cloud-shell/switch-p10k-clock.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Module oh-my-posh -Scope CurrentUser -Repository PSGallery -Force | |
Import-Module oh-my-posh -Scope Local -Force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Theme: Spaceship | |
Set-PoshPrompt -Theme spaceship | |
# Theme: Powerlevel10k - Rainbow | |
Set-PoshPrompt -Theme powerlevel10k_rainbow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Module Terminal-Icons -Scope CurrentUser -Repository PSGallery -Force | |
Import-Module Terminal-Icons -Scope Local -Force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!(Test-Path -Path $PROFILE)) { | |
New-Item -ItemType File -Path $PROFILE -Force | |
} | |
# Theme: Spaceship | |
Write-Output " | |
Set-PoshPrompt -Theme spaceship | |
Import-Module Terminal-Icons -Scope Local -Force | |
" | Out-File -FilePath $PROFILE -Encoding UTF8 -Append -Force | |
# Theme: Powerlevel10k - Rainbow | |
Write-Output " | |
Set-PoshPrompt -Theme powerlevel10k_rainbow | |
Import-Module Terminal-Icons -Scope Local -Force | |
" | Out-File -FilePath $PROFILE -Encoding UTF8 -Append -Force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. $PROFILE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download the GitHub repository | |
git clone https://github.com/justinyoo/oh-my-azure-cloud-shell.git ` | |
~/oh-my-azure-cloud-shell | |
# Install oh-my-zsh with the theme of "Spaceship" | |
~/oh-my-azure-cloud-shell/install.ps1 -Theme spaceship | |
# Install oh-my-zsh with the theme of "Powerlevel10k - Rainbow" | |
~/oh-my-azure-cloud-shell/install.ps1 -Theme p10k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turn on the clock feature | |
~/oh-my-azure-cloud-shell/switch-p10k-clock.ps1 -WithClock | |
# Turn off the clock feature | |
~/oh-my-azure-cloud-shell/switch-p10k-clock.ps1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment