blob: 92df898b49fabf283ba5557f9aa3a1ae67a6ce5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!/bin/sh
# Use neovim for vim if present.
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
# Use $XINITRC variable if file exists.
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"
[ -f "$MBSYNCRC" ] && alias mbsync="mbsync -c $MBSYNCRC"
# sudo not required for some system commands
for command in mount umount sv pacman updatedb su shutdown poweroff reboot emerge eselect rc-update rc-service dispatch-conf dhcpcd; do
alias $command="sudo $command"
done; unset command
se() {
choice="$(find ~/.local/bin -mindepth 1 -printf '%P\n' | fzf)"
[ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice"
}
# Verbosity and settings that you pretty much just always are going to want.
alias \
cp="cp -vir" \
mv="mv -vi" \
rm="rm -vI" \
bc="bc -ql" \
rsync="rsync -vrPlu" \
mkd="mkdir -pv" \
yt="yt-dlp --embed-metadata -i --embed-thumbnail" \
yta="yt -x -f bestaudio/best" \
ytt="yt --skip-download --write-thumbnail" \
ff="ffmpeg -hide_banner" \
rs="rsync -vrP" \
rsu="rs -u" \
df="df -h" \
dd="sudo dd status=progress" \
sx="nsxiv -a" \
ffmpeg="ffmpeg -hide_banner" \
# Colorize commands when possible.
alias \
ls="ls -hN --color=auto --group-directories-first" \
grep="grep --color=auto" \
diff="diff --color=auto" \
ccat="highlight --out-format=ansi" \
ip="ip -color=auto"
# These common commands are just too long! Abbreviate them.
alias \
ka="killall" \
g="git" \
s="sudo " \
cl="clear" \
trem="transmission-remote" \
YT="youtube-viewer" \
sdn="poweroff" \
e="$EDITOR" \
v="$EDITOR" \
p="pacman" \
y="yay" \
em="emerge --autounmask=y --autounmask-write" \
dc="dispatch-conf" \
ema="emaint sync -r" \
es="eselect repository" \
z="zathura" \
mc="sudo mount.cifs" \
dh="dhcpcd" \
cr="sudo cryptsetup" \
cdda="mpv cdda:// --cdrom-device=/dev/sr0" \
dvd="mpv dvd:// --dvd-device=/dev/sr0" \
bd="mpv bd:// --bluray-device=/dev/sr0" \
ll="ls -l" \
la="ls -a" \
lla="ls -la" \
sy="systemctl" \
mnv="mpv --no-video" \
pcc="p -Sc --noconfirm && s rm /var/cache/pacman/pkg/*part" \
alias \
lf="lfub" \
magit="nvim -c MagitOnly" \
ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutenvrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc"
|