Compare commits
3 Commits
b7d5dff2e4
...
fa92bbee83
Author | SHA1 | Date |
---|---|---|
stupidcomputer | fa92bbee83 | |
stupidcomputer | ffc00b80b8 | |
stupidcomputer | 5d80dbb1ca |
|
@ -2,8 +2,22 @@
|
||||||
|
|
||||||
# some housekeeping
|
# some housekeeping
|
||||||
shopt -s autocd
|
shopt -s autocd
|
||||||
|
set -o vi # vim mode
|
||||||
alias ls="ls --color=auto"
|
alias ls="ls --color=auto"
|
||||||
alias ll="ls -lah --color=auto"
|
alias ll="ls -lah --color=auto"
|
||||||
|
function cd() {
|
||||||
|
builtin cd "$@" && ls --color=auto
|
||||||
|
}
|
||||||
|
|
||||||
|
# history
|
||||||
|
HISTCONTROL=ignorespace:ignoredups:erasedups
|
||||||
|
HISTFILESIZE=9999999999
|
||||||
|
HISTSIZE=9999999999
|
||||||
|
|
||||||
|
shopt -s cmdhist
|
||||||
|
shopt -s histreedit
|
||||||
|
shopt -s histappend
|
||||||
|
shopt -s histverify
|
||||||
|
|
||||||
PS1="\h:\w\$ "
|
PS1="\h:\w\$ "
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ bspc rule -a steam desktop=1
|
||||||
bspc rule -a discord desktop=2
|
bspc rule -a discord desktop=2
|
||||||
|
|
||||||
bspc config normal_border_color "#161510"
|
bspc config normal_border_color "#161510"
|
||||||
bspc config active_border_color "#727A18"
|
bspc config active_border_color "#161510"
|
||||||
bspc config focused_border_color "#727A18"
|
bspc config focused_border_color "#727A18"
|
||||||
|
|
||||||
bspc config pointer_follows_focus true
|
bspc config pointer_follows_focus true
|
||||||
|
|
|
@ -20,7 +20,7 @@ keyboard () {
|
||||||
xcape -e 'Super_L=Escape'
|
xcape -e 'Super_L=Escape'
|
||||||
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
|
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
|
||||||
xset -r 161 # tablet rotate key doesn't need repeat
|
xset -r 161 # tablet rotate key doesn't need repeat
|
||||||
xset r rate 200 40
|
xset r rate 200 80
|
||||||
}
|
}
|
||||||
|
|
||||||
find_card_pci() {
|
find_card_pci() {
|
||||||
|
|
Loading…
Reference in New Issue