summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/themes/gnzh.zsh-theme
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/themes/gnzh.zsh-theme
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/themes/gnzh.zsh-theme')
-rw-r--r--zsh/oh-my-zsh/themes/gnzh.zsh-theme43
1 files changed, 0 insertions, 43 deletions
diff --git a/zsh/oh-my-zsh/themes/gnzh.zsh-theme b/zsh/oh-my-zsh/themes/gnzh.zsh-theme
deleted file mode 100644
index 1e6c4e9..0000000
--- a/zsh/oh-my-zsh/themes/gnzh.zsh-theme
+++ /dev/null
@@ -1,43 +0,0 @@
-# Based on bira theme
-
-setopt prompt_subst
-
-() {
-
-local PR_USER PR_USER_OP PR_PROMPT PR_HOST
-
-# Check the UID
-if [[ $UID -ne 0 ]]; then # normal user
- PR_USER='%F{green}%n%f'
- PR_USER_OP='%F{green}%#%f'
- PR_PROMPT='%f➤ %f'
-else # root
- PR_USER='%F{red}%n%f'
- PR_USER_OP='%F{red}%#%f'
- PR_PROMPT='%F{red}➤ %f'
-fi
-
-# Check if we are on SSH or not
-if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then
- PR_HOST='%F{red}%M%f' # SSH
-else
- PR_HOST='%F{green}%M%f' # no SSH
-fi
-
-
-local return_code="%(?..%F{red}%? ↵%f)"
-
-local user_host="${PR_USER}%F{cyan}@${PR_HOST}"
-local current_dir="%B%F{blue}%~%f%b"
-local git_branch='$(git_prompt_info)'
-
-PROMPT="╭─${user_host} ${current_dir} \$(ruby_prompt_info) ${git_branch}
-╰─$PR_PROMPT "
-RPROMPT="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %f"
-ZSH_THEME_RUBY_PROMPT_PREFIX="%F{red}‹"
-ZSH_THEME_RUBY_PROMPT_SUFFIX="›%f"
-
-}