-
Notifications
You must be signed in to change notification settings - Fork 1
/
aliases
38 lines (35 loc) · 1.05 KB
/
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
# Put these in your ~/.zshrc or ~/.bashrc
# You can also put them in any other file and source it. Eg:
# Put these in my myBashAiases and put this in your ~/.bashrc
# source /path/to/myBashAliases
#----------------------------------------------------
# Dotfile management
# Using https://github.com/RayZ0rr/DotsManBash
#----------------------------------------------------
if [[ -f ~/.local/bin/dotsgit ]] ; then
alias dg=dotsgit
alias dgs="dotsgit status"
alias dgy="dotsgit sync"
alias dgt="dotsgit drysync"
alias dgc="dotsgit commit"
alias dgcp="dotsgit commitP"
alias dgca="dotsgit commitA"
alias dgp="dotsgit push"
alias dgpp="dotsgit pushP"
alias dgpa="dotsgit pushA"
alias dgl="dotsgit log"
alias dglp="dotsgit logP"
alias dgla="dotsgit logA"
fi
if [[ -f ~/.local/bin/dotsinit ]] ; then
alias di=dotsinit
alias did="dotsinit dry"
alias dia="dotsinit all"
alias dil="dotsinit local"
alias dih="dotsinit home"
alias dic="dotsinit config"
alias dir="dotsinit rm"
fi
if [[ -f ~/.local/bin/myfonts ]] ; then
alias mf=myfonts
fi