blob: 42ac5d85025c3fde632838d21afd8d19f1c91445 (
plain)
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
|
###############################################################################
#
# Bind commands - Auto completion --- {{{
#
###############################################################################
#bind 'set completion-ignore-case on'
#bind 'set show-all-if-ambiguous on'
###############################################################################
#
# Bind commands - Auto completion --- }}}
#
###############################################################################
###############################################################################
#
# History control --- {{{
#
###############################################################################
# append to the history file, don't overwrite it
#shopt -s histappend
###############################################################################
#
# History control --- }}}
#
###############################################################################
###############################################################################
#
# STARTUP MESSAGES --- {{{
#
###############################################################################
#prompt
clear
echo "Welcome to ${HOSTNAME}"
#neofetch
ip_show
echo
startup_diskUsage
echo
w
prompt_bash
###############################################################################
#
# STARTUP MESSAGES --- }}}
#
###############################################################################
|