my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rework bash history, recolor some things

+8 -4
+1 -1
.config/sway/config
··· 254 254 255 255 colors { 256 256 statusline #89CFF0 257 - focused_workspace #97f0a6 #97f0a6 #000000 257 + focused_workspace #89cff0 #89cff0 #000000 258 258 background #000000 259 259 inactive_workspace #32323200 #32323200 #5c5c5c 260 260 }
+7 -3
.rc
··· 2 2 3 3 PS1='$(prompt) \$ ' 4 4 5 - # make history infinite, dedup'd, and sync'd between terms 5 + 6 + # this is a story all about how 7 + # history control in bash sucks 6 8 HISTFILE=~/.sh_eternal_history 7 - HISTFILESIZE=infinite 9 + HISTSIZE= 8 10 HISTCONTROL=ignoredups:erasedups 9 11 shopt -s histappend 10 - PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r" 12 + 13 + # # reload history on every prompt invocation 14 + # PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'}history -a; history -c; history -r" 11 15 12 16 # extend pa for git stuffs 13 17 # meh i don't like this at all tbh