diff options
author | Timo Sirainen <cras@irssi.org> | 2001-01-06 21:57:06 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-01-06 21:57:06 +0000 |
commit | 28465db59cccf491f390ff039c933830d4026a68 (patch) | |
tree | a9b1c026b6c06d4d5056c0d889d6b54f8588b4c9 /default.theme | |
parent | ba4b59d134e5117e53e77c39ac2f458e03e837ad (diff) | |
download | irssi-28465db59cccf491f390ff039c933830d4026a68.zip |
theme updates
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1078 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'default.theme')
-rw-r--r-- | default.theme | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/default.theme b/default.theme index da1056d5..c03b96be 100644 --- a/default.theme +++ b/default.theme @@ -1,3 +1,8 @@ +# When testing changes, the easiest way to reload the theme with /RELOAD. +# This reloads the configuration file too, so if you did any changes remember +# to /SAVE it first. Remember also that /SAVE overwrites the theme file with +# old data so keep backups :) + # these characters are automatically replaced with specified color replaces = { "[]<>=" = "%K$0-%n"; }; @@ -72,18 +77,28 @@ abstracts = { # message from you is printed. "msgownnick" specifies the styling of the # nick ($0 part in msgnick) and "ownmsgnick" specifies the styling of the - # whole line. For example if you want the message text to be in different - # color, green for example, add %g after ownmsgnick (if it were in - # msgownnick, you'd get green '>' char after nick too) + # whole line. + + # Example1: You want the message text to be green: + # ownmsgnick = "{msgnick $0-}%g"; + # Example2.1: You want < and > chars also be white: + # ownmsgnick = "%W{msgnick $0-}%n"; + # ownnick = "$0-"; + # (you'll also have to remove <> from replaces list above) + # Example2.2: But you still want to keep <> grey for other messages: + # pubmsgnick = "%K{msgnick $0-%K}%n"; + # pubmsgmenick = "%K{msgnick $0-%K}%n"; + # pubmsghinick = "%K{msgnick $1$0$2-%K}%n"; ownmsgnick = "{msgnick $0-}"; - msgownnick = "%W$0-%n"; + ownnick = "%W$0-%n"; # public message in channel pubmsgnick = "{msgnick $0-}"; + pubnick = "%w$0-%n"; # public message in channel meant for me pubmsgmenick = "{msgnick $0-}"; - msgme = "%Y$0-%n"; + menick = "%Y$0-%n"; # public highlighted message in channel # $0 = highlight color, $1 = nick mode (@, +), $2 = nick @@ -98,6 +113,10 @@ abstracts = { # private message from you, $0 = "msg", $1 = target nick ownprivmsg = "[%r$0%K(%R$1-%K)%n] "; + # own private message in query + ownprivmsgnick = "{msgnick $0-}"; + ownprivnick = "%W$0-%n"; + # private message in query privmsgnick = "{msgnick %R$0-%n}"; |