on - NO #
off - with #
Not really... the # just indicates that the line is a comment, so when the application read the S00-custom file, it skips every line that starts with a #
removing the line "activates" that line.
Those variable are stored on a file that is read at boot-up...
so the way to turn off a feature would be to use the "reverse" value of the variable
example:
- Code: Select all
config_tool -c VIDMSHEET=ON
sets variable VIDMSHEET to value ON
if you put the # in front of the line... the value in the configuration file will stay at ON and that feature will still be activated
so you will need to change the line to
- Code: Select all
config_tool -c VIDMSHEET=OFF
doing this, sets the variable VIDMSHEET to the value OFF... so turning off the feature....
Same thing with the rest of the variables in the S00-custom file...
some of them have a value of 1... "reverse" value would be 0
some variables takes a string.. like NTPSERVER, or USBICONS, or TIMEZONE
other only takes a certain value.. like MSHEETMODE can only be std, wall or sheet
LISTNUM can only be 4,6,8,10,11 or 12
hope this makes it a bit clearer for you