1<?xml version="1.0" encoding="utf-8"?>
2<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" type="topic" style="task" id="extensions-enable" xml:lang="tr">
3
4  <info>
5    <link type="guide" xref="software#extension"/>
6    <link type="seealso" xref="extensions-lockdown"/>
7    <link type="seealso" xref="extensions"/>
8    <revision pkgversion="3.30" date="2019-02-08" status="review"/>
9
10    <credit type="author copyright">
11      <name>Petr Kovar</name>
12      <email>pknbe@volny.cz</email>
13      <years>2014</years>
14    </credit>
15    <credit type="author">
16      <name>Jana Svarova</name>
17      <email>jana.svarova@gmail.com</email>
18   </credit>
19
20    <include xmlns="http://www.w3.org/2001/XInclude" href="legal.xml"/>
21
22    <desc>Enable GNOME Shell extensions for all users.</desc>
23  </info>
24
25  <title>Enable machine-wide extensions</title>
26
27  <p>To make extensions available to all users on the system, install them in
28  the <file>/usr/share/gnome-shell/extensions</file> directory. Note that
29  newly-installed machine-wide extensions are disabled by default.</p>
30
31  <p>You need to set the <code>org.gnome.shell.enabled-extensions</code> key in
32  order to set the default enabled extensions. However, there is currently no
33  way to enable additional extensions for users who have already logged in. This
34  does not apply for existing users who have installed and enabled their own
35  GNOME extensions.</p>
36
37  <steps>
38    <title>Setting the org.gnome.shell.enabled-extensions key</title>
39    <item>
40      <p>Create a <code>user</code> profile in
41      <file>/etc/dconf/profile/user</file>:</p>
42      <listing>
43        <code>
44user-db:user
45system-db:local
46</code>
47      </listing>
48    </item>
49    <item>
50      <p>Create a <code>local</code> database for machine-wide settings in
51      <file>/etc/dconf/db/local.d/00-extensions</file>:</p>
52      <listing>
53        <code>
54[org/gnome/shell]
55# List all extensions that you want to have enabled for all users
56enabled-extensions=['<input>myextension1@myname.example.com</input>', '<input>myextension2@myname.example.com</input>']
57</code>
58      </listing>
59      <p>The <code>enabled-extensions</code> key specifies the enabled
60      extensions using the extensions’ uuid
61      (<code>myextension1@myname.example.com</code> and
62      <code>myextension2@myname.example.com</code>).</p>
63    </item>
64    <include xmlns="http://www.w3.org/2001/XInclude" href="dconf-snippets.xml" xpointer="xpointer(/*/*[@xml:id='dconf-update'])"/>
65  </steps>
66
67</page>
68