#!/bin/sh # bash alias ":wq"="exit" alias ":q"="exit" # cd alias ".."="cd .." alias "..."="cd ../.." alias "...."="cd ../../.." alias "....."="cd ../../../.." alias "dockervol"="cd /var/lib/docker/volumes" # cp alias cp="cp -i" # clear alias c="clear" # config alias config="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME" # diff alias diff="diff --color=auto" # fzf src() { find ~/.config/* ~/.local/bin/* -type f | fzf | xargs -r $EDITOR ;} srd() { find ~/nextCloud/* -type f | grep ".pdf" | fzf | xargs -r $READER ;} yaya() { yay -Slq | fzf --reverse --prompt="yay install > " -q "$1" -m --preview 'yay -Si {1}'| xargs -ro yay -S } yayr() { yay -Qq | fzf --reverse --prompt="yay remove > " -q "$1" -m --preview 'yay -Qi {1}' | xargs -ro yay -Rns } # git alias ga="git add" alias grm="git rm" alias gc="git commit" alias gp="git push" # grep alias grep="grep --color=auto" # haste haste() { a=$(cat); curl -X POST -s -d "$a" https://paste.tiyn.eu/documents | awk -F '"' '{print "https://paste.tiyn.eu/"$4}'; } #khal alias calendar="khal interactive" # khard alias contacts="khard" # kolourpaint alias paint="kolourpaint" # ls(d) alias l="lsd" alias la="lsd -la" alias ll="lsd -l" alias tree="lsd --tree" # mkdir alias mkdir="mkdir -p" # multitail alias mon="multitail -CS irc -f" # mutt alias mutt="neomutt" alias upmutt="mbsync -a && neomutt" # mv alias mv="mv -i" # octave alias octave="octave --persist" # pacman alias pac="sudo pacman" # ping alias ping="ping -c 5" # rm alias rm="rm -i" # rsync alias rsync="rsync --progress" # root/sudo alias su="sudo -i" alias sudo="sudo " #sc-im alias sc="sc-im" # script alias scriptclear="cat typescript | perl -pe 's/\e([^\[\]]|\[.*?[a-zA-Z]|\].*?\a)//g' | col -b > typescript-processed" # tmux alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf" # nvim alias svim="sudo nvim" alias svi="sudo nvim" command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" command -v nvim >/dev/null && alias vi="nvim" vidiff="nvim -d" # weather alias weather="curl wttr.in" # wget alias wget="wget --hsts-file=$XDG_CACHE_HOME/wget-hsts" # yay alias yay="yay --sudoloop --noredownload --norebuild" # youtube-dl alias yta="youtube-dl -f 'bestaudio[ext=m4a]'" alias ytv="youtube-dl -f 'bestvide[ext=mp4]+bestaudio[ext=m4a]'" alias yta2c="youtube-dl --external-downloader aria2c --external-downloader-args '-j 16 -x 16 -s 16 -k 2M' -f 'bestaudio/best'" alias ytv2c="youtube-dl --external-downloader aria2c --external-downloader-args '-j 16 -x 16 -s 16 -k 2M' -f 'bestvideo[height>=720]+bestaudio/best'"