diff options
author | Antonio Rojas | 2018-01-07 17:16:55 +0000 |
---|---|---|
committer | Antonio Rojas | 2018-01-07 17:16:55 +0000 |
commit | 9eec11ef64a535322e876f5642f8e2f126b76814 (patch) | |
tree | dbabbe6e3662792bf8b5eafaa14c9b2dede3265f /PKGBUILD | |
parent | dde0265c5fdd50a297e9398d4439278a162c733b (diff) | |
download | aur-9eec11ef64a535322e876f5642f8e2f126b76814.tar.gz |
Don't set InputMethod, it breaks all themes other than Breeze
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ pkgname=sddm pkgver=0.17.0 -pkgrel=4 +pkgrel=5 pkgdesc='QML based X11 and Wayland display manager' arch=('x86_64') url='http://github.com/sddm/sddm' @@ -48,4 +48,6 @@ package() { # Don't set PATH in sddm.conf sed -r 's|DefaultPath=.*|DefaultPath=/usr/local/sbin:/usr/local/bin:/usr/bin|g' -i "$pkgdir"/usr/lib/sddm/sddm.conf.d/sddm.conf +# Unset InputMethod https://github.com/sddm/sddm/issues/952 + sed -e "/^InputMethod/s/qtvirtualkeyboard//" -i "$pkgdir"/usr/lib/sddm/sddm.conf.d/sddm.conf } |