Compare commits

...

3 Commits

Author SHA1 Message Date
stupidcomputer fa92bbee83 fix window border inconsistencies
across monitors, there an active monitor for each one. now, there's only
one active monitor displayed.
2024-04-10 21:19:25 -05:00
stupidcomputer ffc00b80b8 major changes to bashrc
This patch:
  - improves the ctrl+r recollection mechanism
  - sets vi mode on shell startup
2024-04-10 19:20:09 -05:00
stupidcomputer 5d80dbb1ca modify xset rate to reduce key repeats 2024-04-10 18:59:38 -05:00
3 changed files with 16 additions and 2 deletions

View File

@ -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\$ "

View File

@ -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

View File

@ -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() {