From ff41d9acc805099f27f1cf060ca9db72d2fdb74f Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Mon, 30 Jan 2023 12:24:02 -0600 Subject: Bash! --- bash/aliases.bash | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'bash/aliases.bash') 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' alias tree='tree -F' # make locally -alias lake='make PREFIX=$HOME/usr ' +alias lake='make PREFIX=$LOCAL_PATH ' # bash meta alias rebash='source ~/.bash_profile' -# Debugging -alias emacs_goddamnit='pushd ~/.emacs.d;emacs --debug-init;popd' - # other alias radio=radish -if ! command -v fd >/dev/null 2>&1; then + +# `fd' installs as `fdfind' on some systems +if ! command -v fd >/dev/null 2>&1 && + command -v fdfind >/dev/null 2>&1 +then alias fd=fdfind fi +alias e="$EDITOR" + +## ffmpeg +# agafnd | i have ffmpeg and ffprobe aliased to ffwhatever -hide_banner +# agafnd | because if you don't do this it spits out all of the options it was +# | configured with every time you run it + +alias ffmpeg='ffmpeg -hide_banner' +alias ffprobe='ffprobe -hide_banner' -- cgit 1.4.1-21-gabe81