Commit | Line | Data |
---|---|---|
6b8582fa | 1 | # If not running interactively, don't do anything |
dc9a8087 | 2 | # [[ $- != *i* ]] && return |
6b8582fa | 3 | |
dc9a8087 | 4 | # aliases |
6b8582fa AB |
5 | alias ls='ls --color=auto' |
6 | PS1='[\u@\h \W]\$ ' | |
dc9a8087 AB |
7 | alias mpv="mpv --ytdl-format mp4" |
8 | alias mv="mv -iv" | |
9 | alias cp="cp -iv" | |
10 | alias scl=systemctl | |
11 | alias jcl=journalctl | |
12 | alias m="mbsync csclub; mbsync uwaterloo; mbsync amin" | |
13 | alias best="youtube-dl -f best" | |
14 | ||
15 | aur() { | |
16 | cd ~/usr/builds | |
17 | git clone https://aur.archlinux.org/${1}.git | |
18 | cd ${1} | |
19 | } | |
20 | ||
21 | # i-beam cursor | |
22 | # echo -e "\033[5 q" # blinking | |
23 | echo -e "\033[6 q" # non-blinking | |
24 |