-
Notifications
You must be signed in to change notification settings - Fork 1
/
50_misc.sh
37 lines (29 loc) · 993 Bytes
/
50_misc.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
# Case-insensitive globbing (used in pathname expansion)
shopt -s nocaseglob
# Check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# colorful grep
alias grep='grep --color=auto'
# Prevent less from clearing the screen while still showing colors.
export LESS=-XR
# Set the terminal's title bar.
function titlebar() {
echo -n $'\e]0;'"$*"$'\a'
}
# SSH auto-completion based on entries in known_hosts.
if [[ -e ~/.ssh/known_hosts ]]; then
complete -o default -W "$(cat ~/.ssh/known_hosts | sed 's/[, ].*//' | sort | uniq | grep -v '[0-9]')" ssh scp sftp
fi
# Disable ansible cows }:]
export ANSIBLE_NOCOWS=1
# geek weather for terminal
function weather()
{
local defaultcity=${LOCATION_LOCALITY-Apolda}
local request="wttr.in/${1-$defaultcity}?${2-m1F}"
[ "$COLUMNS" -lt 125 ] && request+='n'
curl -H "Accept-Language: ${LANG%_*}" --compressed "$request"
}
# allow **/ globbing
shopt -s globstar