dotfiles/getenv.sh
2023-06-12 14:30:20 -04:00

9 lines
110 B
Bash

#!/usr/bin/env bash
if [ ! -f ~/.env ] ; then
cat << EOF >> ~/.env
USER="$USER"
SERV_COLOR="${1:-32}"
EOF
fi