Replies: 10 comments 5 replies
-
I guess it is related to |
Beta Was this translation helpful? Give feedback.
-
I have hardly any config in my bashrc. I use it for the prompt ('font' theme for git printouts) But I realize there is a lot going on in the background with OMB. One moment, please. |
Beta Was this translation helpful? Give feedback.
-
.blerc (I removed everything that was commented out. bleopt input_encoding=UTF-8
bleopt pager=less
bleopt editor=vi
bleopt vbell_default_message=' Wuff, -- Wuff!! '
bleopt vbell_duration=2000
bleopt vbell_align=right
bleopt edit_abell=1
bleopt edit_vbell=
bleopt history_lazyload=1
bleopt indent_offset=4
bleopt indent_tabs=1
bleopt edit_line_type=graphical
bleopt info_display=top
#bleopt prompt_ps1_final=
bleopt prompt_ps1_transient=trim
bleopt prompt_rps1='\w'
bleopt prompt_rps1_final=
bleopt prompt_rps1_transient=''
#function ble/prompt/backslash:custom/memoryTime {
# ble/prompt/unit/add-hash '$SECONDS'
# ble/prompt/process-prompt-string "💾 $(free -h | grep Mem | awk '{printf $3 " / " $2}')\r⏰ \t"
#}
#bleopt prompt_status_line=" 🐧 $(uname -o) $(uname -r) $(uname -m)\r📟$(dmesg | grep 'Machine model' | awk -F': ' '{print $2}')\r\q{custom/memoryTime}"
#bleopt prompt_status_align=$'justify=\r'
#bleopt exec_elapsed_mark=$' \\e[94m[ ↪️ [%s 📈 %s%%]\e[m'
#bleopt exec_elapsed_enabled='usr+sys>=10'
#bleopt exec_errexit_mark=$' \e[91m[⚡️RC ➡️ %d]\e[m'
#bleopt prompt_ruler=$'\e[94m-'
bleopt prompt_eol_mark=$'\e[94m[ble: EOF]\e[m'
bleopt emoji_width=2
bleopt emoji_version=13.1
bleopt emoji_opts=ri
bleopt grapheme_cluster=extended
bleopt canvas_winch_action=redraw-here
bleopt decode_error_char_vbell=1
bleopt decode_error_cseq_vbell=1
bleopt decode_error_kseq_vbell=1
function blerc/emacs-load-hook {
return 0
}
blehook/eval-after-load keymap_emacs blerc/emacs-load-hook
function blerc/vim-load-hook {
((_ble_bash>=40300)) && builtin bind 'set keyseq-timeout 1'
}
blehook/eval-after-load keymap_vi blerc/vim-load-hook |
Beta Was this translation helpful? Give feedback.
-
.bashrc (removed everything that was commented out) # Add this lines at the top of .bashrc:
[[ $- == *i* ]] && source "$HOME/.local/share/blesh/ble.sh" --noattach
# Enable the subsequent settings only in interactive sessions
case $- in
*i*) ;;
*) return;;
esac
# Path to your oh-my-bash installation.
export OSH='/var/home/james/.oh-my-bash'
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-bash is loaded.
OSH_THEME="font"
# Uncomment the following line to change how often to auto-update (in days).
export UPDATE_OSH_DAYS=13
# Which completions would you like to load? (completions can be found in ~/.oh-my-bash/completions/*)
# Custom completions may be added to ~/.oh-my-bash/custom/completions/
# Example format: completions=(ssh git bundler gem pip pip3)
# Add wisely, as too many completions slow down shell startup.
completions=(
defaults
git
ssh
)
# Which aliases would you like to load? (aliases can be found in ~/.oh-my-bash/aliases/*)
# Custom aliases may be added to ~/.oh-my-bash/custom/aliases/
# Example format: aliases=(vagrant composer git-avh)
# Add wisely, as too many aliases slow down shell startup.
aliases=(
general
)
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-bash/plugins/*)
# Custom plugins may be added to ~/.oh-my-bash/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
bashmarks
git
zoxide
)
source "$OSH"/oh-my-bash.sh
# Add this line at the end of .bashrc:
[[ ${BLE_VERSION-} ]] && ble-attach
[ -f ~/.fzf.bash ] && source ~/.fzf.bash |
Beta Was this translation helpful? Give feedback.
-
.bash_profile file. # .bash_profile -*- mode: sh -*-
# Load login settings and environment variables
if [[ -f ~/.profile ]]; then
source ~/.profile
fi
# Load interactive settings
if [[ -f ~/.bashrc ]]; then
source ~/.bashrc
fi |
Beta Was this translation helpful? Give feedback.
-
.profile file. if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
. "$HOME/.cargo/env"
eval "$(zoxide init bash)"
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
ANSIBLE_HOME=~/.ansible |
Beta Was this translation helpful? Give feedback.
-
I comment out everything but: .bashrc export OSH='/var/home/james/.oh-my-bash' and everything in my .profile except the PATH statements. I'm confused about those characters '@@ -16,22 +16,22 @@' and '@@ -5,7 +5,7 @@'? Those are GitHub artifacts? I do not receive the strange printouts when I manually run |
Beta Was this translation helpful? Give feedback.
-
No it did not give me the printouts, and did not cause the cursor to hang. However, it does hang after I run the upgrade manually. |
Beta Was this translation helpful? Give feedback.
-
So, I think your suspicions were correct, it has something to do with one of those packages. I will enable them one at a time and check to see when it occurs. |
Beta Was this translation helpful? Give feedback.
-
Even when I |
Beta Was this translation helpful? Give feedback.
-
More error messages while updating Oh-My-Bash.
04:07:27 james@Dell-7740 ~ → bash: ble/_ble_util_openat_fdlistay#push: No such file or directory
bash: ble/_ble_highlight_layer_listay#insert-at: No such file or directory
bash: ble/_ble_util_openat_fdlistay#push: No such file or directory
When using
upgrade_oh_my_bash
after that there is no error message.Beta Was this translation helpful? Give feedback.
All reactions