Compare commits
2 commits
main
...
completion
Author | SHA1 | Date | |
---|---|---|---|
8195f975be | |||
9bb7d51331 |
2 changed files with 33 additions and 14 deletions
|
@ -15,6 +15,15 @@ shopt -s histappend
|
||||||
[[ -f $HOME/.bash_colors ]] && source "$HOME/.bash_colors"
|
[[ -f $HOME/.bash_colors ]] && source "$HOME/.bash_colors"
|
||||||
[[ -f $HOME/.bash_functions ]] && source "$HOME/.bash_functions"
|
[[ -f $HOME/.bash_functions ]] && source "$HOME/.bash_functions"
|
||||||
|
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
while read -r completion ; do source "$completion" ; done < <(find $HOME/.bash_completion/ -maxdepth 1 -not -type d)
|
||||||
|
|
||||||
# Save working dir on every prompt.
|
# Save working dir on every prompt.
|
||||||
export PROMPT_COMMAND='pwd > $HOME/.cwd'
|
export PROMPT_COMMAND='pwd > $HOME/.cwd'
|
||||||
export PS1="${Yellow}\d \A ${Off}${Green}\u@\h: ${Off}\w ${Red}\$(parse_branch git)${BRed}\$(parse_branch fossil)${Off}\n-$ "
|
export PS1="${Yellow}\d \A ${Off}${Green}\u@\h: ${Off}\w ${Red}\$(parse_branch git)${BRed}\$(parse_branch fossil)${Off}\n-$ "
|
||||||
|
|
|
@ -1,21 +1,31 @@
|
||||||
sort=-time
|
sort=-time
|
||||||
layer=overlay
|
default-timeout=0
|
||||||
background-color=#2e3440C4
|
|
||||||
border-size=2
|
|
||||||
border-color=#88c0d0
|
|
||||||
border-radius=15
|
|
||||||
icons=1
|
|
||||||
max-icon-size=164
|
|
||||||
default-timeout=5000
|
|
||||||
ignore-timeout=0
|
ignore-timeout=0
|
||||||
|
|
||||||
|
height=200
|
||||||
|
width=400
|
||||||
padding=10
|
padding=10
|
||||||
|
|
||||||
[urgency=low]
|
icons=1
|
||||||
border-color=#cccccc
|
max-icon-size=128
|
||||||
|
|
||||||
[urgency=normal]
|
border-size=3
|
||||||
border-color=#d08770
|
layer=overlay
|
||||||
|
border-radius=10
|
||||||
|
|
||||||
|
# colors
|
||||||
|
|
||||||
|
background-color=#eff1f5E0
|
||||||
|
text-color=#4c4f69
|
||||||
|
border-color=#fe640b
|
||||||
|
progress-color=over #ccd0da
|
||||||
|
|
||||||
[urgency=high]
|
[urgency=high]
|
||||||
border-color=#bf616a
|
border-color=#fe040b
|
||||||
default-timeout=0
|
background-color=#ffe1e5
|
||||||
|
border-size=5
|
||||||
|
|
||||||
|
[urgency=critical]
|
||||||
|
border-color=#fe040b
|
||||||
|
background-color=#ffe1e5
|
||||||
|
border-size=5
|
||||||
|
|
Loading…
Reference in a new issue