Malheligi ekranon kiam uzanto estas neaktiva

You can make the computer screen dim after the computer has been idle (not used) for some period of time.

Malheligi ekranon ĉe neaktiva komputilo

  1. Kreu la profilon user, kiu enhavas la jenajn liniojn:

    /etc/dconf/profile/user

    user-db:user
    system-db:local

    local estas la nomo de dconf datumbazo.

  2. Create the directory /etc/dconf/db/local.d/ if it does not already exist.

  3. Create the key file /etc/dconf/db/local.d/00-power to provide information for the local database.

    /etc/dconf/db/local.d/00-power

    # Specify the dconf path
    [org/gnome/settings-daemon/plugins/power]
    
    # Enable screen dimming
    idle-dim=true
    
    # Set brightness after dimming
    idle-brightness=30
  4. Create the key file /etc/dconf/db/local.d/00-session to provide information for the local database.

    /etc/dconf/db/local.d/00-session

    # Specify the dconf path
    [org/gnome/desktop/session]
    
    # The number of seconds of inactivity before the session is considered idle
    idle-delay=uint32 300

    Vi devas inkluzivi uint32 kune kun la entjeraj ŝlosilvaloroj kiel montrite.

  5. To prevent the user from overriding these settings, create the file /etc/dconf/db/local.d/locks/power-saving with the following content:

    /etc/dconf/db/local.d/locks/power-saving

    # Lock screen dimming and idle timeout
    /org/gnome/settings-daemon/plugins/power/idle-dim
    /org/gnome/settings-daemon/plugins/power/idle-brightness
    /org/gnome/desktop/session/idle-delay

    If you want to let the user change these settings, skip this step.

  6. Ĝisdatigu la sistemajn datumbazojn:

    # dconf update
  7. Uzantoj devas elsaluti kaj denove ensaluti antaŭ ol la tutsistemaj agordoj efektiviĝas.