diff --git a/config.json b/config.json
index d1e18b842c171525e4e89e9efa9f197a41bf9a70..11b48f2a79cb0e765d3d747063db457ea4c294b5 100644
--- a/config.json
+++ b/config.json
@@ -5,6 +5,7 @@   "default_content_type": "text/markdown",
   "default_visibility": "unlisted",
   "format_time": "+%d.%m.%Y %H:%M:%S",
   "boost_symbol": "[>>]",
+  "reversed_statuses": false,
   "public_list_instances": [
     "outerheaven.club",
     "stereophonic.space",
diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index b87ebbd27f01b924ab8d3d35afcd16f4c3438eab..aea9de0890293be1eaa8e4c181943e6e969423f3 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -10,6 +10,7 @@ default_visibility=$(jj -i config.json default_visibility)
 default_content_type=$(jj -i config.json default_content_type)
 format_time=$(jj -i config.json format_time)
 boost_symbol=$(jj -i config.json boost_symbol)
+reversed_statuses=$(jj -i config.json reversed_statuses)
 
 #[AUTH SECTION]
 mkdir -m 711 -p .app_sessions
@@ -305,6 +306,9 @@ }
 
 statuses_render()
 {
+	if [ "$reversed_statuses" = 'true' ]; then
+		ids_massive=$(echo $ids_massive | tr ' ' '\n' | tac | tr '\n' ' ')
+	fi
 	for i in $ids_massive; do
 		status=$(echo "$jsonmassive" | jj "#[id=$i]")
 		reblog=$(echo $status | jj reblog.id)
