1
0
Files
dotfiles/.config/zsh/.aliasrc
T
2021-12-08 12:32:18 +01:00

23 lines
715 B
Bash

#!/bin/sh
alias ka="killall" \
p="sudo pacman" \
s="sudo systemctl" \
ss="sudo systemctl start" \
f="vifm" \
g="git" \
v="$EDITOR" \
x="sxiv -ft *" \
sdn="sudo shutdown -h now" \
reflect="sudo reflector --country Netherlands --sort rate --age 12 --save /etc/pacman.d/mirrorlist" \
ls="ls -hN --color=auto --group-directories-first" \
grep="grep --color=auto" \
diff="diff --color=auto" \
yt="youtube-dl --add-metadata -i -o '%(upload_date)s-%(title)s.%(ext)s'" \
yta="yt -x -f bestaudio/best" \
vim="nvim" \
cfg="$EDITOR .config/sway/config" \
icat="kitty +kitten icat"
se() { du -a ~/.scripts/* ~/.config/* | awk '{print $2}' | fzf | xargs -r $EDITOR ;}
vf() { fzf | xargs -r -I % $EDITOR % ;}