2022-08-23 10:55:20 +03:00
|
|
|
termcompat() {
|
|
|
|
typeset term=$TERM
|
|
|
|
case $term in
|
|
|
|
(alacritty*) ;&
|
|
|
|
(kitty*) ;&
|
|
|
|
(xterm-*)
|
|
|
|
term=xterm;;
|
|
|
|
(rxvt-unicode*)
|
|
|
|
term=rxvt-unicode;;
|
|
|
|
(tmux*)
|
|
|
|
term=screen.xterm-new;;
|
|
|
|
esac
|
|
|
|
TERM=$term command $@
|
|
|
|
}
|
2022-08-19 22:37:17 +03:00
|
|
|
|
2022-09-24 16:15:54 +03:00
|
|
|
addpath() {
|
|
|
|
typeset newpath=$1
|
|
|
|
if [[ ! $PATH =~ $newpath ]]; then
|
|
|
|
PATH+=:$newpath
|
|
|
|
export PATH
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2022-09-03 19:30:19 +03:00
|
|
|
fsf() {
|
|
|
|
typeset host prompt="SSH Remote > "
|
|
|
|
host=$(cut -d\ -f1 $HOME/.ssh/known_hosts | sort -u | fzf --prompt=$prompt) || return 1
|
|
|
|
|
|
|
|
termcompat ssh $host $@
|
|
|
|
}
|
|
|
|
|
2022-08-19 22:37:17 +03:00
|
|
|
beep() { printf $'\007' }
|
|
|
|
fixterm() { printf $'c' }
|
|
|
|
|
2022-08-23 10:55:20 +03:00
|
|
|
diff() { command diff --color $@ }
|
|
|
|
tailf() { command less +F $@ }
|
|
|
|
rgrep() { command grep --exclude-dir=\.git -R $@ }
|
|
|
|
fwcmd() { command firewall-cmd $@ }
|
|
|
|
s() { termcompat ssh $@ }
|
2022-08-19 22:37:17 +03:00
|
|
|
|
2022-08-23 10:55:20 +03:00
|
|
|
tmux() { command tmux -2 $@ }
|
|
|
|
atmux() { tmux attach || tmux }
|
|
|
|
sush() { command sudo -Es }
|
2022-08-19 22:37:17 +03:00
|
|
|
|
2022-08-23 10:55:20 +03:00
|
|
|
tig() { termcompat tig $@ }
|
|
|
|
gsi() { tig status }
|
|
|
|
gci() { command git commit $@ }
|
|
|
|
gsl() { command git stash list $@ }
|
|
|
|
gss() { command git status -sbu $@ }
|
2022-10-25 12:53:28 +03:00
|
|
|
gsw() { command git switch $@ }
|
2022-08-23 10:55:20 +03:00
|
|
|
gup() { command git pull $@ }
|
2022-11-24 19:10:49 +02:00
|
|
|
gwt() { command git worktree $@ }
|
2022-08-23 10:55:20 +03:00
|
|
|
groot() { cd $(command git rev-parse --show-toplevel) || return 1 }
|
|
|
|
ggrep() { command git grep $@ }
|
|
|
|
gdiff() { command git diff --color $@; }
|
|
|
|
greset() {
|
2022-08-19 22:37:17 +03:00
|
|
|
echo "OK to reset and clean teh repo?"
|
|
|
|
read -sq _
|
|
|
|
(( $? )) && return 1
|
|
|
|
/usr/bin/git clean -fd
|
|
|
|
/usr/bin/git reset --hard
|
|
|
|
}
|
2022-09-03 19:30:19 +03:00
|
|
|
|
2022-08-19 22:37:17 +03:00
|
|
|
if [[ -x $(whence -p diff-so-fancy) ]]; then
|
|
|
|
gdf() { gdiff $@ | command diff-so-fancy | command less --tabs=4 -RSFX }
|
|
|
|
else
|
|
|
|
gdf() { gdiff $@ }
|
|
|
|
fi
|
|
|
|
|
2022-08-23 10:55:20 +03:00
|
|
|
if [[ -x $(whence -p exa) ]]; then
|
|
|
|
ls() { command exa --group-directories-first $@ }
|
|
|
|
ll() { ls -alg $@ }
|
|
|
|
ld() { ls -dlg $@ }
|
|
|
|
else
|
|
|
|
ls() { command ls --color=auto --group-directories-first $@ }
|
|
|
|
ll() { ls -alh $@ }
|
|
|
|
ld() { ls -dlh $@ }
|
|
|
|
fi
|
2022-08-22 18:25:37 +03:00
|
|
|
|
2022-08-19 22:37:17 +03:00
|
|
|
# grc
|
|
|
|
if [[ -x $(whence -p grc) ]]; then
|
|
|
|
cmds=(\
|
|
|
|
cc configure cvs df dig gcc gmake id ip last lsof make mount \
|
|
|
|
mtr netstat ping ping6 ps tcpdump traceroute traceroute6 \
|
|
|
|
)
|
|
|
|
for cmd in $cmds[@]; do
|
|
|
|
alias $cmd="command grc -es --colour=auto $cmd"
|
|
|
|
done
|
|
|
|
unset cmds cmd
|
|
|
|
fi
|