furry.theme 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. #########################################################################
  2. # #
  3. # Furry - An Irssi theme by Cene #
  4. # Contact: Cene @ IRCnet, Qnet, Netgamers, Gamesurge #
  5. # Idle #ppyo @ Gamesurge kthx >;) #
  6. # I hope you enjoy this theme as much as I did creating it #
  7. # #
  8. #########################################################################
  9. #
  10. # To use this theme, put it in your Irssi directory and use /set theme furry
  11. #
  12. #############################################################################
  13. # default foreground color (%N) - -1 is the "default terminal color"
  14. default_color = "-1";
  15. # print timestamp/servertag at the end of line, not at beginning
  16. info_eol = "false";
  17. # these characters are automatically replaced with specified color
  18. # (dark grey by default)
  19. replaces = { "[]=" = "%K$*%n"; };
  20. abstracts = {
  21. ##
  22. ## generic
  23. ##
  24. # text to insert at the beginning of each non-message line
  25. line_start = "%B-%W!%B-%n ";
  26. # timestamp styling, nothing by default
  27. timestamp = "$*";
  28. # any kind of text that needs hilighting, default is to bold
  29. hilight = "%_$*%_";
  30. # any kind of error message, default is bright red
  31. error = "%R$*%n";
  32. # channel name is printed
  33. channel = "%_$*%_";
  34. # nick is printed
  35. nick = "%_$*%_";
  36. # nick host is printed
  37. nickhost = "[$*]";
  38. # server name is printed
  39. server = "%_$*%_";
  40. # some kind of comment is printed
  41. comment = "[$*]";
  42. # reason for something is printed (part, quit, kick, ..)
  43. reason = "{comment $*}";
  44. # mode change is printed ([+o nick])
  45. mode = "{comment $*}";
  46. ##
  47. ## channel specific messages
  48. ##
  49. # highlighted nick/host is printed (joins)
  50. channick_hilight = "%C$*%n";
  51. chanhost_hilight = "{nickhost %c$*%n}";
  52. # nick/host is printed (parts, quits, etc.)
  53. channick = "%c$*%n";
  54. chanhost = "{nickhost $*}";
  55. # highlighted channel name is printed
  56. channelhilight = "%c$*%n";
  57. # ban/ban exception/invite list mask is printed
  58. ban = "%c$*%n";
  59. ##
  60. ## messages
  61. ##
  62. # the basic styling of how to print message, $0 = nick mode, $1 = nick
  63. msgnick = "%K<%w$0%n$1-%K>%n %|";
  64. # message from you is printed. "msgownnick" specifies the styling of the
  65. # nick ($0 part in msgnick) and "ownmsgnick" specifies the styling of the
  66. # whole line.
  67. # Example1: You want the message text to be green:
  68. # ownmsgnick = "{msgnick $0 $1-}%g";
  69. # Example2.1: You want < and > chars to be yellow:
  70. # ownmsgnick = "%Y{msgnick $0 $1-%Y}%n";
  71. # (you'll also have to remove <> from replaces list above)
  72. # Example2.2: But you still want to keep <> grey for other messages:
  73. # pubmsgnick = "%K{msgnick $0 $1-%K}%n";
  74. # pubmsgmenick = "%K{msgnick $0 $1-%K}%n";
  75. # pubmsghinick = "%K{msgnick $1 $0$2-%n%K}%n";
  76. # ownprivmsgnick = "%K{msgnick $*%K}%n";
  77. # privmsgnick = "%K{msgnick %R$*%K}%n";
  78. # $0 = nick mode, $1 = nick
  79. ownmsgnick = "{msgnick $0 $1-}";
  80. ownnick = "%W$*%n";
  81. # public message in channel, $0 = nick mode, $1 = nick
  82. pubmsgnick = "{msgnick $0 $1-}";
  83. pubnick = "%N$*%n";
  84. # public message in channel meant for me, $0 = nick mode, $1 = nick
  85. pubmsgmenick = "{msgnick $0 $1-}";
  86. menick = "%Y$*%n";
  87. # public highlighted message in channel
  88. # $0 = highlight color, $1 = nick mode, $2 = nick
  89. pubmsghinick = "{msgnick $1 $0$2-%n}";
  90. # channel name is printed with message
  91. msgchannel = "%K:%c$*%n";
  92. # private message, $0 = nick, $1 = host
  93. privmsg = "[%R$0%K(%r$1-%K)%n] ";
  94. # private message from you, $0 = "msg", $1 = target nick
  95. ownprivmsg = "[%R$0%K(%R$1-%K)%n] ";
  96. # own private message in query
  97. ownprivmsgnick = "{msgnick $*}";
  98. ownprivnick = "%W$*%n";
  99. # private message in query
  100. privmsgnick = "{msgnick %r$*%n}";
  101. ##
  102. ## Actions (/ME stuff)
  103. ##
  104. # used internally by this theme
  105. action_core = "%W * $*%n";
  106. # generic one that's used by most actions
  107. action = "{action_core $*} ";
  108. # own action, both private/public
  109. ownaction = "{action $*}";
  110. # own action with target, both private/public
  111. ownaction_target = "{action_core $0}%K:%c$1%n ";
  112. # private action sent by others
  113. pvtaction = "%W (*) $*%n ";
  114. pvtaction_query = "{action $*}";
  115. # public action sent by others
  116. pubaction = "{action $*}";
  117. ##
  118. ## other IRC events
  119. ##
  120. # whois
  121. whois = "%# $[8]0 : $1-";
  122. # notices
  123. ownnotice = "[%r$0%K(%R$1-%K)]%n ";
  124. notice = "%K-%M$*%K-%n ";
  125. pubnotice_channel = "%K:%m$*";
  126. pvtnotice_host = "%K(%m$*%K)";
  127. servernotice = "%g!$*%n ";
  128. # CTCPs
  129. ownctcp = "[%r$0%K(%R$1-%K)] ";
  130. ctcp = "%g$*%n";
  131. # wallops
  132. wallop = "%W$*%n: ";
  133. wallop_nick = "%n$*";
  134. wallop_action = "%W * $*%n ";
  135. # netsplits
  136. netsplit = "%R$*%n";
  137. netjoin = "%C$*%n";
  138. # /names list
  139. names_prefix = "";
  140. names_nick = "[%_$0%_$1-] ";
  141. names_nick_op = "{names_nick $*}";
  142. names_nick_halfop = "{names_nick $*}";
  143. names_nick_voice = "{names_nick $*}";
  144. names_users = "[%g$*%n]";
  145. names_channel = "%G$*%n";
  146. # DCC
  147. dcc = "%g$*%n";
  148. dccfile = "%_$*%_";
  149. # DCC chat, own msg/action
  150. dccownmsg = "[%r$0%K($1-%K)%n] ";
  151. dccownnick = "%R$*%n";
  152. dccownquerynick = "%W$*%n";
  153. dccownaction = "{action $*}";
  154. dccownaction_target = "{action_core $0}%K:%c$1%n ";
  155. # DCC chat, others
  156. dccmsg = "[%G$1-%K(%g$0%K)%n] ";
  157. dccquerynick = "%G$*%n";
  158. dccaction = "%W (*dcc*) $*%n %|";
  159. ##
  160. ## statusbar
  161. ##
  162. # default background for all statusbars. You can also give
  163. # the default foreground color for statusbar items.
  164. sb_background = "%n%w";
  165. # default backround for "default" statusbar group
  166. #sb_default_bg = "%4";
  167. # background for prompt / input line
  168. sb_prompt_bg = "%n";
  169. # background for info statusbar
  170. sb_info_bg = "%8";
  171. # background for topicbar (same default)
  172. #sb_topic_bg = "%4";
  173. # text at the beginning of statusbars. sb-item already puts
  174. # space there,so we don't use anything by default.
  175. sbstart = "";
  176. # text at the end of statusbars. Use space so that it's never
  177. # used for anything.
  178. sbend = " ";
  179. topicsbstart = "{sbstart $*}";
  180. topicsbend = "{sbend $*}";
  181. prompt = "[$*] ";
  182. sb = "%c[%n$*%c]%n";
  183. sbmode = "(%c+%n$*)";
  184. sbaway = " (%GzZzZ%n)";
  185. sbservertag = ":$0";
  186. sbnickmode = "$0";
  187. # activity in statusbar
  188. # ',' separator
  189. sb_act_sep = "%c$*";
  190. # normal text
  191. sb_act_text = "%c$*";
  192. # public message
  193. sb_act_msg = "%W$*";
  194. # hilight
  195. sb_act_hilight = "%C$*";
  196. # hilight with specified color, $0 = color, $1 = text
  197. sb_act_hilight_color = "$0$1-%n";
  198. };