dotfiles/getenv.sh

9 lines
110 B
Bash
Raw Normal View History

2023-06-12 14:30:20 -04:00
#!/usr/bin/env bash
if [ ! -f ~/.env ] ; then
cat << EOF >> ~/.env
USER="$USER"
2023-03-16 15:46:03 -04:00
SERV_COLOR="${1:-32}"
EOF
fi