-
-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #596 from tpCodeX/master
Add new theme: powerline-wizard
- Loading branch information
Showing
6 changed files
with
83 additions
and
4 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 🧙 Powerline-Wizard 🔮 | ||
|
||
### Powerline-Wizard is a modified version of Powerline-Icon theme for Oh My Bash 🧑💻 | ||
|
||
## 📸 Screenshots | ||
![Screenshot](./powerline-wizard-dark.png?raw=true) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#! bash oh-my-bash.module | ||
|
||
source "$OSH/themes/powerline-icon/powerline-icon.base.sh" | ||
|
||
PROMPT_CHAR=${POWERLINE_PROMPT_CHAR:=""} | ||
POWERLINE_LEFT_SEPARATOR=${POWERLINE_LEFT_SEPARATOR:=""} | ||
|
||
USER_INFO_SSH_CHAR=${POWERLINE_USER_INFO_SSH_CHAR:=" "} | ||
USER_INFO_THEME_PROMPT_COLOR=0 | ||
USER_INFO_THEME_PROMPT_SECONDARY_COLOR="-" | ||
USER_INFO_THEME_PROMPT_COLOR_SUDO=202 | ||
|
||
PYTHON_VENV_CHAR=${POWERLINE_PYTHON_VENV_CHAR:="❲🐍❳ "} | ||
CONDA_PYTHON_VENV_CHAR=${POWERLINE_CONDA_PYTHON_VENV_CHAR:="❲c❳ "} | ||
PYTHON_VENV_THEME_PROMPT_COLOR=35 | ||
|
||
SCM_NONE_CHAR="" | ||
SCM_GIT_CHAR=${POWERLINE_SCM_GIT_CHAR:=" "} | ||
SCM_THEME_PROMPT_CLEAN="" | ||
SCM_THEME_PROMPT_DIRTY="" | ||
SCM_THEME_PROMPT_CLEAN_COLOR=237 | ||
SCM_THEME_PROMPT_DIRTY_COLOR=142 | ||
SCM_THEME_PROMPT_STAGED_COLOR=237 | ||
SCM_THEME_PROMPT_UNSTAGED_COLOR=92 | ||
SCM_THEME_PROMPT_COLOR=${SCM_THEME_PROMPT_CLEAN_COLOR} | ||
|
||
RVM_THEME_PROMPT_PREFIX="" | ||
RVM_THEME_PROMPT_SUFFIX="" | ||
RBENV_THEME_PROMPT_PREFIX="" | ||
RBENV_THEME_PROMPT_SUFFIX="" | ||
RUBY_THEME_PROMPT_COLOR=161 | ||
RUBY_CHAR=${POWERLINE_RUBY_CHAR:="❲r❳ "} | ||
|
||
CWD_THEME_PROMPT_COLOR=236 | ||
|
||
LAST_STATUS_THEME_PROMPT_COLOR=52 | ||
LAST_STATUS_THEME_PROMPT_COLOR_SUCCESS=238 | ||
|
||
CLOCK_THEME_PROMPT_COLOR=240 | ||
|
||
BATTERY_AC_CHAR=${BATTERY_AC_CHAR:="⚡"} | ||
BATTERY_STATUS_THEME_PROMPT_GOOD_COLOR=70 | ||
BATTERY_STATUS_THEME_PROMPT_LOW_COLOR=208 | ||
BATTERY_STATUS_THEME_PROMPT_CRITICAL_COLOR=160 | ||
|
||
THEME_CLOCK_FORMAT=${THEME_CLOCK_FORMAT:="%H:%M:%S"} | ||
|
||
IN_VIM_THEME_PROMPT_COLOR=245 | ||
IN_VIM_THEME_PROMPT_TEXT="vim" | ||
|
||
POWERLINE_PROMPT=${POWERLINE_PROMPT:="user_info scm python_venv ruby cwd"} | ||
|
||
OMB_THEME_POWERLINE_ICON_USER='🧙' | ||
OMB_THEME_POWERLINE_ICON_HOME='🔮' | ||
OMB_THEME_POWERLINE_ICON_EXIT_FAILURE='🔥' | ||
OMB_THEME_POWERLINE_ICON_EXIT_SUCCESS='🌀' | ||
|
||
function _omb_theme_PROMPT_COMMAND { __powerline_prompt_command "$@"; } | ||
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND |