diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2013-12-21 10:59:23 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@samsung.com> | 2013-12-23 18:36:34 -0500 |
commit | 368b60a65719c2aec2706f8c39e0e960846d02c1 (patch) | |
tree | 56267209fc6ef0e0316fb490d48872f790cbd29c /config/standard | |
parent | c0d681462d1796baad2682bab8fe25f8b6461d41 (diff) | |
download | enlightenment-368b60a65719c2aec2706f8c39e0e960846d02c1.tar.gz |
feature: make desklock hookable, break out current desklock into module, move pam stuff to separate file
after this commit, the new module "lokker" (or other loaded module) is in charge of creating all graphics for the lock screen, and it will be added to the user's config. failure to load a lockscreen module will just result in a black screen
desklock subsystem now handles all the pre/post lock stuff while the modules themselves are responsible for creating visuals and calling auth functions to determine whether to unlock the screen
Diffstat (limited to 'config/standard')
-rw-r--r-- | config/standard/e.src | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/standard/e.src b/config/standard/e.src index 44b4a6d276..48fc3ece45 100644 --- a/config/standard/e.src +++ b/config/standard/e.src @@ -1054,6 +1054,12 @@ group "E_Config" struct { value "priority" int: 0; } group "E_Config_Module" struct { + value "name" string: "lokker"; + value "enabled" uchar: 1; + value "delayed" uchar: 0; + value "priority" int: 0; + } + group "E_Config_Module" struct { value "name" string: "notification"; value "enabled" uchar: 1; value "delayed" uchar: 1; |