mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
themes: Add new theme "edsonarios"
show complete work route, show simple git changes and actual time, write commands in new simple line, and show output error.
This commit is contained in:
committed by
Koichi Murase
parent
24bd7e71ad
commit
d9b107beff
@@ -83,6 +83,10 @@
|
|||||||
|
|
||||||
[](duru/duru-dark.png)
|
[](duru/duru-dark.png)
|
||||||
|
|
||||||
|
## `edsonarios`
|
||||||
|
|
||||||
|
[](edsonarios/edsonarios-dark.png)
|
||||||
|
|
||||||
## `emperor`
|
## `emperor`
|
||||||
|
|
||||||
[](emperor/emperor-dark.png)
|
[](emperor/emperor-dark.png)
|
||||||
|
BIN
themes/edsonarios/edsonarios-dark.png
Normal file
BIN
themes/edsonarios/edsonarios-dark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
35
themes/edsonarios/edsonarios.theme.sh
Normal file
35
themes/edsonarios/edsonarios.theme.sh
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
#! bash oh-my-bash.module
|
||||||
|
|
||||||
|
# If you want the same background color that the screenshot, modify the
|
||||||
|
# background option in your terminal with the code: #333333
|
||||||
|
|
||||||
|
# For unstaged(*) and staged(+) values next to branch name in __git_ps1
|
||||||
|
GIT_PS1_SHOWDIRTYSTATE="enabled"
|
||||||
|
OMB_PROMPT_VIRTUALENV_FORMAT=' [%s]'
|
||||||
|
OMB_PROMPT_CONDAENV_FORMAT=' [%s]'
|
||||||
|
|
||||||
|
OMB_THEME_EDSONARIOS_STATUS_BAD="${_omb_prompt_bold_brown}❯_${_omb_prompt_normal} "
|
||||||
|
OMB_THEME_EDSONARIOS_STATUS_OK="${_omb_prompt_bold_green}❯_${_omb_prompt_normal} "
|
||||||
|
|
||||||
|
function _omb_theme_PROMPT_COMMAND {
|
||||||
|
if (($? == 0)); then
|
||||||
|
local ret_status=${OMB_THEME_EDSONARIOS_STATUS_OK-}
|
||||||
|
else
|
||||||
|
local ret_status=${OMB_THEME_EDSONARIOS_STATUS_BAD-}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If the current directory is the same as HOME, will just show "~/". If not,
|
||||||
|
# show the complete route unlike \w.
|
||||||
|
if [[ $PWD == "$HOME" ]]; then
|
||||||
|
local directory='\W/'
|
||||||
|
else
|
||||||
|
local directory="$PWD/"
|
||||||
|
fi
|
||||||
|
|
||||||
|
local python_venv
|
||||||
|
_omb_prompt_get_python_venv
|
||||||
|
|
||||||
|
PS1="\n⚡ \t $_omb_prompt_bold_teal${directory}$_omb_prompt_bold_purple$python_venv$_omb_prompt_bold_green$(__git_ps1 " (%s)") \n${ret_status}"
|
||||||
|
}
|
||||||
|
|
||||||
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|
Reference in New Issue
Block a user