From 8327e48c44a6283a87e561f827d298259d40942e Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 2 Mar 2018 23:58:19 -0500 Subject: [PATCH] Update .aliases.sh and bspwmrc --- aliases/.aliases.sh | 3 +++ bspwm/.config/bspwm/bspwmrc | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/aliases/.aliases.sh b/aliases/.aliases.sh index 3b143a18..37d014c8 100644 --- a/aliases/.aliases.sh +++ b/aliases/.aliases.sh @@ -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 diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index c6221431..4dd7f75a 100644 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc @@ -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"