Quote:
Originally Posted by mr.w0lf
if in the mean time you can find the proper shell command you are welcome, as i have made some tries but no luck till now
|
Sure! I was thinking that values shoud be 0 or 1 but I was wrong. The property has to be set to true or false.
Activate refresh:
Code:
lipc-set-prop com.lab126.winmgr refreshOnTurn true
Deactivate refresh:
Code:
lipc-set-prop com.lab126.winmgr refreshOnTurn false
Reset to default refresh value (searches for onPageTurn line in proper file and trims off the part before the value; if the search succeeds the value is substituted; false otherwise to match the default value as suggested by ixtab):
Code:
lipc-set-prop com.lab126.winmgr refreshOnTurn $( { grep onPageTurn /var/local/java/prefs/com.amazon.ebook.framework/prefs || echo false ; } | sed 's/.*=//' )
I made some test and it works for me.