dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 58f1d8f390a56be26138f1e49869a8195251bcd5
parent 833d1ce6afc1697722e81ab031450a20071ef7f9
Author: Ed van Bruggen <edvb@uw.edu>
Date:   Tue, 24 Mar 2020 23:45:02 -0700

Add more bash aliases

Diffstat:
bashrc | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/bashrc b/bashrc @@ -60,7 +60,7 @@ $([ \j -gt 0 ] && echo "\j ")\[${White}\]\ # PS1='\[${White}\]\$\[${Color_Off}\] ' # PS1="${Blue}\u@\h${Color_Off}:${Cyan}\w${White}❯❯${Color_Off} " -# PS1='C:${PWD////\\\\}>' +# PS1='C:${PWD////\\\\}> ' PS2='\[${White}\]\$\[${Color_Off}\] ' @@ -133,9 +133,12 @@ alias emacs='emacs --no-window-system' alias t='todoium' alias old='tg old' alias gdb='gdb -q' -alias db='gdb -q -ex run ./$(basename $PWD)' +alias db='gdb -q -ex run ./$(basename $PWD)' # TODO smart script to allow argument alias v='valgrind --leak-check=full --show-leak-kinds=all' alias gf='echo haha, you wish' alias ytdlp='youtube-dl --extract-audio --audio-format mp3 -o "%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s"' +alias nl='echo >>' # TODO diff name already taken +alias term='tabbed -c st -w' +alias f='feh --force-aliasing --auto-zoom --auto-rotate --scale-down' #}}}