Copied i3blocks scripts from orig dir

Some were modified from original but can't be bothered to check which.
'backlight' is custom. Changed both PC/laptop i3blocks config to
reference new i3blocks-scripts location.

system: Fixed keyboard repeat rate for PC/laptop.
Git: Added amending commit and forcing push aliases.
i3: Changed '$mod+F[1-3]' mappings to just 'F[1-3]'.
This commit is contained in:
2018-03-08 06:37:28 -05:00
parent a4d1cd0776
commit c87546e75c
18 changed files with 488 additions and 27 deletions

View File

@@ -71,7 +71,7 @@ alias vr="ni ~/.config/ranger/rc.conf"
# i3 {{{ #
alias v3="ni ~/.config/i3/config"
alias v3b="ni ~/.config/i3blocks/i3blocks.conf"
alias i3b="f /usr/share/i3blocks"
alias i3b="f ~/i3blocks"
alias pipes="pipes.sh -t 2"
alias bgs="nemo ~/Pictures/Backgrounds"
@@ -91,6 +91,7 @@ alias rg="ranger"
function ok() { okular $1 ; }
function chr() { google-chrome $1 ; }
function ni() { nvim $1 ; }
alias nisw="f ~/.local/share/nvim/swap"
# function mrk() { pandoc -o ${1%.*}.html $1 && chr ${1%.*}.html ; }
function mrk() { pandoc -o ${1%.*}.html $1 ; }
@@ -202,7 +203,7 @@ if [[ "$(hostname)" = "X1-Carbon" ]]; then
# }}} key swaps #
alias gbl="xbacklight -get"
function sbl() { xbacklight -set $(echo "scale=2;$1*10" | bc) ; }
function bl() { xbacklight -set $(echo "scale=2;$1*10" | bc) ; }
alias thn="thunar ."
@@ -242,10 +243,12 @@ alias gst="git stash"
alias gstp="git stash pop"
alias gc="git commit"
alias gcam="git commit --amend"
# todo: fix
function gcm(){ echo git commit -m \""$1"\" ; }
alias gps="git push"
alias gpsfrc="git push --force"
alias gdwip="git push -d origin wip && git branch -d wip"
alias gclear="git stash clear"
# }}} push #