-
Notifications
You must be signed in to change notification settings - Fork 18
/
.bashrc
executable file
·842 lines (753 loc) · 20.9 KB
/
.bashrc
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
# ~/.bashrc: executed by bash(1) for non-login shells.
# HISTORY
# append to the history file, don't overwrite it
shopt -s autocd checkhash checkwinsize cmdhist globstar histappend
# EXPORTS
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
# don't put duplicate lines or lines starting with space in the history.
HISTCONTROL=ignoreboth
HISTFILE=$HOME/.hist_bash
HISTFILESIZE=
HISTSIZE=
HISTTIMEFORMAT="%F %T "
# END HISTORY
# NAVIGATION
# \e[A arrow up
# \e[B arrow down
# \e[C arrow right
# \e[D arrow left
bind '"\e[A":history-search-backward' 2>/dev/null # suppress interactive shell warnings
bind '"\e[B":history-search-forward' 2>/dev/null
# \e[1;5A Ctrl + arrow up
# \e[1;5B Ctrl + arrow down
# \e[1;5C Ctrl + arrow right
# \e[1;5D Ctrl + arrow left
bind '"\e[1;5A":history-substring-search-forward' 2>/dev/null
bind '"\e[1;5B":history-substring-search-backward' 2>/dev/null
bind '"\e[1;5C":forward-word' 2>/dev/null
bind '"\e[1;5D":backward-word' 2>/dev/null
# \e[1;2A Shift + arrow up
# \e[1;2B Shift + arrow down
# \e[1;2C Shift + arrow right
# \e[1;2D Shift + arrow left
bind '"\e[1;2A":forward-search-history' 2>/dev/null # Ctrl+s
bind '"\e[1;2B":reverse-search-history' 2>/dev/null # Ctrl+r
bind '"\e[1;2C":end-of-line' 2>/dev/null
bind '"\e[1;2D":beginning-of-line' 2>/dev/null
# NAVIGATION END
# COLORS
RED=""
YELLOW=""
GREEN=""
BLUE=""
CYAN=""
PURPLE=""
LIGHT_RED=""
LIGHT_GREEN=""
WHITE=""
LIGHT_GRAY=""
NORMAL=""
# check if stdout is a terminal...
if test -t 1; then
# see if it supports colors...
force_color_prompt=yes
color_prompt=yes
export TERM="xterm-256color"
export CLICOLOR=1
export LS_COLORS=$LS_COLORS:"di=01;35"
RED="\[\033[0;31m\]"
YELLOW="\[\033[1;33m\]"
GREEN="\[\033[0;32m\]"
BLUE="\[\033[1;34m\]"
PURPLE="\[\033[0;35m\]"
CYAN="\[\033[0;36m\]"
LIGHT_RED="\[\033[1;31m\]"
LIGHT_GREEN="\[\033[1;32m\]"
WHITE="\[\033[1;37m\]"
LIGHT_GRAY="\[\033[0;37m\]"
NORMAL="\[\e[0m\]"
# enable color support of ls and also add handy aliases
bind 'set colored-completion-prefix on'
bind 'set colored-stats on'
alias ls='ls --color=auto'
alias less='less -R'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='grep -F --color=auto'
alias egrep='grep -E --color=auto'
fi
# ALIASES
export PERS_DIR='/data/work'
alias less="less --LONG-PROMPT --no-init --quit-at-eof --quit-if-one-screen --quit-on-intr"
export PAGER='less -SRXF'
alias arch='uname -m'
alias ll='ls -ahlF --time-style=long-iso --group-directories-first'
alias la='ls -A'
alias ..='cd ..'
alias home_pr='cd $PERS_DIR/home'
alias compress_jpeg="fd -e jpg -e jpeg --size +100k --exec jpeg-recompress --quality high --method ssim --accurate --min 70 {} {} \;"
alias compress_png="fd -e png --size +100k --exec optipng {} \;"
alias check_adb='adb devices -l'
alias frx='firefox'
alias qte='qutebrowser'
alias vb='vieb'
alias cz='chezmoi'
alias cza='chezmoi apply'
alias czaf='chezmoi apply --force'
alias czd='chezmoi diff'
alias czm='chezmoi merge'
alias czs='chezmoi status'
alias scz='sudo chezmoi -D / -S $HOME/.local/share/chezmoi/root -c /root/.config/chezmoi/config.toml'
alias scza='scz apply'
alias sczaf='scz apply --force'
alias sczd='scz diff'
alias sczm='scz merge'
alias sczs='scz status'
alias crlt='curl -w "@$HOME/.config/curl-time-format"'
# CUSTOM FUNCTIONS
command_exists () {
command -v "$1" > /dev/null 2>&1;
}
# SUDO
SUDO=''
if [[ $EUID -ne 0 ]] && command_exists sudo ; then
complete -cf sudo
SUDO='sudo'
fi
# END SUDO
# COMPLETIONS
# if command_exists jira
# then
# eval "$(jira --completion-script-bash)"
# fi
# END COMPLETIONS
project_folders="$PERS_DIR/projects"
prj () {
cd $project_folders
if [ ! -z $1 ]; then
cd $1
fi
}
_prj () {
local cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W "$(ls $project_folders)" -- $cur) )
}
complete -F _prj prj
backup_dir="$PERS_DIR/backup"
bcp () {
cd $backup_dir
if [ ! -z $1 ]; then
cd $1
fi
}
_backup () {
local cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W "$(ls $backup_dir)" -- $cur) )
}
complete -F _backup backup
## SWAP
soff () {
eval "$SUDO swapoff $(swapon --noheadings --show=NAME)"
}
son () {
eval "$SUDO swapon /swapfile"
}
## END SWAP
## ARCHIVES
extract () {
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) 7zr e $1 ;;
*) echo "'$1' cannot be extracted via extract()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
zipin () {
for f in $(ls -A);
do
if [ -f "$f" ]; then
case $f in
*.zip) echo "$f already zipped" ;;
*) zip -9 $f.zip $f && rm $f ;;
esac
fi;
done
}
## END ARCHIVES
file_replace() {
for file in $(find . -type f -name "$1*"); do
mv $file $(echo "$file" | sed "s/$1/$2/");
done
}
# convert jpg files to single pdf
con_jpg_pdf (){
convert *.jpg [email protected]
}
# convert png files to single pdf
con_png_pdf (){
convert *.png [email protected]
}
## X11 VS WAYLAND
disable_x11 (){
systemctl --user disable clipmenud.service
systemctl --user disable kbdd.service
systemctl --user disable dunst.service
}
enable_x11 (){
systemctl --user enable clipmenud.service
systemctl --user enable kbdd.service
systemctl --user enable dunst.service
}
## END X11 VS WAYLAND
## TOGGLE HDMI SOUND
hdmi_sound_on (){
pactl --server "unix:$XDG_RUNTIME_DIR/pulse/native" set-card-profile 0 output:hdmi-stereo+input:analog-stereo
}
hdmi_sound_off (){
pactl --server "unix:$XDG_RUNTIME_DIR/pulse/native" set-card-profile 0 output:analog-stereo+input:analog-stereo
}
return_root (){
xhost si:localuser:root
}
mkcd() {
folder=$@
mkdir -p $folder
cd $folder
}
# END CUSTOM FUNCTIONS
# IMPORT ADDITIONAL FILES
## CUSTOM FUNCS
if [ -f $HOME/.func.bash ]; then
. $HOME/.func.bash
fi
## CUSTOM ALIASES AND EXPORTS
if [ -f $HOME/.aliases.bash ]; then
. $HOME/.aliases.bash
fi
## USER SPECIFIC BINARIES
LOCAL_BIN=$HOME/.local/bin
if [ -d $LOCAL_BIN ]; then
export PATH=$PATH:$LOCAL_BIN
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
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
# END IMPORT
# PACKAGE MANAGERS
if command_exists pacman ; then
alias p="$SUDO pacman"
alias pql='pacman -Ql'
alias pqs='pacman -Qs'
alias pss='pacman -Ss'
alias psu='p -Syu'
alias pii='pacman -Sii'
alias psi='p -S --needed'
alias prs='p -Rs'
if command_exists yay ; then
alias yay='yay --aur --editmenu --builddir $PERS_DIR/bb'
alias psuy='yay -Syua'
alias pssy='yay -Ss'
alias psiy='yay -Sa'
alias piiy='yay -Sii'
fi
if command_exists paru ; then
alias paru='paru --aur --fm vifm --removemake --clonedir $PERS_DIR/bb'
alias psuy='paru -Syua'
alias pssy='paru -Ss'
alias psiy='paru -Sa'
alias piiy='paru -Sii'
fi
paclist() {
pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'
}
recovery-pacman() {
pacman "$@" \
--log /dev/null \
--noscriptlet \
--dbonly \
--force \
--nodeps \
--needed
}
fi
if command_exists apt ; then
alias a="$SUDO apt"
alias pql='dpkg-query -L'
alias pqs='apt list --installed'
alias pss='apt search'
alias psd='a update'
alias psy='a upgrade'
alias psl='apt list --upgradable'
alias psu='psd && sleep 2 && psl && sleep 2 && psy'
alias psi='a install'
alias prs='a remove'
alias aar="$SUDO add-apt-repository"
fi
if command_exists yum ; then
alias y="$SUDO yum"
alias psu='yum upgrade'
alias pss='yum search'
alias psi='yum install'
alias prs='yum remove'
fi
# END PACKAGE MANAGERS
# SYSTEM TOOLS
## VMs
### VAGRANT
if command_exists vagrant ; then
alias vup='vagrant up'
alias vh='vagrant halt'
alias vsus='vagrant suspend'
alias vre='vagrant reload'
alias vs='vagrant ssh'
fi
### DOCKER
if command_exists docker ; then
alias d='docker'
alias dc='docker-compose'
alias dl='docker-compose logs --tail 15'
alias drun='docker-compose stop && docker-compose run --service-ports'
alias dst='d stop $(d ps -q)'
alias drm='d rm $(d ps -aq)'
alias dvrm='d volume rm $(d volume ls -q)'
drmin () {
for img in $(d images | rg -i 'none' | awk '{print $3}'); do
docker rmi $img
done
}
d_exec() {
docker exec -it $1 sh -c "stty cols $COLUMNS rows $LINES && sh -l";
}
export d_exec;
d_ip() {
doc_ip=$(ip a show docker0 | grep "inet " | awk '{split($2, a, "/"); print a[1]}')
export DOCKER_HOST_IP=$doc_ip
}
export d_ip
fi
### KUBERNETES
if command_exists kubectl ; then
alias k='kubectl'
alias kapr='kubectl api-resources'
if command_exists kubectx ; then
alias ktx='kubectx'
fi
if command_exists kubens ; then
alias kns='kubens'
fi
# alias k9s_cont_namesp='k9s --context <context> -n <namespace>'
# pod_pf() {
# context=""
# namespace=""
# pod=$(kubectl get pod -l name=<pod name> \
# --context $context \
# -n $namespace \
# -o jsonpath="{.items[0].metadata.name}")
# echo "pod is $pod"
# kubectl port-forward $pod --context $context -n $namespace 8000:8000
# }
fi
if command_exists aws ; then
alias aelogin='aws ecr get-login --region eu-central-1'
if command_exists saml2aws ; then
export SAML2AWS_SESSION_DURATION=36000
alias sl='saml2aws login -a default -p default -r eu-central-1 --skip-prompt'
fi
fi
## END VM's
## MEDIA TOOLS
if command_exists youtube-dl ; then
alias ytdl='youtube-dl'
alias ytb='ytdl -f "bestvideo[height<=1080]"+bestaudio' # --external-downloader aria2c --external-downloader-args "-x 10 -s 10"'
alias ytm='ytdl -f bestaudio -x'
alias ytlf='ytdl --list-formats'
fi
if command_exists yt-dlp ; then
alias ypdl='yt-dlp'
alias ypb='ypdl -f "bestvideo[height<=1080]"+bestaudio' # --external-downloader aria2c --external-downloader-args "-x 10 -s 10"'
alias ypm='ypdl -f bestaudio -x'
alias yplfp='ypdl --list-formats'
fi
if command_exists aria2c ; then
alias a2c='aria2c -x 10 -s 10'
fi
if command_exists ffplay ; then
alias play='ffplay -nodisp -autoexit'
fi
## END MEDIA TOOLS
## EDITORS
if command_exists vim; then
alias v='vim'
alias sv="$SUDO vim"
export EDITOR='vim'
fi
if command_exists emacs ; then
alias em='emacs -nw'
alias e='emacs -nw'
alias sem="$SUDO emacs -nw"
export EDITOR='editor-run'
export LSP_USE_PLISTS=true
fi
## END EDITORS
## FILE MANAGERS
if command_exists mc ; then
alias smc="$SUDO mc"
fi
if command_exists vifm ; then
alias vf="vifm"
alias svf="$SUDO vifm"
if [ -n "$INSIDE_VIFM" ]; then
export INSIDE_VIFM="[VF]"
fi
fi
if command_exists nnn ; then
alias nnn='nnn -d'
export NNN_USE_EDITOR=1
export NNN_CONTEXT_COLORS='2745'
export NNN_COPIER=$(which xsel)
export NNN_NOTE=/data/backup/notes
export NNN_OPS_PROG=1
fi
## END FILE MANAGERS
if command_exists systemctl ; then
alias ssctl="$SUDO systemctl"
alias usctl='systemctl --user'
fi
if command_exists git ; then
function git_main_branch() {
command git rev-parse --git-dir &>/dev/null || return
local ref
for ref in refs/{heads,remotes/{origin,upstream}}/{main,trunk}; do
if command git show-ref -q --verify $ref; then
echo ${ref:t}
return
fi
done
echo master
}
function git_current_branch() {
local ref
ref=$(__git_prompt_git symbolic-ref --quiet HEAD 2> /dev/null)
local ret=$?
if [[ $ret != 0 ]]; then
[[ $ret == 128 ]] && return # no git repo.
ref=$(__git_prompt_git rev-parse --short HEAD 2> /dev/null) || return
fi
echo ${ref#refs/heads/}
}
alias g='git'
alias ga='g add'
alias gb='git branch'
alias gba='git branch -a'
alias gbd='git branch -d'
alias gbdf='git branch -D'
alias gco='git checkout'
alias gcb='git checkout -b'
alias gcm='git checkout "$(git_main_branch)"'
alias gcf='git config --list'
alias gcmt='git commit -v -a -m'
alias gcn='git clone'
alias gd='git diff'
alias gdca='git diff --cached'
alias gf='git fetch'
alias gfo='git fetch origin'
alias gfc='git fetch origin "$(git_current_branch)"'
alias gfm='git fetch origin "$(git_main_branch)"'
alias gl='git pull'
alias glo='git pull origin'
alias glc='git pull origin "$(git_current_branch)"'
alias glm='git pull origin "$(git_main_branch)"'
alias glr='git pull --rebase'
alias gm='git merge'
alias gp='git push'
alias gpo='git push origin'
alias gpc='git push origin "$(git_current_branch)"'
alias gpm='git push origin "$(git_main_branch)"'
alias gr='git remote'
alias gra='git remote add'
alias grv='git remote -v'
alias grb='git rebase'
alias grba='git rebase --abort'
alias grbc='git rebase --continue'
alias grbi='git rebase -i'
alias grhh='git reset --hard'
alias grpo='git remote prune origin'
alias gs='git status'
alias gsb='git status -sb'
fi
if command_exists tmux ; then
alias tm='tmux attach || tmux new'
fi
if command_exists qt6ct ; then
export QT_QPA_PLATFORMTHEME="qt6ct"
export QT_PLATFORM_PLUGIN="qt6ct"
fi
if command_exists clipmenud ; then
export CM_LAUNCHER=bemenu
export CM_DIR=$HOME/.cache/.clipmenud
fi
if command_exists reflector ; then
alias gen_mirror='reflector --ipv4 --country Germany --age 12 -p https -l 10 --sort score --save /tmp/mirrorlist'
alias gen_rsync='reflector --ipv4 --country Germany --age 12 -p rsync -l 10 --sort score --save /tmp/powerpill'
fi
if command_exists shiori ; then
export SHIORI_DIR=$backup_dir/drive/sync
fi
# END SYSTEM TOOLS
# PROGRAMM LANGUAGES
## RUST
if command_exists cargo || [ -d $HOME/.rustup ]; then
if [ ! -d $HOME/.cargo/bin ]; then
mkdir -p $HOME/.cargo/bin
fi
export PATH=$PATH:$HOME/.cargo/bin
alias crn='cargo run'
alias cup='cargo update'
alias cbd='cargo build'
alias cbr='cargo build --release'
setup_cargo_tools() {
if ! command_exists cargo-expand; then
cargo install cargo-expand
fi
if ! command_exists cargo-audit; then
cargo install cargo-audit
fi
if ! command_exists cargo-outdated; then
cargo install cargo-outdated
fi
}
fi
if [ -d /usr/src/rust ]; then
export RUST_SRC_PATH=/usr/src/rust/src
fi
if command_exists bat ; then
alias ct='bat'
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
fi
if ! command_exists tldr ; then
echo "install tealdeer"
fi
if ! command_exists rg ; then
echo "install ripgrep"
else
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
fi
if command_exists sk ; then
alias fzf='sk'
if [[ -d /usr/share/skim/completion.bash ]]; then
source /usr/share/skim/completion.bash
fi
gdelbrs() {
git branch |
rg --invert-match '\*' |
cut -c 3- |
sk --multi --preview="git log {} --" |
xargs --no-run-if-empty git branch --delete --force
}
else
echo "install sk"
fi
if command_exists zoxide; then
eval "$(zoxide init --no-aliases bash)"
alias j='__zoxide_z' # cd to highest ranked directory matching path
alias ja='__zoxide_za' # add path to the database
alias ji='__zoxide_zi' # cd with interactive selection using fzf
alias jr='__zoxide_zr' # remove path from the database
else
echo "Please install zoxide"
fi
if command_exists lsd; then
alias ls='lsd'
alias ll='ls -ahlF --group-dirs=first'
fi
## END RUST
## GO
if command_exists go ; then
export GOPATH="$HOME/.local/share/go"
export GOBIN=$LOCAL_BIN
fi
if command_exists fzf ; then
gdelbrf() {
git branch |
rg --invert-match '\*' |
cut -c 3- |
fzf --multi --preview="git log {} --" |
xargs --no-run-if-empty git branch --delete --force
}
else
echo "install fzf"
fi
if command_exists lf ; then
lfcd () {
tmp="$(mktemp)"
lf -last-dir-path="$tmp" "$@"
if [ -f "$tmp" ]; then
dir="$(cat "$tmp")"
rm -f "$tmp"
[ -d "$dir" ] && [ "$dir" != "$(pwd)" ] && cd "$dir"
fi
}
bind '"\C-o":"lfcd\n"'
fi
## END GO
## SCALA
if [ -d /usr/share/scala ]; then
export SCALA_HOME=/usr/share/scala
export PATH=$PATH:$SCALA_HOME/bin
fi
if command_exists scala ; then
alias s='scala'
alias sc='scalac'
srun() {
name=$@
echo "Start compilation for $name"
scalac "$name.scala"
echo "Compilation done"
scala $name
}
if command_exists coursier; then
alias openapi-generator-cli="coursier launch org.openapitools:openapi-generator-cli:latest.release --"
fi
fi
## END SCALA
## PYTHON
clean_pyc (){
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
}
### Determine active Python virtualenv details.
set_virtualenv () {
if [ ! -z "$PYENV_VIRTUAL_ENV" ] ; then
PYTHON_VIRTUALENV=" ${YELLOW}[$(pyenv version-name)]${NORMAL}"
fi
}
## END PYTHON
## NPM
if command_exists npm; then
export NPM_PACKAGES="${HOME}/.local"
export NODE_PATH="$NPM_PACKAGES/lib/node_modules"
fi
# END PROGRAMM LANGUAGES
# PROMPT
function parse_git_branch(){
branch=`git branch 2> /dev/null | sed -n 's/^\* //p'`
if [ ! "${branch}" == "" ]; then
staged_files=''
unstaged_files=''
new_status=`git status --porcelain`
ahead=`git status -sb 2> /dev/null | grep -o "ahead [0-9]*" | grep -o "[0-9]*"`
behind=`git status -sb 2> /dev/null | grep -o "behind [0-9]*" | grep -o "[0-9]*"`
# staged files
X=`echo -n "${new_status}" 2> /dev/null | cut -c 1-1`
# unstaged files
Y=`echo -n "${new_status}" 2> /dev/null | cut -c 2-2`
modified_unstaged=`echo -n "${Y}" | grep "M" -c`
deleted_unstaged=`echo -n "${Y}" | grep "D" -c`
untracked_unstaged=`echo -n "${Y}" | grep "?" -c`
modified_staged=`echo -n "${X}" | grep "M" -c`
deleted_staged=`echo -n "${X}" | grep "D" -c`
renamed_staged=`echo -n "${X}" | grep "R" -c`
new_staged=`echo -n "${X}" | grep "A" -c`
# unstaged_files
if [ "${modified_unstaged}" != "0" ]; then
unstaged_files="%${modified_unstaged}${unstaged_files}"
fi
if [ "${deleted_unstaged}" != "0" ]; then
unstaged_files="-${deleted_unstaged}${unstaged_files}"
fi
if [ "${untracked_unstaged}" != "0" ]; then
unstaged_files="*${untracked_unstaged}${unstaged_files}"
fi
# staged_files
if [ "${modified_staged}" != "0" ]; then
staged_files="%${modified_staged}${staged_files}"
fi
if [ "${deleted_staged}" != "0" ]; then
staged_files="-${deleted_staged}${staged_files}"
fi
if [ "${renamed_staged}" != "0" ]; then
staged_files="^${renamed_staged}${staged_files}"
fi
if [ "${new_staged}" != "0" ]; then
staged_files="+${new_staged}${staged_files}"
fi
if [ ! "${staged_files}" == "" ]; then
staged_files="|${GREEN}${staged_files}${NORMAL}"
fi
if [ ! "${unstaged_files}" == "" ]; then
unstaged_files="|${YELLOW}${unstaged_files}${NORMAL}"
fi
if [ ! "${ahead}" == "" ]; then
ahead="${LIGHT_GREEN}{>${ahead}}${NORMAL}"
fi
if [ ! "${behind}" == "" ]; then
behind="${LIGHT_RED}{<${behind}}${NORMAL}"
fi
# Set the final branch string.
echo "${branch}${ahead}${behind}${unstaged_files}${staged_files}"
fi
}
## Determine the branch/state information for this git repository.
function set_git_branch() {
BRANCH=''
# Get the final branch string.
if command_exists git_status ; then
branch="$(git_status bash)"
else
branch="$(parse_git_branch)"
fi
if [ ! "${branch}" == "" ]; then
BRANCH=" (${CYAN}$branch${NORMAL})"
fi
}
function set_prompt_symbol () {
if test $1 -eq 0 ; then
P_SYMBOL="${BLUE}\n─➤${NORMAL} "
else
P_SYMBOL="${LIGHT_RED}[$1]$INSIDE_VIFM\n─➤${NORMAL} "
fi
}
# Set the prompt.
function set_bash_prompt () {
local EXIT_CODE="$?"
local USERCOLOR="${GREEN}"
# Set the P_SYMBOL variable. We do this first so we don't lose the
# return value of the last command.
set_prompt_symbol $EXIT_CODE
# Set the PYTHON_VIRTUALENV variable.
set_virtualenv
# Set the BRANCH variable.
set_git_branch
# history -a
# history -c
# history -r
if [[ $EUID -eq 0 ]] ; then
USERCOLOR="${RED}"
fi
# Set the bash prompt variable.
[[ $SSH_CONNECTION ]] && local uath="${YELLOW}@\h${NORMAL}"
PS1="${BLUE}\A${NORMAL}${PYTHON_VIRTUALENV} ${USERCOLOR}\u${NORMAL}${uath} ${PURPLE}{\w}${NORMAL}${BRANCH}${P_SYMBOL}"
}
# Tell bash to execute this function just before displaying its prompt.
export PROMPT_COMMAND=set_bash_prompt