1
0

adds zsh config

This commit is contained in:
2021-12-08 12:32:18 +01:00
parent a2c8dd9724
commit d790175ced
6 changed files with 1696 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/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 % ;}