forked from Karmenzind/dotfiles-and-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shrc.ext
302 lines (242 loc) · 9.23 KB
/
shrc.ext
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# vim:set et ft=sh sw=4 ts=4:
alias py=python
alias py3=python3
alias py2=python2
alias ipy=ipython
alias ipy3=ipython3
alias ipy2=ipython2
alias bpy=bpython
alias bpy3=bpython3
alias bpy2=bpython2
alias vi=vim
alias nv=nvim
alias mux=tmuxinator
alias toboard='xclip -selection clipboard'
alias xy=proxychains4
# /* others apps */
export EDITOR=vim
export VISUAL=$EDITOR
export SVN_EDITOR=$EDITOR
for _tmp_terminal in alacritty xfce4-terminal urxvt; do
export TERMINAL=`command -v $_tmp_terminal`
[[ -n $TERMINAL ]] && unset _tmp_terminal && break
done
for _tmp_browser in chromium chrome firefox elinks; do
export BROWSER=`command -v $_tmp_browser`
[[ -n $BROWSER ]] && unset _tmp_browser && break
done
export CATALINA_HOME=/usr/share/tomcat8 # tomcat
# /* bat */
alias bat='bat --theme="GitHub" --style="auto"'
#######################################################################
# appearance #
#######################################################################
export COLORTERM='truecolor'
export GREP_COLOR="1;32"
alias neofetch_local='neofetch --w3m ~/Pictures/LOCKSCREENS/kieslowski4-resize.png' # neofetch
# alias grep='grep --color=auto'
alias diff='diff --color=auto'
alias sdcv='sdcv --color ' # stardict
# /* prompt */
# If not running interactively, don't do anything
# PS1='
# \u \t \033[31;1m>\033[0m \w
# \$ '
# colorful man
# man() {
# LESS_TERMCAP_md=$'\e[01;31m' \
# LESS_TERMCAP_me=$'\e[0m' \
# LESS_TERMCAP_se=$'\e[0m' \
# LESS_TERMCAP_so=$'\e[01;44;33m' \
# LESS_TERMCAP_ue=$'\e[0m' \
# LESS_TERMCAP_us=$'\e[01;32m' \
# command man "$@"
# }
# /* less */
# export LESS=-R
# export LESS_TERMCAP_mb=$'\E[1;31m' # begin bold
# export LESS_TERMCAP_md=$'\E[1;36m' # begin blink
# export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
# export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
# export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
# export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
# export LESS_TERMCAP_ue=$'\E[0m' # reset underline
#######################################################################
# custom funcs #
#######################################################################
# ex - archive extractor
# usage: ex <file>
ex() {
if [ -f "$1" ]; then
case $1 in
*.tar.bz2) tar xjf "$1" ;;
*.tar.gz) tar xzf "$1" ;;
*.bz2) bunzip2 "$1" ;;
*.rar) unrar x "$1" ;;
*.gz) gunzip "$1" ;;
*.tar) tar xf "$1" ;;
*.tbz2) tar xjf "$1" ;;
*.tgz) tar xzf "$1" ;;
*.zip) unzip "$1" ;;
*.Z) uncompress "$1" ;;
*.7z) 7z x "$1" ;;
*) echo "'$1' cannot be extracted via ex()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
#######################################################################
# fzf #
#######################################################################
# for fzf
export FZF_DEFAULT_OPTS="--preview '[ -f {} ] && file {} && head -30 {} '
--height 50% --reverse --border
--preview-window=down:50%"
# use fd
# export FZF_DEFAULT_COMMAND="fd --type f --hidden --follow --ignore-file ~/.config/search_ignore"
# use the silver searcher
if command -v 'ag'; then
export FZF_DEFAULT_COMMAND="ag --hidden --nocolor -U -g ''"
else
echo "The silver search needs to be installed"
fi
# - The first argument to the function ($1) is the base path to start traversal
# - See the source code (completion.{bash,zsh}) for the details.
# _fzf_compgen_path() {
# fd --hidden --follow --exclude ".git" . "$1"
# }
# Use fd to generate the list for directory completion
# _fzf_compgen_dir() {
# fd --type d --hidden --follow --exclude ".git" . "$1"
# }
# fkill - kill process with fzf
fkill() {
local pid
pid=$(ps -ef | sed 1d | fzf -m | awk '{print $2}')
if [ "x$pid" != "x" ]; then
echo "$pid" | xargs kill -${1:-9}
fi
}
#######################################################################
# tmux #
#######################################################################
# [ -z "$TMUX" ] && export TERM="xterm-256color"
# attach a default session (create it if not existed)
# and detach other connections bound to it
stmux() {
if [[ -z "$TMUX" ]]; then
local default_tmux_sname=k
tmuxinator $default_tmux_sname
# tmux new -s $default_tmux_sname -d
tmux choose-tree -t $default_tmux_sname -Zs
tmux attach-session -t $default_tmux_sname -d
else
tmux choose-tree -Zs
fi
}
#######################################################################
# for aur #
#######################################################################
export aurpref='https://aur.archlinux.org'
aurdl() {
local url=${aurpref}/${1}.git
echo "url: $url"
git clone $url ~/Downloads/aurdl/$1
}
#######################################################################
# for python #
#######################################################################
export VIRTUAL_ENV_DISABLE_PROMPT=
#######################################################################
# for git #
#######################################################################
alias yolo='git commit -m "$(curl -s https://whatthecommit.com/index.txt)"'
#######################################################################
# for alacritty #
#######################################################################
_init_alarcrity() {
command -v alacritty >/dev/null || return
local _shell=$(ps -ef | grep "^\w\+ \+$$" | sed 's/.* \+//')
[[ $_shell == *zsh* ]] && _shell=zsh
case $_shell in
bash)
local bash_complete_file=~/.config/alacritty/alacritty-completions.bash
if [[ ! -e $bash_complete_file ]]; then
local _url_for_bash=https://raw.githubusercontent.com/jwilm/alacritty/master/alacritty-completions.bash
wget $_url_for_bash -o $bash_complete_file
fi
source $bash_complete_file
;;
esac
}
_init_alarcrity
#######################################################################
# for zsh plugins #
#######################################################################
# pj
export PROJECT_PATHS=(~/Workspace ~/Localworks)
# virtualenv wrapper
export WORKON_HOME=~/.venvs
#######################################################################
# pyenv #
#######################################################################
if [[ -d "$HOME/.pyenv" ]]; then
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
# eval "$(pyenv init -)"
# eval "$(pyenv virtualenv-init -)"
fi
export PYTHON_CONFIGURE_OPTS="--enable-shared"
#######################################################################
# ruby #
#######################################################################
if [[ -d "$HOME/.gem" ]]; then
_MY_RUBY_BIN=$(find $HOME/.gem -regex '.*ruby/[^/]+/bin' | head -n 1 | tr -d '\r')
[[ -d $_MY_RUBY_BIN ]] && export PATH=$PATH:$_MY_RUBY_BIN
fi
#######################################################################
# go #
#######################################################################
if command -V go && [[ -z $GOPATH ]]; then
GOPATH=$(go env GOPATH | tr -d '\r')
fi
[[ -n $GOPATH ]] && export PATH=$PATH:$GOPATH/bin
#######################################################################
# svn #
#######################################################################
svna() {
while read _f ; do
[[ -n "$_f" ]] && svn add $_f
done <<< `svn status | grep '?' | awk '{print $2}'`
while read _f ; do
[[ -n "$_f" ]] && svn delete $_f
done <<< `svn st | grep '^!' | awk '{print $2}'`
}
#######################################################################
# axel #
#######################################################################
keep_axel() {
[[ -z "$1" ]] && echo 'Invalid parameter.' && return
while true; do axel "$1" -o "$2" && break; date; sleep 1; done
}
#######################################################################
# task #
#######################################################################
rt() {
while true; do
clear
date
echo "--------------------------------------------"
task
sleep 7
done
}
#######################################################################
# others #
#######################################################################
# draw a cow at start
command -v chuck_cow >/dev/null && chuck_cow
# load local config
[[ -e ~/.config/shrc.ext.local ]] && source ~/.config/shrc.ext.local
alias weather='curl -4 http://wttr.in'