diff --git a/config.json b/config.json
index c6018a789f33da83cdbeae962209414e2d8a3469..d1e18b842c171525e4e89e9efa9f197a41bf9a70 100644
--- a/config.json
+++ b/config.json
@@ -3,6 +3,8 @@   "instance": "soc.phreedom.club",
   "max_statuses": 40,
   "default_content_type": "text/markdown",
   "default_visibility": "unlisted",
+  "format_time": "+%d.%m.%Y %H:%M:%S",
+  "boost_symbol": "[>>]",
   "public_list_instances": [
     "outerheaven.club",
     "stereophonic.space",
diff --git a/pleroma-cli.sh b/pleroma-cli.sh
index 8af3e6e0749cff4b7e349356b92b911001f6d00f..014421b529445163b8511a2ec565bb17a5a5e849 100755
--- a/pleroma-cli.sh
+++ b/pleroma-cli.sh
@@ -6,7 +6,8 @@ instance_hist='instance.hist'
 max_statuses=$(jj -i config.json max_statuses)
 default_visibility=$(jj -i config.json default_visibility)
 default_content_type=$(jj -i config.json default_content_type)
-format_time='+%d.%m.%Y %H:%M:%S'
+format_time=$(jj -i config.json format_time)
+boost_symbol=$(jj -i config.json boost_symbol)
 
 mkdir -m 711 -p .app_sessions
 touch .auth.json
@@ -80,10 +81,18 @@ 	while [ $sub_menu_lvl -eq 1 ]; do
 		
 		while [ $indexator -gt 0 ]; do
 			status=$(echo $json | jj $indexator)
+			reblog=$(echo $status | jj reblog)
 			uri=$(echo $status | jj uri)
 			id_status=$(echo $status | jj id)
 			dateutc=$(echo $status | jj created_at)
+			reply_to_id=$(echo $status | jj in_reply_to_id)
 			echo "$(date -d $dateutc "$format_time") <$id_status> $uri"
+			if [ -n "$reply_to_id" ]; then
+				echo "Reply to: $reply_to_id"
+			fi
+			if [ -n "$reblog" ]; then
+				echo "$boost_symbol"
+			fi
 			echo $status | jj content | sed -e "s/<br[^>]*>/\n/g 
 			; s/<p[^>]*>/\n/g ; s/<[^>]*>//g 
 			; s/&gt;*/>/g ; s/&lt;*/</g ; s/&quot;/\"/g ; s/&#39;/'/g"      
