-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
theme/powerline-naked: harmonize
powerline.base.bash
files
- Loading branch information
1 parent
8cffede
commit e2cc16f
Showing
1 changed file
with
17 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,39 @@ | ||
. "$BASH_IT/themes/powerline/powerline.base.bash" | ||
# shellcheck shell=bash | ||
# shellcheck disable=SC2034 # Expected behavior for themes. | ||
# shellcheck source-path=SCRIPTDIR/../powerline | ||
source "${BASH_IT?}/themes/powerline/powerline.base.bash" | ||
|
||
function __powerline_left_segment { | ||
local OLD_IFS="${IFS}" | ||
IFS="|" | ||
local params=($1) | ||
IFS="${OLD_IFS}" | ||
local separator="" | ||
function __powerline_left_segment() { | ||
local -a params | ||
IFS="|" read -ra params <<< "${1}" | ||
local pad_before_segment=" " | ||
|
||
if [[ "${SEGMENTS_AT_LEFT}" -eq 0 ]]; then | ||
if [[ "${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT}" -ne 0 ]]; then | ||
#for seperator character | ||
if [[ "${SEGMENTS_AT_LEFT?}" -eq 0 ]]; then | ||
if [[ "${POWERLINE_COMPACT_BEFORE_FIRST_SEGMENT:-}" -ne 0 ]]; then | ||
pad_before_segment="" | ||
fi | ||
else | ||
if [[ "${POWERLINE_COMPACT_AFTER_SEPARATOR}" -ne 0 ]]; then | ||
if [[ "${POWERLINE_COMPACT_AFTER_SEPARATOR:-}" -ne 0 ]]; then | ||
pad_before_segment="" | ||
fi | ||
# Since the previous segment wasn't the last segment, add padding, if needed | ||
# | ||
if [[ "${POWERLINE_COMPACT_BEFORE_SEPARATOR}" -eq 0 ]]; then | ||
if [[ "${POWERLINE_COMPACT_BEFORE_SEPARATOR:-0}" -eq 0 ]]; then | ||
LEFT_PROMPT+=" " | ||
fi | ||
LEFT_PROMPT+="${POWERLINE_LEFT_SEPARATOR}" | ||
fi | ||
|
||
LEFT_PROMPT+="$(set_color ${params[1]} -)${pad_before_segment}${params[0]}${normal}" | ||
LAST_SEGMENT_COLOR=${params[1]} | ||
#change here to cahnge fg color | ||
LEFT_PROMPT+="$(set_color "${params[1]:-}" -)${pad_before_segment}${params[0]}${normal}" | ||
#seperator char color == current bg | ||
LAST_SEGMENT_COLOR="${params[1]:-}" | ||
((SEGMENTS_AT_LEFT += 1)) | ||
|
||
_save-and-reload-history "${HISTORY_AUTOSAVE:-0}" | ||
} | ||
|
||
function __powerline_left_last_segment_padding { | ||
LEFT_PROMPT+="$(set_color ${LAST_SEGMENT_COLOR} -) ${normal}" | ||
LEFT_PROMPT+="$(set_color "${LAST_SEGMENT_COLOR?}" -) ${normal?}" | ||
} |