diff --git a/config.json b/config.json
index ab4bb6f..1120656 100644
--- a/config.json
+++ b/config.json
@@ -1 +1 @@
-{"site":"https://botsin.space"}
\ No newline at end of file
+{"site":"https://botsin.space","cw":null}
diff --git a/gen.py b/gen.py
index af6e8e3..a07dcce 100755
--- a/gen.py
+++ b/gen.py
@@ -30,9 +30,9 @@ if __name__ == '__main__':
 			if toot['media'] != None:
 				mediaID = client.media_post(toot['media'], description = toot['toot'])
 				client.status_post(toot['toot'].replace("\n", " "),
-					media_ids = [mediaID], visibility = "unlisted")
+					media_ids = [mediaID], visibility = "unlisted", spoiler_text = cfg['cw'])
 			else:
-				client.status_post(toot['toot'], visibility = 'unlisted')
+				client.status_post(toot['toot'], visibility = 'unlisted', spoiler_text = cfg['cw'])
 		except Exception as err:
 			toot = {
 			"toot":
diff --git a/reply.py b/reply.py
index f4845de..36a5c0f 100755
--- a/reply.py
+++ b/reply.py
@@ -49,7 +49,7 @@ class ReplyListener(mastodon.StreamListener):
 			visibility = notification['status']['visibility']
 			if visibility == "public":
 				visibility = "unlisted"
-			client.status_post(toot, post_id, visibility=visibility)
+			client.status_post(toot, post_id, visibility=visibility, spoiler_text = cfg['cw'])
 			print("replied with " + toot)
 
 rl = ReplyListener()