about summary refs log tree commit diff stats
path: root/bash/aliases.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/aliases.bash')
-rw-r--r--bash/aliases.bash20
1 files changed, 15 insertions, 5 deletions
diff --git a/bash/aliases.bash b/bash/aliases.bash index e29f62a..0132d33 100644 --- a/bash/aliases.bash +++ b/bash/aliases.bash
@@ -20,17 +20,27 @@ alias ll='ls -l'
20alias tree='tree -F' 20alias tree='tree -F'
21 21
22# make locally 22# make locally
23alias lake='make PREFIX=$HOME/usr ' 23alias lake='make PREFIX=$LOCAL_PATH '
24 24
25# bash meta 25# bash meta
26alias rebash='source ~/.bash_profile' 26alias rebash='source ~/.bash_profile'
27 27
28# Debugging
29alias emacs_goddamnit='pushd ~/.emacs.d;emacs --debug-init;popd'
30
31# other 28# other
32alias radio=radish 29alias radio=radish
33if ! command -v fd >/dev/null 2>&1; then 30
31# `fd' installs as `fdfind' on some systems
32if ! command -v fd >/dev/null 2>&1 &&
33 command -v fdfind >/dev/null 2>&1
34then
34 alias fd=fdfind 35 alias fd=fdfind
35fi 36fi
36 37
38alias e="$EDITOR"
39
40## ffmpeg
41# agafnd | i have ffmpeg and ffprobe aliased to ffwhatever -hide_banner
42# agafnd | because if you don't do this it spits out all of the options it was
43# | configured with every time you run it
44
45alias ffmpeg='ffmpeg -hide_banner'
46alias ffprobe='ffprobe -hide_banner'