profile/aliases.sh

109 lines
2.7 KiB
Bash
Raw Normal View History

2022-03-04 17:40:57 +00:00
# fix problem with aur package: anki-official-binary-bundle 2.1.49-1
alias anki='anki --no-sandbox'
2019-05-26 19:45:22 +00:00
# enable aliases for commands inside sudo
# TOOD check this is safe
alias sudo='sudo '
2022-03-04 17:40:57 +00:00
alias gitknow='cd ~/knowledge-base&& git add . && git status && git commit -m update && git push'
2020-09-03 14:44:50 +00:00
alias e='nvim'
2021-10-14 16:41:38 +00:00
alias pcm='pcmanfm . &'
2020-09-03 14:44:50 +00:00
2019-06-02 11:03:05 +00:00
alias lsoff='sudo lsof +f -- '
2019-02-20 14:19:32 +00:00
alias la='ls -lha --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias ll='ls -lh --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
2019-02-22 19:25:31 +00:00
alias ls='ls --color=auto -h'
2019-02-20 14:19:32 +00:00
2020-06-30 15:58:34 +00:00
alias bulk-rename='vimv'
2019-02-20 14:19:32 +00:00
alias cp='cp -i'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
alias hgrep='history | grep --color=auto'
alias grep='grep --colour=auto'
alias grepef='grep --exclude-from .ignorefiles'
2020-03-25 13:05:19 +00:00
alias bc='bc -q -l'
2020-02-27 15:02:01 +00:00
alias thumbs='feh -t -y128 -E128'
2021-02-13 12:19:13 +00:00
alias mpv480="mpv --ytdl-raw-options=format='best[height<='480']'"
alias mpv720="mpv --ytdl-raw-options=format='best[height<='720']'"
alias mpv1080="mpv --ytdl-raw-options=format='best[height<='1080']'"
2019-02-20 14:19:32 +00:00
alias ytdl='youtube-dl --write-info-json --write-description --no-playlist'
alias ytdlb='youtube-dl --write-info-json --write-description --no-playlist -a'
2019-03-04 22:35:04 +00:00
alias ytdl-mp3='youtube-dl -f bestaudio --extract-audio --audio-format mp3 --embed-thumbnail --add-metadata'
2019-02-20 14:19:32 +00:00
2019-06-08 10:03:01 +00:00
alias wttr='curl wttr.in'
2019-06-08 10:00:45 +00:00
2020-02-27 15:00:07 +00:00
alias pve='ssh pve.home'
2020-11-21 13:29:25 +00:00
alias b1='ssh b1.isnet.uk'
alias kvm='ssh kvm.isnet.uk'
alias dokku='ssh -t dokku@dokku.isnet.uk'
2019-04-10 18:22:55 +00:00
2019-05-26 19:45:22 +00:00
alias pacman='~/.src/archnews/archnews_wrap'
2020-02-23 18:02:03 +00:00
# lf gets confused by TERMINFO env var when running in tmux
# https://github.com/gokcehan/lf/issues/138#issuecomment-464477665
if [ -n "$TERMINFO" ] ; then
2020-06-30 15:57:45 +00:00
alias lf="TERMINFO= lf -last-dir-path=$HOME/.cache/lf-last-dir"
else
alias lf="lf -last-dir-path=$HOME/.cache/lf-last-dir"
2020-02-23 18:02:03 +00:00
fi
2020-06-30 15:57:45 +00:00
cdlf() {
cd "$(cat $HOME/.cache/lf-last-dir)"
}
lfcd() {
lf -last-dir-path="$HOME"/.cache/lf-last-dir
cdlf
}
2019-04-10 18:22:55 +00:00
# functions
# $1 - output directory
# $2 - size
# $3 - filename
smartresize() {
mogrify -path "$3" -filter Triangle -define filter:support=2 -thumbnail "$2" -unsharp 0.25x0.08+8.3+0.045 -dither None -posterize 136 -quality 82 -define jpeg:fancy-upsampling=off -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB "$1"
}
2020-03-19 18:12:50 +00:00
2020-05-18 18:35:01 +00:00
re() {
git clone ssh://git@git.rayelliott.dev:3222/rayelliott/"$1".git $2
}
2020-03-19 18:12:50 +00:00
mc() {
mkdir "$1" && cd "$1"
}
2020-03-30 12:05:59 +00:00
# TODO testing
2021-11-04 10:36:48 +00:00
png-jpg() {
convert "$1" "${1%.*}".jpg
}
2020-09-26 11:31:58 +00:00
ch() {
curl "cheat.sh/$@"
}
2020-11-21 13:35:16 +00:00
newsh() {
set -e
if [ -f "$1" ] ; then
echo "Error: file exists: $1"
exit 1
fi
echo "#!/bin/sh" > "$1"
echo "" >> "$1"
echo "$2" >> "$1"
chmod +x "$1"
nvim "$1" +3
}
2022-03-04 17:40:57 +00:00