my dotz
2
fork

Configure Feed

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

clean out old profile stuff, add gj

j3s b7e67062 0f77266e

+7 -8
+2 -8
.shinit
··· 1 1 #!/bin/sh 2 2 3 + # needed for sway 3 4 if test -z "${XDG_RUNTIME_DIR}"; then 4 5 export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir 5 6 if ! test -d "${XDG_RUNTIME_DIR}"; then ··· 10 11 11 12 export EDITOR=vim 12 13 export PS1='$(short-pwd)$ ' 13 - export HISTFILESIZE=10000 14 14 15 15 export PASH_KEYID=j3s@c3f.net 16 16 export PASH_DIR="$HOME/.password-store" ··· 19 19 alias vi=vim 20 20 alias gj='git add . ; git commit -m "*" ; git push' 21 21 22 - # mksh 23 - if echo "$SHELL" | grep -q "mksh"; then 24 - bind '^L=clear-screen' 25 - export HISTFILE="$HOME/.mksh-history" 26 - fi 27 - 28 - # launch alacritty with no GPU support if on old hardware 22 + # launch alacritty with no GPU support if on old thinkpad 29 23 if [ "$(hostname)" == 'nyx' ]; then 30 24 export LIBGL_ALWAYS_SOFTWARE=1 31 25 fi
+5
bin/gj
··· 1 + #!/bin/sh 2 + 3 + git add . 4 + git commit -m "*" 5 + git push