Changes between Version 1 and Version 2 of kde/ApplicationAccessRestrictions


Ignore:
Timestamp:
Nov 25, 2009, 1:54:01 PM (15 years ago)
Author:
Jörg Steffens
Comment:

restrict system settings

Legend:

Unmodified
Added
Removed
Modified
  • kde/ApplicationAccessRestrictions

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