diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2009-04-27 02:54:43 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2009-04-27 02:54:43 +0000 |
commit | ddd175a2f2cb043f553758c660c46b6f503bf545 (patch) | |
tree | e70709e7b72a85f7b39bc325a4ade497a3286831 /config/illume | |
parent | f7b1ad0f9b5562732d1c1b9f76a6f692adadb294 (diff) | |
download | enlightenment-ddd175a2f2cb043f553758c660c46b6f503bf545.tar.gz enlightenment-ddd175a2f2cb043f553758c660c46b6f503bf545.tar.xz enlightenment-ddd175a2f2cb043f553758c660c46b6f503bf545.zip |
Ask to enter presentation mode.
If you deactivate screensaver (ie: move mouse) or unlock desklock
within some given threshold, ask user if he would like to enter
presentation mode or even if should increase timeout to next event.
This is also useful when at the office and you quickly move mouse in
order to keep your explanation. If you know your explanation is short,
just hit "increase timeout", otherwise "Yes" to increase timeout.
Increase timeout is a multiplier that will increment the factor on
each dialog answer.
There is an option to stop asking. This can be changed in "Advanced"
versions of screensaver and desklock dialogs.
SVN revision: 40414
Diffstat (limited to 'config/illume')
-rw-r--r-- | config/illume/e.src | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/illume/e.src b/config/illume/e.src index ca90890f0..865ec42d4 100644 --- a/config/illume/e.src +++ b/config/illume/e.src @@ -1,5 +1,5 @@ group "E_Config" struct { - value "config_version" int: 65841; + value "config_version" int: 65842; value "show_splash" int: 1; value "init_default_theme" string: "default.edj"; value "desktop_default_name" string: "Desktop %i, %i"; @@ -660,6 +660,8 @@ group "E_Config" struct { value "desklock_autolock_idle" int: 0; value "desklock_autolock_idle_timeout" double: 300.0000000000000000000000000; value "desklock_use_custom_desklock" int: 0; + value "desklock_ask_presentation" uchar 1; + value "desklock_ask_presentation_timeout" double: 30; value "display_res_restore" int: 0; value "display_res_width" int: 1; value "display_res_height" int: 1; @@ -670,6 +672,8 @@ group "E_Config" struct { value "screensaver_interval" int: 5; value "screensaver_blanking" int: 2; value "screensaver_expose" int: 2; + value "screensaver_ask_presentation" uchar 1; + value "screensaver_ask_presentation_timeout" double: 30; value "dpms_enable" int: 0; value "dpms_standby_enable" int: 0; value "dpms_suspend_enable" int: 0; |