1
0
Fork 0
dotfiles/zsh/aliases
2018-06-08 08:12:48 -07:00

20 lines
380 B
Text

alias startx='ssh-agent startx; vlock'
alias ls='ls --color=auto'
alias l='ls'
alias la='ls -A'
alias ll='ls -l'
alias units='units --verbose'
alias trr='transmission-remote'
alias g='git'
alias rg='rg -S'
alias timestamp='date "+%Y-%m-%d_%H-%M-%S"'
screenshot() {
local ts="$(timestamp)"
local f="${HOME}/images/screenshots/${ts}.png"
import "$f"
echo "$f"
}