88 lines
2.3 KiB
Bash
88 lines
2.3 KiB
Bash
# fix problem with aur package: anki-official-binary-bundle 2.1.49-1
|
|
alias anki='anki --no-sandbox'
|
|
alias containers='lxc list -c ns4s,user.comment:comment'
|
|
|
|
# enable aliases for commands inside sudo
|
|
# TOOD check this is safe
|
|
alias sudo='sudo '
|
|
|
|
alias gg='git add . && git commit -m "update" && git push'
|
|
alias gitknow='cd ~/knowledge-base&& git add . && git status && git commit -m update && git push'
|
|
|
|
alias e='nvim -S Session.vim'
|
|
|
|
alias ls='ls --color=auto -h --group-directories-first --time-style=+"%d.%m.%Y %H:%M" -F'
|
|
|
|
alias cp='cp -i'
|
|
|
|
alias grep='grep --colour=auto'
|
|
alias egrep='egrep --colour=auto'
|
|
alias fgrep='fgrep --colour=auto'
|
|
alias hgrep='history | grep --color=auto'
|
|
|
|
alias bc='bc -q -l'
|
|
|
|
alias ytdl='youtube-dl --write-info-json --write-description --no-playlist'
|
|
alias ytdlb='youtube-dl --write-info-json --write-description --no-playlist -a'
|
|
alias ytdl-mp3='youtube-dl -f bestaudio --extract-audio --audio-format mp3 --embed-thumbnail --add-metadata'
|
|
|
|
alias pi='ssh pi@192.168.8.15'
|
|
alias pve='ssh pve.home'
|
|
alias mike='ssh michael.home'
|
|
alias b1='ssh b1.isnet.uk'
|
|
alias p1='ssh p1.isnet.uk'
|
|
alias kvm='ssh kvm.isnet.uk'
|
|
alias ultra='ssh gabbaell@mimas.usbx.me'
|
|
|
|
alias pacman='~/.src/archnews/archnews_wrap'
|
|
|
|
# lf gets confused by TERMINFO env var when running in tmux
|
|
# https://github.com/gokcehan/lf/issues/138#issuecomment-464477665
|
|
if [ -n "$TERMINFO" ] ; then
|
|
alias lf="TERMINFO= lf -last-dir-path=$HOME/.cache/lf-last-dir"
|
|
else
|
|
alias lf="lf -last-dir-path=$HOME/.cache/lf-last-dir"
|
|
fi
|
|
|
|
cdlf() {
|
|
cd "$(cat $HOME/.cache/lf-last-dir)"
|
|
}
|
|
|
|
lfcd() {
|
|
lf -last-dir-path="$HOME"/.cache/lf-last-dir
|
|
cdlf
|
|
}
|
|
|
|
# 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"
|
|
}
|
|
|
|
re() {
|
|
git clone ssh://git@git.rayelliott.dev:3222/rayelliott/"$1".git $2
|
|
}
|
|
|
|
mc() {
|
|
mkdir "$1" && cd "$1"
|
|
}
|
|
|
|
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
|
|
}
|
|
|