-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom_bash.sh
77 lines (58 loc) · 2.06 KB
/
custom_bash.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
###############################################
# Custom bash changes
# To add, source at the end of your .bashrc
# source {{ PYRENTO_HOME }}/custom_bash.sh
###############################################
# Remedial bash: -z means "string is null"
# :+x If DW_CONFIG is defined, replace with "x"
if [ -z ${DW_CONFIG:+x} ]; then
# Take a few educated guesses
if [ -d $HOME/dw_config ]; then
export DW_CONFIG=$HOME/dw_config
elif [ -d $HOME/code/dw_config ]; then
export DW_CONFIG=$HOME/code/dw_config
fi
fi
###########################################################################
# Defines - should one day auto-generate/update
###########################################################################
EDITOR='emacs -nw'
PAGER=less
source ${DW_CONFIG}/colors_bash.sh
###########################################################################
# Prompt
###########################################################################
SHORT_PROMPT="\[${txtcyn}\][\$?]\[${txtgrn}\]:\u@\h:\[${txtcyn}\]\W\[${txtgrn}\]\$\[${txtclr}\] "
LONG_PROMPT="${txtpur}###########################################################################${txtclr}\nUser=${txtblu}\u${txtclr} Host=${txtblu}\h${txtclr}\nLast Cmd [${txtpur}\t${txtclr}] Exited $? \nIn ${txtcyn}\w${txtclr} History ${txtcyn}\!${txtclr}\n${txtpur}###########################################################################${txtclr}\n$ "
PS1=${SHORT_PROMPT}
#PS1="[\$?]:\u@\h:\W\$ "
function short_prompt
{
export PS1=${SHORT_PROMPT}
}
function long_prompt
{
export PS1=${LONG_PROMPT}
}
function termname() {
echo -ne "\033]0;"$1"\007"
}
function resource
{
source ~/.bashrc
}
function preview_url()
{
curl -s -D - $1 | grep -i location: | sed -e 's/location: //Ig';
}
function tmout {
tmux split-window -b -p 80 "$* | less";
}
###########################################################################
alias lp=long_prompt
alias sp=short_prompt
if ! [[ -z "$TMUX_TOOLS_ENABLE" ]] ; then
source ${DW_CONFIG}/tmux_tools.sh
tmux_history_load
fi
source ${DW_CONFIG}/bash_aliases