dotfiles/getenv.sh

9 lines
102 B
Bash
Raw Normal View History

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