blob: d5a6c713f77b7debe38fa3aad765574c8fba7dfb (
plain)
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
|
# 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 la="ls -a"
# resizing terminal
alias r="resize_to_min 100 35"
alias s="resize 60 17"
# resize terminal before launching curses-apps
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"
# typos
alias sl=ls
|