Changeset d6aa5ce


Ignore:
Timestamp:
10/15/2017 08:42:19 PM (7 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
a9c0e8d
Parents:
60ddbaf
Message:

sddm-0.16.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19329 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r60ddbaf rd6aa5ce  
    4747      <itemizedlist>
    4848        <listitem>
     49          <para>[pierre] - Update to sddm-0.16.0. Fixes
     50          <ulink url="&blfs-ticket-root;9865">#9865</ulink>.</para>
     51        </listitem>
     52        <listitem>
    4953          <para>[bdubbs] - Remove ninja, libffi, and python3 as dependencies
    5054          for many packages as they are now a part of LFS.</para>
  • packages.ent

    r60ddbaf rd6aa5ce  
    575575<!-- Chapter 26 -->
    576576<!ENTITY lxdm-version                 "0.5.3">
    577 <!ENTITY sddm-version                 "0.15.0">
     577<!ENTITY sddm-version                 "0.16.0">
    578578
    579579<!-- Chapter 27 -->
  • x/dm/sddm.xml

    r60ddbaf rd6aa5ce  
    55  %general-entities;
    66
    7   <!ENTITY sddm-download-http "https://github.com/sddm/sddm/releases/download/v&sddm-version;/sddm-&sddm-version;.tar.gz">
     7  <!ENTITY sddm-download-http "https://github.com/sddm/sddm/releases/download/v&sddm-version;/sddm-&sddm-version;.tar.xz">
    88  <!ENTITY sddm-download-ftp  " ">
    9   <!ENTITY sddm-md5sum        "ce07882e0c670e4ab94f849a9e6139b4">
    10   <!ENTITY sddm-size          "3.1 MB">
    11   <!ENTITY sddm-buildsize     "14 MB">
    12   <!ENTITY sddm-time          "0.4 SBU ">
     9  <!ENTITY sddm-md5sum        "b41182cc9d53d75485c112ab82dc95d0">
     10  <!ENTITY sddm-size          "3.2 MB">
     11  <!ENTITY sddm-buildsize     "20 MB">
     12  <!ENTITY sddm-time          "0.6 SBU ">
    1313]>
    1414
     
    130130    -i data/scripts/Xsession</userinput></screen>
    131131
     132    <para revision="sysv">
     133      For sddm-0.16.0, ConsoleKit support has been added, but is broken. Remove
     134      it with:
     135    </para>
     136<!-- This removes also logind support. Hopefully should be fixed for next
     137     version -->
     138<screen revision="sysv"><userinput>sed -e '/available.*true/s/true/false/' \
     139    -i src/daemon/LogindDBusTypes.cpp</userinput></screen>
     140
    132141    <para>
    133142      Install <application>SDDM</application> by running the following
     
    176185    <para revision="sysv">
    177186      <parameter>-DENABLE_JOURNALD=OFF</parameter>: This switch is used because
    178       BLFS does not support <application>systemd</application>.
     187      this version of BLFS does not support <application>systemd</application>.
    179188    </para>
    180189
     
    199208
    200209    <sect3 id="sddm-config">
    201       <title>Config File</title>
    202 
    203       <para>
    204         /etc/sddm.conf
    205       </para>
     210      <title>Config Files</title>
     211
     212      <para>
     213        /usr/lib/sddm/sddm.conf.d/*, /etc/sddm.conf.d/*, and /etc/sddm.conf
     214      </para>
     215
     216      <indexterm zone="sddm sddm-config">
     217        <primary sortas="e-usr-lib-sddm.conf.d">/usr/lib/sddm/sddm.conf.d</primary>
     218      </indexterm>
     219
     220      <indexterm zone="sddm sddm-config">
     221        <primary sortas="e-sddm.conf.d">/etc/sddm.conf.d</primary>
     222      </indexterm>
    206223
    207224      <indexterm zone="sddm sddm-config">
     
    210227
    211228      <para>
    212         This file is not installed with the build instructions, and
    213         default values are used by sddm. In order to generate the example
    214         <filename>sddm.example.conf</filename>, issue:
    215       </para>
    216 
    217 <screen><userinput>sddm --example-config > sddm.example.conf</userinput></screen>
    218 
    219       <note>
    220         <para>
    221           This command generates an <emphasis>example</emphasis> config file,
    222           which depends on several conditions of the system where it is
    223           generated. A few options are <emphasis>defaults</emphasis> from
    224           upstream.  If there is a previously installed
    225           <filename>/etc/sddm.conf</filename>, it will generate a replica. When
    226           it is generated during an X session, some session configurations are
    227           replicated, e.g. if the cursor from the Adwaita theme is already
    228           configured, you will obtain <emphasis>CursorTheme=Adwaita</emphasis>
    229           in the example file generated.
    230         </para>
    231       </note>
    232 
    233       <para>
    234         If there is no <filename>/etc/sddm.conf</filename> file yet, as the
    235         <systemitem class="username">root</systemitem> user, copy the example
    236         file to <filename>/etc/sddm.conf</filename>:
    237       </para>
    238 
    239 <screen role="root"><userinput>cp -v sddm.example.conf /etc/sddm.conf</userinput></screen>
     229        Only <filename>/etc/sddm.conf</filename> is installed, but the
     230        configuration files are read in the following order: all files in
     231        <filename class="directory">/usr/lib/sddm/sddm.conf.d</filename> in
     232        alphabetical order, then all files in <filename class="directory">
     233        /etc/sddm.conf.d</filename> in alphabetical order, and finally
     234        <filename>/etc/sddm.conf</filename>.
     235      </para>
    240236
    241237      <para>
     
    292288
    293289      <para>
    294         Install the <filename revision="sysv">/etc/rc.d/init.d/sddm</filename> init script from
    295         the <xref linkend="bootscripts" revision="sysv"/>
     290        Install the <filename revision="sysv">/etc/rc.d/init.d/sddm</filename>
     291        init script from the <xref linkend="bootscripts" revision="sysv"/>
    296292        <xref linkend="systemd-units" revision="systemd"/> package.
    297293      </para>
     
    473469
    474470      <para>
    475         Four themes are installed at <filename class="directory">
     471        Three themes are installed at <filename class="directory">
    476472        /usr/share/sddm/themes</filename>:
    477         circles,
    478473        elarun,
    479474        maldives, and
    480         maui.
    481         The default theme is <quote>maui</quote>. You can install other themes
    482         in that directory. In order to change the theme, you need to edit
    483         <filename>/etc/sddm.conf</filename>, using your preferred text editor,
    484         to change the default <quote>maui</quote> theme, replacing
    485         <quote>Current=maui</quote> by <quote>Current=<replaceable>&lt;insert
    486         new theme name here&gt;</replaceable></quote>, e.g.
     475        maya.
     476        There is also a default theme, which is not present in that directory.
     477        You can install other themes in that directory. In order to change the
     478        theme, you need to edit <filename>/etc/sddm.conf</filename>,
     479        to change the default (empty) theme, replacing <quote>Current=</quote>
     480        with <quote>Current=&lt;new theme&gt;</quote>, e.g.
    487481        <quote>Current=maldives</quote>.
    488482      </para>
Note: See TracChangeset for help on using the changeset viewer.