version command fixed
[rainbowstream.git] / rainbowstream / colorset / config
... / ...
CommitLineData
1{
2 // After 120 minutes, the stream will automatically hangup
3 "HEARTBEAT_TIMEOUT" : 120,
4 // Image on term
5 "IMAGE_ON_TERM" : false,
6 // Resize image to fit on terminal view
7 "IMAGE_RESIZE_TO_FIT" : false,
8 // Themes
9 "THEME" : "monokai",
10 // Ascii Art
11 "ASCII_ART" : true,
12 // Hide promt when receive a tweet
13 "HIDE_PROMPT" : true,
14 // Prefix
15 "PREFIX" : "#owner#place#me#keyword",
16 // 'search': search type ('mixed','recent','popular')
17 "SEARCH_TYPE" : "mixed",
18 // 'search': search max result, number over 100 will fallback to 100
19 "SEARCH_MAX_RECORD" : 5,
20 // 'home': default number of home's tweets
21 "HOME_TWEET_NUM" : 5,
22 // 'allrt': default number of retweets
23 "RETWEETS_SHOW_NUM" : 5,
24 // 'conversation': max tweet in a thread
25 "CONVERSATION_MAX" : 30,
26 // 'quote' format
27 "QUOTE_FORMAT" : "#comment RT #owner: #tweet",
28 // 'thread' meta format
29 "THREAD_META_LEFT" : "(#id) #clock",
30 "THREAD_META_RIGHT" : "#clock (#id)",
31 // 'thread' frame's minimum width
32 "THREAD_MIN_WIDTH" : 20,
33 // 'Notification' format
34 "NOTIFY_FORMAT" : " #source_user #notify #clock",
35 // 'inbox','sent': default number of direct message
36 "MESSAGES_DISPLAY" : 5,
37 // 'trend': max trending topics
38 "TREND_MAX" : 10,
39 // List home timeline max
40 "LIST_MAX" : 5,
41 // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
42 "ONLY_LIST" : [],
43 "IGNORE_LIST" : [],
44 // Autocomplete history file name
45 "HISTORY_FILENAME" : "completer.hist",
46 // Image margin
47 "IMAGE_SHIFT" : 2,
48 // Image max height
49 "IMAGE_MAX_HEIGHT" : 90,
50 // Seconds to wait before displaying another tweet, will drop all tweets while waiting.
51 "STREAM_DELAY" : 0,
52 // Stream config
53 "USER_DOMAIN" : "userstream.twitter.com",
54 "PUBLIC_DOMAIN" : "stream.twitter.com",
55 "SITE_DOMAIN" : "sitestream.twitter.com",
56 // Format
57 "FORMAT": {
58 "TWEET": {
59 "CLOCK_FORMAT" : "%Y/%m/%d %H:%M:%S",
60 "DISPLAY" : "\n #name #nick #clock \n \u20AA:#rt_count \u2665:#fa_count id:#id via #client #fav\n #tweet"
61 },
62 "MESSAGE": {
63 "CLOCK_FORMAT" : "%Y/%m/%d %H:%M:%S",
64 "DISPLAY" : "\n #sender_name #sender_nick #to #recipient_name #recipient_nick :\n #clock message_id:#id\n #message"
65 }
66 }
67}