diff options
author | Gleb Popov <arrowd@FreeBSD.org> | 2020-02-12 15:31:25 +0000 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2020-02-12 15:31:25 +0000 |
commit | fe2b86d9f5f5b678eb68520f16e25eeffaf43a05 (patch) | |
tree | 9f4ca9f9b4054adc5c6cb7965cae9a2e0922c6fb /x11/sddm/files/patch-src_common_Configuration.h | |
parent | Update to 1.13.99.0 (diff) |
x11/sddm: Update to 0.18.1.
Upstream does not provide a config file anymore. SDDM still reads
/usr/local/etc/sddm.conf if it is present, but the intended way to configure
it now is using /usr/local/etc/sddm.conf.d/ directory. See man sddm.conf(5) for
details.
Also include a patch to make SDDM take /etc/login.conf into account.
PR: 241519
Submitted by: Martin Birgmeier <d8zNeCFG@aon.at> (login.conf patch)
Differential Revision: https://reviews.freebsd.org/D23579
Notes
Notes:
svn path=/head/; revision=525915
Diffstat (limited to 'x11/sddm/files/patch-src_common_Configuration.h')
-rw-r--r-- | x11/sddm/files/patch-src_common_Configuration.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/x11/sddm/files/patch-src_common_Configuration.h b/x11/sddm/files/patch-src_common_Configuration.h index ee0ed81ca738..ea9a01735fe9 100644 --- a/x11/sddm/files/patch-src_common_Configuration.h +++ b/x11/sddm/files/patch-src_common_Configuration.h @@ -6,14 +6,9 @@ Set the default theme and cursor theme to breeze, because sddm is most likely used together with Plasma. If they aren't available sddm falls back to a compiled-in theme. ---- src/common/Configuration.h.orig 2017-12-05 16:00:16 UTC +--- src/common/Configuration.h.orig 2019-03-13 09:22:35 UTC +++ src/common/Configuration.h -@@ -42,14 +42,14 @@ namespace SDDM { - Entry(Numlock, NumState, NUM_NONE, _S("Initial NumLock state. Can be on, off or none.\n" - "If property is set to none, numlock won't be changed\n" - "NOTE: Currently ignored if autologin is enabled.")); -- Entry(InputMethod, QString, QStringLiteral("qtvirtualkeyboard"), _S("Input method module")); -+ Entry(InputMethod, QString, QString(), _S("Input method module")); +@@ -47,10 +47,10 @@ namespace SDDM { // Name Entries (but it's a regular class again) Section(Theme, Entry(ThemeDir, QString, _S(DATA_INSTALL_DIR "/themes"), _S("Theme directory path")); @@ -26,7 +21,7 @@ compiled-in theme. Entry(EnableAvatars, bool, true, _S("Enable display of custom user avatars")); Entry(DisableAvatarsThreshold,int, 7, _S("Number of users to use as threshold\n" "above which avatars are disabled\n" -@@ -80,7 +80,7 @@ namespace SDDM { +@@ -81,7 +81,7 @@ namespace SDDM { ); Section(Users, |