summaryrefslogtreecommitdiff
path: root/.config/shell/aliasrc
blob: c1a2de982a980581662a57f6b08b8f17896a2376 (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
35
36
37
38
39
#!/bin/sh

# Add color to commands 
alias \
	diff="diff --color=auto" \
    dir="dir --color=auto" \
    vdir="vdir --color=auto" \
    egrep="egrep --color=auto" \
    fgrep="fgrep --color=auto" \
    grep="grep --color=auto" \
	ls="ls --group-directories-first --color=auto"

# Git
alias \
	g='git' \
	gd='git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'

# Shorten other commands
alias \
    ports="ss -tuanp" \
    py="python3" \
    rb="/usr/sbin/reboot" \
    sd="/usr/sbin/shutdown now" \
    sx="startx" \
    svm="sudo systemctl start libvirtd" \
    v="vim" \
    yta="youtube-dl -f bestaudio --download-archive ~/media/youtube/archive" \
    ytv="youtube-dl -f bestvideo[height\<=1080]+bestaudio/best[height\<=1080] --download-archive ~/media/youtube/archive" \
	z="zathura"

# Start commands with specific options always
alias \
	calcurse="calcurse -D ~/.config/calcurse" \
	cp="cp -iv" \
	ffmpeg="ffmpeg -hide_banner" \
    mv="mv -iv" \
    rm="rm -Iv"

source $XDG_CONFIG_HOME/shell/private-aliasrc