This file contains hidden or 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
| # Generated by Powerlevel10k configuration wizard on 2025-01-19 at 02:01 EET. | |
| # Based on romkatv/powerlevel10k/config/p10k-lean.zsh, checksum 37983. | |
| # Wizard options: nerdfont-v3 + powerline, small icons, unicode, lean, 24h time, | |
| # 2 lines, disconnected, left frame, light-ornaments, compact, few icons, fluent, | |
| # transient_prompt, instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with lean prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |
This file contains hidden or 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
| # - - - - - - - - - - - - - - - - - - - - | |
| # Instant Prompt | |
| # - - - - - - - - - - - - - - - - - - - - | |
| if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
| source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
| fi | |
| # - - - - - - - - - - - - - - - - - - - - | |
| # ZSH Settings | |
| # - - - - - - - - - - - - - - - - - - - - |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # This script imports/updates CLO sub-trees | |
| # | |
| read -p "Please input the tag/branch name: " branch | |
| read -p "What do you want to do (import (i) or update (u)): " option | |
| case $option in | |
| import | i) |