/usr/share/help/ko/system-admin-guide/power-dim-screen.page is in gnome-user-docs-ko 3.28.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | <?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" type="topic" style="task" id="power-dim-screen" xml:lang="ko">
<info>
<link type="guide" xref="user-settings"/>
<link type="seealso" xref="dconf-profiles"/>
<link type="seealso" xref="dconf-lockdown"/>
<revision pkgversion="3.12" date="2014-06-20" status="candidate"/>
<credit type="author copyright">
<name>Matthias Clasen</name>
<email>matthias.clasen@gmail.com</email>
<years>2012</years>
</credit>
<credit type="editor">
<name>Jana Svarova</name>
<email>jana.svarova@gmail.com</email>
<years>2013</years>
</credit>
<credit type="editor">
<name>Petr Kovar</name>
<email>pknbe@volny.cz</email>
<years>2014</years>
</credit>
<credit type="editor">
<name>Ekaterina Gerasimova</name>
<email>kittykat3756@gmail.com</email>
<years>2014</years>
</credit>
<desc>사용자가 유휴 상태일 때 일정 시간이 지나면 화면이 어두워지도록 하게 합니다.</desc>
</info>
<title>사용자가 유휴 상태일때 화면 어두워짐</title>
<p>컴퓨터가 몇 초간 유휴 상태일 때(사용되지 않을 때) 화면을 어둡게 설정 할 수 있습니다.</p>
<steps>
<title>유휴 상태 컴퓨터 화면 어두워짐</title>
<include xmlns="http://www.w3.org/2001/XInclude" href="dconf-snippets.xml" xpointer="xpointer(/*/*[@xml:id='dconf-profile-user'])"/>
<include xmlns="http://www.w3.org/2001/XInclude" href="dconf-snippets.xml" xpointer="xpointer(/*/*[@xml:id='dconf-profile-user-dir'])"/>
<item>
<p><sys>local</sys> 데이터베이스의 정보를 제공하기 위해 키 파일 <file>/etc/dconf/db/local.d/00-power</file>를 생성하세요.</p>
<listing>
<title><file>/etc/dconf/db/local.d/00-power</file></title>
<code>
# dconf 경로를 지정합니다
[org/gnome/settings-daemon/plugins/power]
# 화면 어두워짐 활성화
idle-dim=true
# 어두워질때 화면 밝기 조정
idle-brightness=30
</code>
</listing>
</item>
<item>
<p><sys>local</sys> 데이터베이스의 정보를 제공하기 위해 키 파일 <file>/etc/dconf/db/local.d/00-session</file>를 생성하세요.</p>
<listing>
<title><file>/etc/dconf/db/local.d/00-session</file></title>
<code>
# dconf 경로를 지정합니다
[org/gnome/desktop/session]
# 세션이 유휴 상태가 되기 전의 비활성화 시간(초)
idle-delay=uint32 300
</code>
</listing>
<p>보여지는 것처럼 정수 키 값과 함께 <code>uint32</code>를 포함해야 합니다.</p>
</item>
<item>
<p>이 설정을 사용자가 번복하는 것을 막기 위해, <file>/etc/dconf/db/local.d/locks/power-saving</file>에 다음 내용의 파일을 생성하세요:</p>
<listing>
<title><file>/etc/dconf/db/local.db/locks/power-saving</file></title>
<code>
# 잠금 화면 어두워짐과 유휴 시간 초과
/org/gnome/settings-daemon/plugins/power/idle-dim
/org/gnome/settings-daemon/plugins/power/idle-brightness
/org/gnome/desktop/session/idle-delay
</code>
</listing>
<p>사용자가 설정을 변경 할 수 있게 하려면, 이 단계는 건너뜁니다.</p>
</item>
<include xmlns="http://www.w3.org/2001/XInclude" href="dconf-snippets.xml" xpointer="xpointer(/*/*[@xml:id='dconf-update'])"/>
<include xmlns="http://www.w3.org/2001/XInclude" href="dconf-snippets.xml" xpointer="xpointer(/*/*[@xml:id='dconf-logoutin'])"/>
</steps>
</page>
|