#!/bin/sh # simply sources the shrc and runs a shell with that as its environment. # passes through all arguments that sh takes. to be used instead of sh. XDG_CONFIG_DIR=${XDG_CONFIG_DIR:="$HOME/.config"} . $XDG_CONFIG_DIR/shrc exec sh "$@"