2024-02-19 16:07:53 +01:00
|
|
|
|
# Make less more friendly for non-text input files, see lesspipe(1)
|
|
|
|
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
|
|
|
alias gitdotfiles='/usr/bin/git --git-dir="$HOME/.dotfiles/" --work-tree="$HOME"'
|
|
|
|
|
# enable color support of ls and also add handy aliases
|
2024-03-27 14:13:36 +01:00
|
|
|
|
alias ls='ls -pQFh --group-directories-first'
|
2024-02-19 16:07:53 +01:00
|
|
|
|
if [ -x /usr/bin/dircolors ]; then
|
|
|
|
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
2024-03-27 14:13:36 +01:00
|
|
|
|
alias ls='ls --color=auto -pQFh --group-directories-first'
|
2024-02-19 16:07:53 +01:00
|
|
|
|
alias dir='dir --color=auto'
|
|
|
|
|
alias vdir='vdir --color=auto'
|
|
|
|
|
|
|
|
|
|
alias grep='grep --color=auto'
|
|
|
|
|
alias fgrep='fgrep --color=auto'
|
|
|
|
|
alias egrep='egrep --color=auto'
|
|
|
|
|
alias diff='diff --color=auto'
|
|
|
|
|
fi
|
2024-10-11 09:25:12 +02:00
|
|
|
|
|
|
|
|
|
~sezení(){ ~/Dokumenty/Projekty/Sezení; }
|
|
|
|
|
|
2024-02-19 16:07:53 +01:00
|
|
|
|
alias §rm='rm -vi'
|
|
|
|
|
alias §cp='cp -vi'
|
|
|
|
|
alias §mv='mv -vi'
|
|
|
|
|
alias §df='df -Th'
|
|
|
|
|
§du(){
|
|
|
|
|
[[ "$1" == '--help' ]] && echo "§du; §du '../*'" && return 0
|
|
|
|
|
du -h -x -s -- ${1:-*} | sort -r -h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alias §xclip-copy='xclip -selection clipboard'
|
|
|
|
|
alias §xclip-paste='xclip -o -selection clipboard'
|
|
|
|
|
|
|
|
|
|
LAST_PWD_PATH="$BASH_DOTFILES/.bash_last_pwd"
|
|
|
|
|
[ -f "$LAST_PWD_PATH" ] && OLDPWD=`cat $LAST_PWD_PATH`
|
|
|
|
|
cd(){ builtin cd "$@" && echo `pwd` > "$LAST_PWD_PATH"; }
|
|
|
|
|
|
|
|
|
|
history_clean(){ awk '!seen[$0]++ {print $0}' $HOME/.bash_history; }
|
|
|
|
|
history_edit(){ vim $HOME/.bash_history; }
|
|
|
|
|
history_cat(){ LC_ALL=C cat ~/.bash_history; }
|
|
|
|
|
history_most_used(){ LC_ALL=C cat ~/.bash_history | cut -d ';' -f 2- | §awk 1 | sort | uniq -c | sort -r -n | head -n ${1-10}; }
|
|
|
|
|
|
|
|
|
|
§(){
|
|
|
|
|
[[ -z "$1" ]] && clear && return 0
|
|
|
|
|
echo "$ [--help]= clear or [print this text]"
|
|
|
|
|
alias | grep "alias §" --color=never
|
|
|
|
|
declare -F | grep 'declare -f §' --color=never
|
|
|
|
|
ls ~/bin | grep -P "^§" | sed 's/^§/~\/bin\/ §/'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alias §less='less -R -S'
|
|
|
|
|
|
2024-03-28 11:36:28 +01:00
|
|
|
|
m(){
|
2024-03-30 12:31:50 +01:00
|
|
|
|
if [[ -z "$1" ]]; then
|
|
|
|
|
printenv | grep -e '^m'
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
if [[ "--help" == "$1" ]]; then
|
|
|
|
|
echo 'm [--help]'
|
|
|
|
|
echo ' Lists all marks or print this help.'
|
|
|
|
|
echo 'm <name> [path]'
|
|
|
|
|
echo ' Sets mark <name> to current directory or [path].'
|
|
|
|
|
echo ' The mark is just a bash variable, use `$m<name>`.'
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
2024-03-28 11:36:28 +01:00
|
|
|
|
local n="m$1"
|
|
|
|
|
[[ -z "${!n}" ]] || return 1
|
2024-03-27 14:14:42 +01:00
|
|
|
|
[[ -z "$2" ]] && local p="$(pwd)" || local p="$(readlink -f $2)"
|
2024-03-28 11:36:28 +01:00
|
|
|
|
export $n="$p"
|
2024-02-19 16:07:53 +01:00
|
|
|
|
}
|
|
|
|
|
alias cd-vifm='cd `vifm --choose-dir -`'
|
|
|
|
|
mkcd(){ mkdir -p -- "$1" && cd -P -- "$1"; }
|
|
|
|
|
|
2024-03-27 18:44:03 +01:00
|
|
|
|
alias gcalendar-dovolené='gcalendar --account "práce" --calendar "Dovolené"'
|
|
|
|
|
alias gcalendar-události='gcalendar --account "default" --calendar "Události"'
|
|
|
|
|
|
2024-02-19 16:07:53 +01:00
|
|
|
|
alias §find.='find . -maxdepth 1'
|
|
|
|
|
|
|
|
|
|
alias pdftk='java -jar $HOME/bin/pdftk-all.jar'
|
|
|
|
|
bw-session(){
|
|
|
|
|
bw logout
|
2024-03-06 09:31:10 +01:00
|
|
|
|
# login=`kwallet-query kdewallet -f accounts -r Bitwarden 2> /dev/null`
|
|
|
|
|
login=$(§kwallet.mjs --wallet kdewallet readPassword accounts bw-json)
|
2024-02-19 16:07:53 +01:00
|
|
|
|
export BW_CLIENTSECRET=`echo "$login" | jq -r .secret`
|
|
|
|
|
export BW_CLIENTID=`echo "$login" | jq -r .id`
|
|
|
|
|
bw login --apikey --raw
|
|
|
|
|
export BW_SESSION=`bw unlock --raw $(echo "$login" | jq -r .pass)` && echo "Bitwarden session ON" || echo "Bitwarden session FAILED"
|
|
|
|
|
unset BW_CLIENTSECRET
|
|
|
|
|
unset BW_CLIENTID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alias §psmem_all='ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%mem'
|
|
|
|
|
alias §psmem='§psmem_all | head -n 10'
|
|
|
|
|
alias §pscpu_all='ps -eo pid,ppid,cmd,%mem,%cpu --sort=-%cpu'
|
|
|
|
|
alias §pscpu='§pscpu_all | head -n 10'
|
|
|
|
|
alias §psnet_all='lsof -P -i -n'
|
2024-05-12 10:21:19 +02:00
|
|
|
|
alias §ck-grep='cat /usr/share/X11/locale/en_US.UTF-8/Compose ~/.XCompose | grep -i'
|
2024-02-19 16:07:53 +01:00
|
|
|
|
|
|
|
|
|
§ping-test(){ # Pings ip address of noip.com and www.google.com.
|
|
|
|
|
ping -c 1 -q 8.23.224.107 | grep --color=never -A 1 -i '\---'
|
|
|
|
|
ping -c 1 -q www.google.com | grep --color=never -A 1 -i '\---'
|
|
|
|
|
}
|
|
|
|
|
§whoami(){
|
|
|
|
|
[[ "$1" == '--help' ]] && echo '§whoami; §whoami --ip' && return 0
|
|
|
|
|
local ip=$(curl -s ifconfig.me)
|
|
|
|
|
[[ "$1" == '--ip' ]] && echo "$ip" && return 0
|
|
|
|
|
local L=" %s\n"
|
|
|
|
|
printf "\n"
|
|
|
|
|
printf "$L" "USER: $(echo $USER)"
|
|
|
|
|
printf "$L" "IP ADDR: $ip"
|
|
|
|
|
printf "$L" "HOSTNAME: $(hostname -f)"
|
|
|
|
|
printf "$L" "KERNEL: $(uname -rms)"
|
|
|
|
|
printf "\n"
|
|
|
|
|
}
|
|
|
|
|
§cmdfu(){ curl "https://www.commandlinefu.com/commands/matching/$@/$(echo -n $@ | openssl base64)/plaintext"; }
|
|
|
|
|
aai(){
|
|
|
|
|
[[ "$1" == '--help' ]] && ai ask --help && return 0;
|
|
|
|
|
echo "ai ask \"$*, thanks for your help\""; ai ask "\"$*, thanks for your help\"";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
alias npx-wca='npx -y web-component-analyzer'
|
|
|
|
|
alias npx-qnm='npx -y qnm'
|
|
|
|
|
alias npx-hint='npx -y hint'
|
|
|
|
|
alias npx-markdown='nohup npx markserv'
|
2024-05-12 10:21:19 +02:00
|
|
|
|
|
|
|
|
|
alias fzf=fzf-carroarmato0.fzf
|
2024-02-19 16:07:53 +01:00
|
|
|
|
|
|
|
|
|
§url-curl(){ curl --silent -I "$1" | grep -i location; }
|
|
|
|
|
|
|
|
|
|
alias bathelp='bat --plain --language=help'
|
|
|
|
|
|
|
|
|
|
rpg(){
|
|
|
|
|
rpg-cli "$@"
|
|
|
|
|
if ( [[ "$1" == "cd" ]] || [[ "$1" == "ls" ]] ); then
|
|
|
|
|
[[ "$2" == "" ]] && $1 . && return 0
|
|
|
|
|
[[ "$2" == ".." ]] && $1 .. && return 0
|
|
|
|
|
[[ "-1" != "$(nodejsscript --print "s.ls().findIndex(e=> e==='$2'.replace(/\/$/, ''))")" ]] && $1 "$2" && return 0
|
|
|
|
|
fi
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
# [[ "$(rpg-cli pwd)" == "$(pwd)" ]] && return 0
|
|
|
|
|
# cd "$(rpg-cli pwd)"
|
|
|
|
|
}
|
|
|
|
|
rpg-dungeon(){
|
|
|
|
|
current=$(basename $PWD)
|
|
|
|
|
number_re='^[0-9]+$'
|
|
|
|
|
|
|
|
|
|
if [[ $current =~ $number_re ]]; then
|
|
|
|
|
next=$(($current + 1))
|
|
|
|
|
command mkdir -p $next && cd $next && rpg ls
|
|
|
|
|
elif [[ -d 1 ]] ; then
|
|
|
|
|
cd 1 && rpg ls
|
|
|
|
|
else
|
|
|
|
|
command mkdir -p dungeon/1 && cd dungeon/1 && rpg ls
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# alias adb-device='adb devices | tail -n +2 | head -n 1 | §awk 1'
|
|
|
|
|
# make-completion-wrapper, see https://gdhnotes.blogspot.com/2014/02/alias-bash-completion.html
|