blob: 1184f9c09bbbb5a83d5f68f12861ece877e03954 (
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
29
30
31
32
33
34
|
alias g='grep'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias ip='ip -color=auto'
alias xqr='xbps-query -R'
alias xqrs='xbps-query -Rs'
alias kb='kak ~/.bashrc'
alias .b='source ~/.bashrc'
alias l='ls -lah'
alias la='ls -a'
apwd () {
pwd | sed -e 's!'"$HOME"'!~!'
}
alias mirror='mpv --untimed --profile=low-latency --vf=hflip /dev/video0'
alias gds='git diff --staged'
alias mp='mpv --vid=no --audio-pitch-correction=no'
alias lh='locate "/home/rebecca/*"'
alias lih='locate -i "/home/rebecca/*"'
alias enjerv="_enjerv; cd /home/rebecca/jerv/files"
gb () { grep "$1" ~/.bash_history; }
alias k='rlwrap ~/src/k/k ~/src/k/repl.k'
gw () { grep "$@" /usr/share/dict/words; }
|