Changes between Initial Version and Version 31 of Ticket #380
- Timestamp:
- 09/28/09 16:53:48 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #380
- Property Status changed from new to accepted
- Property Votes for changeset changed from to angel_il andrew_b
- Property Severity changed from to approved
- Property Cc pahan@… added
- Property Type changed from task to enhancement
- Property Component changed from mc-core to mc-skin
- Property Priority changed from minor to major
- Property Version changed from to master
- Property Milestone changed from future releases to 4.7.0-pre3
- Property Owner set to slavazanko
-
Ticket #380 – Description
initial v31 1 1 This just my thinks. We need to make simple work with color schemas in mc. 2 3 2 All following examples (commands out) just for simple understanding, not real :) 4 5 3 For example: 6 4 {{{ … … 8 6 standart.ini b&w.ini dark.ini 9 7 }}} 10 11 8 in ~/.mc/ini file: 12 9 {{{ … … 16 13 ... 17 14 }}} 18 19 15 But user may customize color scheme: 20 16 {{{ … … 24 20 ... 25 21 }}} 26 27 22 * if basename(skin) == skin, then file will be get from /usr/share/mc/skins directory. 28 23 Example of skin-file: … … 47 42 [viewer] 48 43 ... 49 50 44 [editor] 51 45 normal=lightgray;blue … … 55 49 ... 56 50 }}} 57 58 59 51 * Parameter '_default_' may be present in any section and MUST be present in [core] section; 60 52 * Value of '_default_' parameter in [core] section MUST contain definition of two colors: foreground and background. In other sections value of this parameter MAY contain definition of two colors; … … 62 54 * If some color in color pair don't specified, then this color will be taken from '_default_' parameter in current section; 63 55 * section name '[skin]' must be reserved for internal usage. All other section names will free for use (relative to source code). 64 65 56 Is this good idea?