forked from Telodendria/Telodendria
16 lines
325 B
Bash
16 lines
325 B
Bash
#!/usr/bin/env sh
|
|
|
|
: "${PATCHES_ROOM:=!tyDHfIvAyfImrzOVVt:bancino.net}"
|
|
|
|
if [ -f "$(pwd)/.env" ]; then
|
|
. "$(pwd)/.env"
|
|
fi
|
|
|
|
if [ -z "$MXID" ]; then
|
|
MXID="@${USER}:$(hostname)"
|
|
fi
|
|
|
|
if [ -z "$DISPLAY_NAME" ] && which getent > /dev/null 2>&1; then
|
|
DISPLAY_NAME=$(getent passwd "$USER" | cut -d ':' -f 5 | cut -d ',' -f 1)
|
|
fi
|
|
|