all repos — dotfiles-extra @ e7b4874516df8a3f5886c29fff1d1ae88e86607a

extra configs that may be extraneous and/or may be platform specific

.config/sway/scripts/foot.sh

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
#!/bin/sh
# wrapper script for foot

USER_CONFIG_PATH="${HOME}/.config/foot/foot.ini"

if [ -f "$USER_CONFIG_PATH" ]; then
    USER_CONFIG=$USER_CONFIG_PATH
fi

foot -c "${USER_CONFIG:-"/usr/share/sway/templates/foot.ini"}" "$@" &