From c3e5eddfcde26168bb324d10f309dce07fff0738 Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 25 Feb 2010 23:35:16 +0100 Subject: split up bashrc and put it in ~/.config/bash --- .config/bash/alias.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .config/bash/alias.sh (limited to '.config/bash/alias.sh') diff --git a/.config/bash/alias.sh b/.config/bash/alias.sh new file mode 100644 index 0000000..06bb069 --- /dev/null +++ b/.config/bash/alias.sh @@ -0,0 +1,19 @@ +# enable bashcompletion +alias ebc="[[ -f /etc/profile.d/bash-completion.sh ]] && source /etc/profile.d/bash-completion.sh" + +alias player="/home/ben/coding/cpp/audio/player" +alias packages="eix -I --format \" \" | grep --color=never Found.*matches." +alias gplay="gnome-mplayer" + +# list hidden files - if directory do NOT show contents and dont display ".." +alias lh="ls -d .[^.]*" +alias r="resize_to_min 100 35" +alias vim="r; vim" +alias man="r; man" + +alias ccat="highlight --ansi" +alias hhtml="highlight --wrap --xhtml --linenumbers --anchors --linenumbers --anchor-prefix=line" + +alias use="quse -D" +alias tv="~/.scripts/tv.sh" + -- cgit