rhowaldt

rhowaldt.moctheme

Sep 20th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.51 KB | None | 0 0
  1. # Thank you Gutterslob & pvsage from #! forums!
  2. # Example color theme for MOC.
  3. # You can use a theme by copying it to ~/.moc/themes directory and using
  4. # Theme config option or -T command line option.
  5. #
  6. # Fill free to make your own themes and send me them. It will be included in
  7. # official MOC releases or on the MOC web site.
  8. #
  9. # The format of this file is:
  10. # Lines beginning with # are comments.
  11. # Blank lines are ignored.
  12. # Every other line is expected to be in format:
  13. #
  14. # ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]]
  15. #
  16. # or
  17. #
  18. # colordef COLOR = RED GREEN BLUE
  19. #
  20. # Where names are case insensitive.
  21. #
  22. # ELEMENT is an element of MOC interface. This can be:
  23. # background - default background for regions when nothing is displayed
  24. # frame - frames for windows
  25. # window_title - the title of the window (eg name of the current
  26. # directory)
  27. # directory - a directory in the menu
  28. # selected_directory - a directory that is selected using arrows
  29. # playlist - playlist file
  30. # selected_playlist - see selected directory
  31. # file - an ordinary file in the menu (mp3, ogg, ...)
  32. # selected_file - see selected directory
  33. # marked_file - a file that is currently being played
  34. # marked_selected_file - a file that is currently being played and is also
  35. # selected using arrows
  36. # info - information shown at the right side of files
  37. # selected_info - see selected directory
  38. # marked_info - a file (its time) that is currently being played
  39. # marked_selected_info - a file (its time) that is currently being played
  40. # and is also selected using arrows
  41. # status - the status line with a message
  42. # title - the title of the file that is currently being played
  43. # state - the state: play, stop, or paused (>, [], ||)
  44. # current_time - current time of playing
  45. # time_left - the time left to the end of playing the current file
  46. # total_time - the length of the currently played file
  47. # time_total_frames - the brackets outside the total time of a file ([10:13])
  48. # sound_parameters - the frequency and bitrate numbers
  49. # legend - "KHz" and "Kbps"
  50. # disabled - disabled element ([STEREO])
  51. # enabled - enabled element
  52. # empty_mixer_bar - "empty" part of the volume bar
  53. # filled_mixer_bar - "filled" part of the volume bar
  54. # empty_time_bar - "empty" part of the time bar
  55. # filled_time_bar - "filled" part of the time bar
  56. # entry - place wher user can type a search query or a file name
  57. # entry_title - the title of an entry
  58. # error - error message
  59. # message - information message
  60. # plist_time - total time of displayed items
  61. #
  62. # FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values:
  63. # black, red, green, yellow, blue, magenta, cyan, white, default (can be
  64. # transparent), grey (not standard, but works)
  65. #
  66. # Optional ATTRIBUTE parameters can be (from ncurses manual):
  67. # normal - default (no highlight)
  68. # standout - best highlighting mode of the terminal
  69. # underline - underlining
  70. # reverse - reverse video
  71. # blink - blinking
  72. # dim - half bright
  73. # bold - extra bright or bold
  74. # protect - protected mode
  75. #
  76. # You can specify a list of attributes separated by commas: attr1,attr2,attr3.
  77. # Don't use spaces anywhere in such a list.
  78. #
  79. # With colordef you can change the definition of a color. It works only if
  80. # your terminal supports it, if not those lines will be silently ignored.
  81. # COLOR must be a valid color name and the RED GREEN and BLUE are numbers
  82. # from 0 to 1000. Example:
  83. #
  84. # colordef red = 1000 0 0
  85. #
  86. # HINT: you have only 8 colors, but combined with attributes bold and/or
  87. # reversed you actually get more colors.
  88. #
  89. # If you don't specify some elements, the default values will be used.
  90. #
  91. # Replaces the default configuration:
  92.  
  93. background = default default
  94. frame = default default
  95. window_title = default default
  96. directory = blue default
  97. selected_directory = blue default reverse
  98. playlist = default default
  99. selected_playlist = default default reverse
  100. file = default default
  101. selected_file = default default reverse
  102. marked_file = blue default bold
  103. marked_selected_file = blue default reverse
  104. info = default default
  105. selected_info = default default
  106. marked_info = blue default bold
  107. marked_selected_info = blue default bold
  108. status = default default
  109. title = blue default bold
  110. state = default default
  111. current_time = default default
  112. time_left = default default
  113. total_time = default default
  114. time_total_frames = default default
  115. sound_parameters = default default
  116. legend = default default
  117. disabled = default default
  118. enabled = blue default bold
  119. empty_mixer_bar = default default
  120. filled_mixer_bar = default blue bold
  121. empty_time_bar = default default
  122. filled_time_bar = default blue bold
  123. entry = default default
  124. entry_title = default default
  125. error = default default bold
  126. message = default default bold
  127. plist_time = default default
Advertisement
Add Comment
Please, Sign In to add comment