16 lines
428 B
Bash
16 lines
428 B
Bash
alias c.="codium ."
|
|
alias o="xdg-open"
|
|
alias trash="gio trash"
|
|
alias youtube-dl="yt-dlp"
|
|
|
|
alias dotfiles="git --git-dir $HOME/.dotfiles --work-tree $HOME"
|
|
alias gap="git add --patch"
|
|
alias gd="git diff"
|
|
alias gdc="git diff --cached"
|
|
alias gl="git log"
|
|
alias gls="git log --all --decorate --oneline --graph"
|
|
alias gs="git status"
|
|
|
|
alias clipboard-to-file="xclip -sel clip -o > $1"
|
|
alias file-to-clipboard="xclip -sel clip -i $1"
|