Update .aliases.sh and bspwmrc

This commit is contained in:
Donovan Glover 2018-03-02 23:58:19 -05:00
parent e69ea9fa14
commit 8327e48c44
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D
2 changed files with 7 additions and 4 deletions

View File

@ -69,13 +69,16 @@ alias g="git" # In case we ever need to type a full comman
alias ga="git add" # Swiftly add new files to the repository
alias gaa="git add --all" # Quickly add all the files changed in a repository
alias gap="git add --patch" # Commit a file one part at a time
alias gb="git branch --verbose" # Show a list of all the branches in the repository
alias gc="git commit -m" # Easily create new commits
alias gca="git commit --amend" # Easily amend previous commits
alias gd="git diff" # Show all file changes that you haven't added yet
alias gds="git diff --staged" # Show the changes you added but haven't committed yet
alias gg="git grep" # Easily grep for a string inside the git repository
alias gp="git push" # Push your commits to remote (usually origin)
alias gs="git status" # Compare any local changes you've made to the remote
alias gr="git reset HEAD~" # Undo the last commit but keep your changed files
alias gre="git remote --verbose" # Show all the remotes for the repository
alias grr="git reset --hard HEAD~" # Remove the last commit and all changes with it
alias gl="git lg" # Quickly show a list of the most recent commits

View File

@ -20,7 +20,7 @@ bspc rule -a feh state=floating
# while moving the mouse, similar to i3
bspc config focus_follows_pointer true
# Colors
#bspc config normal_border_color
#bspc config active_border_color
#bspc config focused_border_color
# [colors]
bspc config normal_border_color "#C0C5CE"
bspc config active_border_color "#FFFFFF"
bspc config focused_border_color "#FFFFFF"