| 61 | == Restrict Access to Systemsettings == |
| 62 | |
| 63 | to disable configuration item from systemsettings, |
| 64 | perform the former specified actions on share/kde4/services/settings-NAME. |
| 65 | This can also be done in a KDE-profile. |
| 66 | |
| 67 | === Get List of configuraton modules === |
| 68 | |
| 69 | {{{ |
| 70 | kcmshell4 --list |
| 71 | }}} |
| 72 | |
| 73 | === Example: disable configuration module display === |
| 74 | |
| 75 | assume using the KDE-Profile /var/lib/kde-profiles/vermkv_kiosk/ |
| 76 | |
| 77 | Create config file ''/var/lib/kde-profiles/vermkv_kiosk/share/kde4/services/settings-display.desktop'': |
| 78 | {{{ |
| 79 | [Desktop Entry] |
| 80 | TryExec=/bin/false |
| 81 | }}} |
| 82 | |
| 83 | or if it should be depend on the environment: |
| 84 | {{{ |
| 85 | [Desktop Entry] |
| 86 | Hidden[$e]=$(if test -e /tmp/flagfile_example; then echo "false"; else echo "true"; fi) |
| 87 | }}} |