From bef0b60ccd9a9622a7d3cd6a91bbd9b1c6ddb22e Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Sun, 14 Jun 2020 19:29:58 -0400 Subject: [PATCH] Changes --- git/.gitconfig | 3 +++ i3/.Xresources | 2 +- i3/.config/i3/config | 3 ++- i3/.config/i3/i3status.conf | 6 +++++- kak/.config/kak/kakrc | 2 +- shell/.bashrc | 5 +++++ 6 files changed, 17 insertions(+), 4 deletions(-) diff --git a/git/.gitconfig b/git/.gitconfig index 080144a..0aa3248 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -56,3 +56,6 @@ process = git-lfs filter-process [pager] branch = false +[user] + name = Austen Adler + email = agadler@austenadler.com diff --git a/i3/.Xresources b/i3/.Xresources index f1148b9..b1cbde8 100644 --- a/i3/.Xresources +++ b/i3/.Xresources @@ -25,7 +25,7 @@ URxvt.keysym.Control-Up: \033[1;5A URxvt.keysym.Control-Down: \033[1;5B URxvt.keysym.Control-Left: \033[1;5D URxvt.keysym.Control-Right: \033[1;5C -URxvt.perl-ext-common: default,keyboard-select +URxvt.perl-ext-common: "default, keyboard-select -searchable-scrollback" URxvt.keysym.M-Escape: perl:keyboard-select:activate *backarrowKey: false diff --git a/i3/.config/i3/config b/i3/.config/i3/config index 2910c31..5e458a8 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -27,6 +27,7 @@ bindsym $mod+d exec "~/.config/i3/run.sh run" # Misc shortcuts bindsym --release Num_Lock exec "xdotool key --clearmodifiers Shift+Insert;numlockx on" bindsym $mod+p exec "~/.config/i3/run.sh screenshot" +bindsym $mod+shift+p sticky toggle # Split in vertical orientation bindsym $mod+v split h # Split in horizontal orientation @@ -230,7 +231,7 @@ exec --no-startup-id /bin/zsh -c 'pidof syncthing||screen -dmS syncthing ~/bin/s # Start kdeconnect #exec --no-startup-id "~/bin/indicator-kdeconnect" # riot -exec --no-startup-id riot-web --hidden +# exec --no-startup-id riot-web --hidden # setxkbmap exec --no-startup-id setxkbmap -option caps:swapescape # vim: ts=2:sw=2:et diff --git a/i3/.config/i3/i3status.conf b/i3/.config/i3/i3status.conf index 38978f6..c60a22d 100644 --- a/i3/.config/i3/i3status.conf +++ b/i3/.config/i3/i3status.conf @@ -11,6 +11,7 @@ general { interval = 1 } order += "disk /" +order += "disk /home" order += "cpu_usage" order += "ethernet tun0" order += "wireless wlo1" @@ -48,7 +49,10 @@ battery 0 { low_threshold = 20 } disk "/" { - format = "%free" + format = "/: %free" +} +disk "/home" { + format = "/h: %free" } cpu_usage { format = "CPU: %usage" diff --git a/kak/.config/kak/kakrc b/kak/.config/kak/kakrc index 3fcad1e..5cf0250 100644 --- a/kak/.config/kak/kakrc +++ b/kak/.config/kak/kakrc @@ -41,7 +41,7 @@ plug "andreyorst/smarttab.kak" defer smarttab %{ set-option global softtabstop 4 } config %{ hook global WinSetOption filetype=(rust|markdown|kak|lisp|scheme|perl|c|cpp|java) expandtab - hook global WinSetOption filetype=(sh|makefile|gas) noexpandtab + hook global WinSetOption filetype=(go|sh|makefile|gas) noexpandtab } plug "andreyorst/fzf.kak" config %{ diff --git a/shell/.bashrc b/shell/.bashrc index 8862e86..df8f4d9 100644 --- a/shell/.bashrc +++ b/shell/.bashrc @@ -12,3 +12,8 @@ export EDITOR=kak [[ -f ~/.fzf.bash ]] && source ~/.fzf.bash command -v fasd >/dev/null && eval "$(fasd --init auto)" + +HISTSIZE= +HISTFILESIZE= + +alias v="fasd -fe kak"