diff --git a/.cache/wget/wget-hsts b/.cache/wget/wget-hsts new file mode 100644 index 0000000..32f5c14 --- /dev/null +++ b/.cache/wget/wget-hsts @@ -0,0 +1,3 @@ +# HSTS 1.0 Known Hosts database for GNU Wget. +# Edit at your own risk. +# diff --git a/.config/bash/alias.sh b/.config/bash/alias.sh index 7480df1..4d56fd8 100644 --- a/.config/bash/alias.sh +++ b/.config/bash/alias.sh @@ -43,6 +43,9 @@ alias sixel='img2sixel' # quick to do alias todo="$EDITOR ~/todo.md" +# this is so that w3m uses the correct XDG config location +alias w3m="w3m -config ~/.config/w3m/config" + # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ls ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # # lsd instead of ls for colors/icons alias ls='lsd -a' @@ -74,7 +77,10 @@ alias gd='git diff' alias ga='git add .' alias gph='git push && git push --tags' alias gpl='git pull' -# can't spell git + +# typos +alias gitcommit='git commit' +alias gitadd='git add' alias gti='git' alias gtt='git' diff --git a/.config/bash/path.sh b/.config/bash/path.sh index bd22665..188d8a7 100644 --- a/.config/bash/path.sh +++ b/.config/bash/path.sh @@ -28,6 +28,7 @@ if [[ $(uname) == *"Linux"* ]]; then pip_packages="/home/linuxbrew/.linuxbrew/lib/python$PYTHON_VERSION/site-packages" fi +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Python ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # python default install location when you do: pip$PYTHON_VERSION install --user package export PATH=$PATH:$HOME/.local/bin:/usr/local/bin @@ -45,5 +46,10 @@ export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc GOROOT=$HOME export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin + +# ~~~~~~~~~~~~~~~~~~~~~~~~ other ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + # Make grade use XDG export GRADLE_USER_HOME=$XDG_DATA_HOME/gradle + +export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc" diff --git a/.w3m/config b/.config/w3m/config similarity index 100% rename from .w3m/config rename to .config/w3m/config diff --git a/.config/wget/wgetrc b/.config/wget/wgetrc new file mode 100644 index 0000000..67166e8 --- /dev/null +++ b/.config/wget/wgetrc @@ -0,0 +1 @@ +hsts-file = ~/.cache/wget/wget-hsts diff --git a/.local/bin/w3m-splits b/.local/bin/w3m-splits index f7535ec..30fd22d 100755 --- a/.local/bin/w3m-splits +++ b/.local/bin/w3m-splits @@ -32,7 +32,7 @@ async def main(connection): # send the command to the newly created split w3m = ("w3m -sixel -o auto_image=TRUE -o display_image=1 -T text/html" - f" -F {args.html_file} && exit \n") + f" -o confirm_qq=false -F {args.html_file} && exit \n") await right_pane.async_send_text(w3m)