You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

action 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # This is a DMDirc configuration file.
  2. # Written on: Sun Nov 25 13:32:18 GMT 2007
  3. # This section indicates which sections below take key/value
  4. # pairs, rather than a simple list. It should be placed above
  5. # any sections that take key/values.
  6. keysections:
  7. condition 0
  8. concurrency
  9. metadata
  10. setting 0
  11. setting 1
  12. setting 2
  13. setting 3
  14. setting 4
  15. triggers:
  16. CHANNEL_ACTION
  17. response:
  18. /notify $textcolour
  19. condition 0:
  20. argument=0
  21. component=CHANNEL_COLOUR
  22. target=$highlightcolour
  23. comparison=COLOUR_NEQUALS
  24. concurrency:
  25. group=windowcolours
  26. metadata:
  27. description=Changes the colour of channel window names in the treeview (or other frame manager) when events occur.
  28. author=Chris <chris@dmdirc.com>
  29. version=10
  30. component=7
  31. setting 0:
  32. type=COLOUR
  33. setting=highlightcolour
  34. title=Highlight colour
  35. tooltip=Colour to use when you have been highlighted
  36. default=4
  37. setting 1:
  38. type=COLOUR
  39. setting=textcolour
  40. title=Text colour
  41. tooltip=Colour to use when someone speaks or sends an action
  42. default=12
  43. setting 2:
  44. type=COLOUR
  45. setting=eventcolour
  46. title=Event colour
  47. tooltip=Colour to use when someone joins, parts, quits, etc
  48. default=3
  49. setting 3:
  50. type=COLOUR
  51. setting=misccolour
  52. title=Misc. colour
  53. tooltip=Colour to use for other miscellaneous lines
  54. default=2
  55. setting 4:
  56. type=TEXT
  57. setting=highlightregex
  58. title=Highlight regex
  59. tooltip=Regular expression to use for matching highlights
  60. default=(?i).*\\\\Q${SERVER_MYNICKNAME}\\\\E.*
  61. # Note: \Q..\E is the regex markup to quote the contents
  62. # The actions substitutor escapes with \, so we need \\Q..\\E
  63. # Config files also allow escapes with \, so we end up with \\\\Q..\\\\E