mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-01 10:26:13 +02:00
Update .aliases.sh and bspwmrc
This commit is contained in:
parent
e69ea9fa14
commit
8327e48c44
@ -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 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 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 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 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 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 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 gg="git grep" # Easily grep for a string inside the git repository
|
||||||
alias gp="git push" # Push your commits to remote (usually origin)
|
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 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 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 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
|
alias gl="git lg" # Quickly show a list of the most recent commits
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ bspc rule -a feh state=floating
|
|||||||
# while moving the mouse, similar to i3
|
# while moving the mouse, similar to i3
|
||||||
bspc config focus_follows_pointer true
|
bspc config focus_follows_pointer true
|
||||||
|
|
||||||
# Colors
|
# [colors]
|
||||||
#bspc config normal_border_color
|
bspc config normal_border_color "#C0C5CE"
|
||||||
#bspc config active_border_color
|
bspc config active_border_color "#FFFFFF"
|
||||||
#bspc config focused_border_color
|
bspc config focused_border_color "#FFFFFF"
|
||||||
|
Loading…
Reference in New Issue
Block a user