-
Notifications
You must be signed in to change notification settings - Fork 0
/
aliases
46 lines (34 loc) · 1003 Bytes
/
aliases
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
35
36
37
38
39
40
41
42
43
44
45
46
# Alias File
# Rapid Fire Apps
alias v='vim' # v for vim
alias q='qutebrowser' # q for qutebrowser
alias R='ranger' # R for ranger
# Apps
alias music='systemctl --user start mopidy && ncmpcpp' # music for ncmpcpp
alias files='ranger'
alias chat='yakyak'
alias calendar='calcurse'
alias ytc='mpsyt'
# Quick access to config files
alias cz='$EDITOR ~/.zshrc' # edit ~/.zshrc
alias ci='$EDITOR ~/.config/i3/config' # edit i3 config
# Other Commands
alias t='tail -f'
alias h='history'
alias ka='killall'
alias ls='ls -hN --color=auto --group-directories-first'
alias mkdir='mkdir -pv'
alias crep='grep --color=always'
alias p='sudo pacman'
alias sdn='sudo shutdown now'
alias yt='youtube-dl -ic'
alias yta='youtube-dl -xic'
alias starwars='telnet towel.blinkenlights.nl'
# Go to directories
alias gth='cd ~'
alias gtd='cd ~/Downloads'
alias gtD='cd ~/Documents'
alias gtdev='cd ~/Development'
alias gtP='cd ~/Pictures'
# Weather
weath() { curl wttr.in/$1 ;}