Changes between Version 27 and Version 28 of MovedToGitHub/EditConfigFiles
- Timestamp:
- Jun 4, 2009, 4:57:22 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MovedToGitHub/EditConfigFiles
v27 v28 7 7 === Overview === 8 8 9 GTK, CLI and Daemon (both on a Mac and Linux) use a [http://www.json.org/ JSON] formatted file . Mainly because of it's human readability. [[BR]]9 GTK, CLI and Daemon (both on a Mac and Linux) use a [http://www.json.org/ JSON] formatted file, mainly because of it's human readability. [[BR]] 10 10 (Consult the [http://www.json.org/ JSON] for detailed information) 11 11 … … 20 20 21 21 === Options === 22 ''Some keys are only valid for the current, or currently in development, version. Do scroll to the [#LegacyOptions next section] to check if the key you want to edit is listed there.23 22 ==== Advanced ==== 24 23 * '''encryption:''' Number (0 = Off, 1 = Preferred, 2 = Forced, default = 1) … … 74 73 * '''alt-speed-time-day:''' Number/bitfield (default = 127, all days) 75 74 * Start with 0, then for each day you want the scheduler enabled, add: 76 * '''Sunday''': 1 (binary: {{{ 1000000}}})77 * '''Monday''': 2 (binary: {{{0 100000}}})78 * '''Tuesday''': 4 (binary: {{{00 10000}}})75 * '''Sunday''': 1 (binary: {{{0000001}}}) 76 * '''Monday''': 2 (binary: {{{0000010}}}) 77 * '''Tuesday''': 4 (binary: {{{0000100}}}) 79 78 * '''Wednesday''': 8 (binary: {{{0001000}}}) 80 * '''Thursday''': 16 (binary: {{{00 00100}}})81 * '''Friday''': 32 (binary: {{{0 000010}}})82 * '''Saturday''': 64 (binary: {{{ 0000001}}})79 * '''Thursday''': 16 (binary: {{{0010000}}}) 80 * '''Friday''': 32 (binary: {{{0100000}}}) 81 * '''Saturday''': 64 (binary: {{{1000000}}}) 83 82 * Examples: 84 83 * '''Weekdays''': 62 (binary: {{{0111110}}})