aboutsummaryrefslogtreecommitdiff
path: root/config.sh.sample
blob: 247a3824dda69eda237b6b8f1074b4511d782515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Group the bot should monitor
export GSB_GROUP_ID=""
# Path where the bots data shoul be stored
export GSB_STORE_PATH="~/geldschieberbot"
# Command the bot uses to send responses
export GSB_SEND_CMD=""
# SIganl user the bot should use
export GSB_USER=""

# create GSB_STORE_PATH
if [[ ! -e "$GSB_STORE_PATH" ]]
then
	mkdir -p $GSB_STORE_PATH 2>/dev/null
fi