dotfiles/getenv.sh
2023-03-16 15:46:03 -04:00

9 lines
102 B
Bash

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