···11#!/bin/sh
2233+# needed for sway
34if test -z "${XDG_RUNTIME_DIR}"; then
45 export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
56 if ! test -d "${XDG_RUNTIME_DIR}"; then
···10111112export EDITOR=vim
1213export PS1='$(short-pwd)$ '
1313-export HISTFILESIZE=10000
14141515export PASH_KEYID=j3s@c3f.net
1616export PASH_DIR="$HOME/.password-store"
···1919alias vi=vim
2020alias gj='git add . ; git commit -m "*" ; git push'
21212222-# mksh
2323-if echo "$SHELL" | grep -q "mksh"; then
2424- bind '^L=clear-screen'
2525- export HISTFILE="$HOME/.mksh-history"
2626-fi
2727-2828-# launch alacritty with no GPU support if on old hardware
2222+# launch alacritty with no GPU support if on old thinkpad
2923if [ "$(hostname)" == 'nyx' ]; then
3024 export LIBGL_ALWAYS_SOFTWARE=1
3125fi