SDDM freezes after attempting to log in

As of recent when I try to login with SDDM, after entering my password and hitting enter, I can’t log in. SDDM freezes but I can move my cursor. How do I fix this?

Hello :slightly_smiling_face:!
Firstly, you should check if you are able to log in as root.
To do this, select “different user”, enter “root” as the username and enter you password.
If it does work, and you get to a default desktop, there’s probably something wrong with your .xinitrc or some other config file, if it does not work, a system-level problem might exist within your system.

Hello :slight_smile:

Yep I checked and root login works just fine. Definitely something up with my user account then.

Okay, could you post the output of the following commands? (You can enter them while being logged in as root)

inxi -Fxzc0
cat /home/*/.xinitrc
cat /home/*/.bashrc
cat /home/*/.bash_profile
cat /home/*/.Xclients

It happened to a few hours ago. I picked up some errors. Look at journalctl -b|grep sddm
On reboot, everything is back to normal. Also had two core dumps.

inxi -Fxzc0 
System:
  Kernel: 5.8.18-1-MANJARO x86_64 bits: 64 compiler: gcc 
  v: 10.2.0 Desktop: KDE Plasma 5.20.4 
  Distro: Manjaro Linux 
Machine:
  Type: Laptop System: Acer product: Aspire E5-573G 
  v: V3.72 serial: <filter> 
  Mobo: Acer model: ZORO_BH v: Type2 - A01 Board Version 
  serial: <filter> UEFI: Insyde v: 1.37 date: 02/16/2016 
Battery:
  ID-1: BAT1 charge: 15.9 Wh 
  condition: 29.3/37.0 Wh (79%) model: SANYO AL15A32 
  status: Discharging 
CPU:
  Info: Dual Core model: Intel Core i5-5200U bits: 64 
  type: MT MCP arch: Broadwell rev: 4 L2 cache: 3072 KiB 
  flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 
  ssse3 vmx 
  bogomips: 17566 
  Speed: 2196 MHz min/max: 500/2700 MHz 
  Core speeds (MHz): 1: 2195 2: 2197 3: 2195 4: 2195 
Graphics:
  Device-1: Intel HD Graphics 5500 
  vendor: Acer Incorporated ALI driver: i915 v: kernel 
  bus ID: 00:02.0 
  Device-2: NVIDIA GM108M [GeForce 940M] 
  vendor: Acer Incorporated ALI driver: nvidia 
  v: 455.45.01 bus ID: 04:00.0 
  Device-3: Chicony HD WebCam type: USB driver: uvcvideo 
  bus ID: 2-7:3 
  Display: x11 server: X.Org 1.20.10 
  driver: modesetting,nvidia unloaded: intel,nouveau 
  resolution: 1920x1080~60Hz 
  OpenGL: renderer: Mesa Intel HD Graphics 5500 (BDW GT2) 
  v: 4.6 Mesa 20.2.3 direct render: Yes 
Audio:
  Device-1: Intel Broadwell-U Audio 
  vendor: Acer Incorporated ALI driver: snd_hda_intel 
  v: kernel bus ID: 00:03.0 
  Device-2: Intel Wildcat Point-LP High Definition Audio 
  vendor: Acer Incorporated ALI driver: snd_hda_intel 
  v: kernel bus ID: 00:1b.0 
  Sound Server: ALSA v: k5.8.18-1-MANJARO 
Network:
  Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit 
  Ethernet 
  vendor: Acer Incorporated ALI driver: r8168 
  v: 8.048.03-NAPI port: 4000 bus ID: 02:00.0 
  IF: enp2s0 state: down mac: <filter> 
  Device-2: Qualcomm Atheros QCA9377 802.11ac Wireless 
  Network Adapter 
  vendor: Lite-On driver: ath10k_pci v: kernel port: 4000 
  bus ID: 03:00.0 
  IF: wlp3s0 state: up mac: <filter> 
  Device-3: Lite-On Qualcomm Atheros QCA9377 Bluetooth 
  type: USB driver: btusb bus ID: 2-5:2 
Drives:
  Local Storage: total: 596.17 GiB used: 22.66 GiB (3.8%) 
  ID-1: /dev/sda vendor: Toshiba model: MK6465GSX 
  size: 596.17 GiB 
Partition:
  ID-1: / size: 180.11 GiB used: 22.63 GiB (12.6%) 
  fs: ext4 dev: /dev/sda4 
Swap:
  ID-1: swap-1 type: partition size: 16.00 GiB 
  used: 0 KiB (0.0%) dev: /dev/sda5 
Sensors:
  System Temperatures: cpu: 58.0 C mobo: N/A 
  Fan Speeds (RPM): N/A 
Info:
  Processes: 191 Uptime: 4m Memory: 7.69 GiB 
  used: 1.16 GiB (15.1%) Init: systemd Compilers: 
  gcc: 10.2.0 Packages: 1474 Shell: Bash v: 5.0.18 
  inxi: 3.1.08 

cat /home/*/.xinitrc
#!/bin/bash
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

DEFAULT_SESSION=startplasma-x11

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
    for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
        [ -x "$f" ] && . "$f"
    done
    unset f
fi

get_session(){
    local dbus_args=(--sh-syntax --exit-with-session)
    case $1 in
        awesome) dbus_args+=(awesome) ;;
        bspwm) dbus_args+=(bspwm-session) ;;
        budgie) dbus_args+=(budgie-desktop) ;;
        cinnamon) dbus_args+=(cinnamon-session) ;;
        deepin) dbus_args+=(startdde) ;;
        enlightenment) dbus_args+=(enlightenment_start) ;;
        fluxbox) dbus_args+=(startfluxbox) ;;
        gnome) dbus_args+=(gnome-session) ;;
        i3|i3wm) dbus_args+=(i3 --shmlog-size 0) ;;
        jwm) dbus_args+=(jwm) ;;
        kde) dbus_args+=(startplasma-x11) ;;
        lxde) dbus_args+=(startlxde) ;;
        lxqt) dbus_args+=(lxqt-session) ;;
        mate) dbus_args+=(mate-session) ;;
        xfce) dbus_args+=(xfce4-session) ;;
        openbox) dbus_args+=(openbox-session) ;;
        *) dbus_args+=($DEFAULT_SESSION) ;;
    esac

    echo "dbus-launch ${dbus_args[*]}"
}

exec $(get_session "$1")
xset r rate 600 25

```
cat /home/*/.bashrc
#
# ~/.bashrc
#

[[ $- != *i* ]] && return

colors() {
        local fgc bgc vals seq0

        printf "Color escapes are %s\n" '\e[${value};...;${value}m'
        printf "Values 30..37 are \e[33mforeground colors\e[m\n"
        printf "Values 40..47 are \e[43mbackground colors\e[m\n"
        printf "Value  1 gives a  \e[1mbold-faced look\e[m\n\n"

        # foreground colors
        for fgc in {30..37}; do
                # background colors
                for bgc in {40..47}; do
                        fgc=${fgc#37} # white
                        bgc=${bgc#40} # black

                        vals="${fgc:+$fgc;}${bgc}"
                        vals=${vals%%;}

                        seq0="${vals:+\e[${vals}m}"
                        printf "  %-9s" "${seq0:-(default)}"
                        printf " ${seq0}TEXT\e[m"
                        printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m"
                done
                echo; echo
        done
}

[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion

# Change the window title of X terminals
case ${TERM} in
        xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*)
                PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"'
                ;;
        screen*)
                PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"'
                ;;
esac

use_color=true

# Set colorful PS1 only on colorful terminals.
# dircolors --print-database uses its own built-in database
# instead of using /etc/DIR_COLORS.  Try to use the external file
# first to take advantage of user additions.  Use internal bash
# globbing instead of external grep binary.
safe_term=${TERM//[^[:alnum:]]/?}   # sanitize TERM
match_lhs=""
[[ -f ~/.dir_colors   ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
[[ -z ${match_lhs}    ]] \
        && type -P dircolors >/dev/null \
        && match_lhs=$(dircolors --print-database)
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true

if ${use_color} ; then
        # Enable colors for ls, etc.  Prefer ~/.dir_colors #64489
        if type -P dircolors >/dev/null ; then
                if [[ -f ~/.dir_colors ]] ; then
                        eval $(dircolors -b ~/.dir_colors)
                elif [[ -f /etc/DIR_COLORS ]] ; then
                        eval $(dircolors -b /etc/DIR_COLORS)
                fi
        fi

        if [[ ${EUID} == 0 ]] ; then
                PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] '
        else
                PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\$\[\033[00m\] '
        fi

        alias ls='ls --color=auto'
        alias grep='grep --colour=auto'
        alias egrep='egrep --colour=auto'
        alias fgrep='fgrep --colour=auto'
else
        if [[ ${EUID} == 0 ]] ; then
                # show root@ when we don't have colors
                PS1='\u@\h \W \$ '
        else
                PS1='\u@\h \w \$ '
        fi
fi

unset use_color safe_term match_lhs sh

alias cp="cp -i"                          # confirm before overwriting something
alias df='df -h'                          # human-readable sizes
alias free='free -m'                      # show sizes in MB
alias np='nano -w PKGBUILD'
alias more=less

xhost +local:root > /dev/null 2>&1

complete -cf sudo

# Bash won't get SIGWINCH if another process is in the foreground.
# Enable checkwinsize so that bash will check the terminal size when
# it regains control.  #65623
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
shopt -s checkwinsize

shopt -s expand_aliases

# export QT_SELECT=4

# Enable history appending instead of overwriting.  #139609
shopt -s histappend

#
# # ex - archive extractor
# # usage: ex <file>
ex ()
{
  if [ -f $1 ] ; then
    case $1 in
      *.tar.bz2)   tar xjf $1   ;;
      *.tar.gz)    tar xzf $1   ;;
      *.bz2)       bunzip2 $1   ;;
      *.rar)       unrar x $1     ;;
      *.gz)        gunzip $1    ;;
      *.tar)       tar xf $1    ;;
      *.tbz2)      tar xjf $1   ;;
      *.tgz)       tar xzf $1   ;;
      *.zip)       unzip $1     ;;
      *.Z)         uncompress $1;;
      *.7z)        7z x $1      ;;
      *)           echo "'$1' cannot be extracted via ex()" ;;
    esac
  else
    echo "'$1' is not a valid file"
  fi
}

cat /home/*/.bash_profile
#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc

cat /home/*/.Xclients
#!/bin/sh

#
# ~/.Xclients
#
# Executed by xdm/gdm/kdm at login
#

/bin/bash --login -i ~/.xinitrc

Those are the outputs when logged in as root.
@verndog mentioned the other command, so here’s the output of that as well.

 journalctl -b|grep sddm
Dec 04 12:18:38 LAPTOP-CIJPM7D kernel: audit: type=1130 audit(1607066318.731:42): pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:38 LAPTOP-CIJPM7D audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Initializing...
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Starting...
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Logind interface found
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Adding new display on vt 1 ...
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Loading theme configuration from ""
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Display server starting...
Dec 04 12:18:42 LAPTOP-CIJPM7D sddm[699]: Adding cookie to "/var/run/sddm/{ab323dcc-6a71-45aa-b942-fb56e663ef34}"
Dec 04 12:18:43 LAPTOP-CIJPM7D sddm[699]: Running: /usr/bin/X -dpi 120 -auth /var/run/sddm/{ab323dcc-6a71-45aa-b942-fb56e663ef34} -background none -noreset -displayfd 17 -seat seat0 vt1
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Setting default cursor
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Display server started.
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Socket server starting...
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Socket server started.
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Loading theme configuration from "/usr/share/sddm/themes/breath2/theme.conf"
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm[699]: Greeter starting...
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm-helper[922]: [PAM] Starting...
Dec 04 12:18:52 LAPTOP-CIJPM7D audit[922]: USER_AUTH pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:52 LAPTOP-CIJPM7D audit[922]: USER_ACCT pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm-helper[922]: [PAM] Authenticating...
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm-helper[922]: [PAM] returning.
Dec 04 12:18:52 LAPTOP-CIJPM7D kernel: audit: type=1100 audit(1607066332.975:55): pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:52 LAPTOP-CIJPM7D kernel: audit: type=1101 audit(1607066332.975:56): pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:52 LAPTOP-CIJPM7D audit[922]: CRED_ACQ pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:52 LAPTOP-CIJPM7D sddm-helper[922]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=967) by (uid=0)
Dec 04 12:18:52 LAPTOP-CIJPM7D kernel: audit: type=1103 audit(1607066332.985:57): pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:53 LAPTOP-CIJPM7D systemd-logind[673]: New session c1 of user sddm.
Dec 04 12:18:53 LAPTOP-CIJPM7D audit[924]: USER_ACCT pid=924 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:53 LAPTOP-CIJPM7D audit[924]: CRED_ACQ pid=924 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Dec 04 12:18:53 LAPTOP-CIJPM7D systemd[924]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Dec 04 12:18:53 LAPTOP-CIJPM7D kernel: audit: type=1101 audit(1607066333.138:59): pid=924 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:53 LAPTOP-CIJPM7D kernel: audit: type=1103 audit(1607066333.138:60): pid=924 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Dec 04 12:18:53 LAPTOP-CIJPM7D systemd[924]: pam_unix(systemd-user:session): session opened for user sddm(uid=967) by (uid=0)
Dec 04 12:18:53 LAPTOP-CIJPM7D audit[924]: USER_START pid=924 uid=0 auid=967 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:53 LAPTOP-CIJPM7D kernel: audit: type=1105 audit(1607066333.198:62): pid=924 uid=0 auid=967 ses=1 subj==unconfined msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Dec 04 12:18:54 LAPTOP-CIJPM7D systemd[1]: Started Session c1 of user sddm.
Dec 04 12:18:54 LAPTOP-CIJPM7D audit[922]: USER_START pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Dec 04 12:18:54 LAPTOP-CIJPM7D sddm[699]: Greeter session started successfully
Dec 04 12:18:54 LAPTOP-CIJPM7D sddm-greeter[935]: High-DPI autoscaling not Enabled
Dec 04 12:18:55 LAPTOP-CIJPM7D sddm-greeter[935]: Reading from "/usr/share/xsessions/plasma.desktop"
Dec 04 12:18:55 LAPTOP-CIJPM7D sddm-greeter[935]: Loading theme configuration from "/usr/share/sddm/themes/breath2/theme.conf"
Dec 04 12:18:55 LAPTOP-CIJPM7D sddm-greeter[935]: Connected to the daemon.
Dec 04 12:18:55 LAPTOP-CIJPM7D sddm[699]: Message received from greeter: Connect
Dec 04 12:18:55 LAPTOP-CIJPM7D sddm-greeter[935]: QFont::fromString: Invalid description '(empty)'
Dec 04 12:18:56 LAPTOP-CIJPM7D sddm-greeter[935]: Loading file:///usr/share/sddm/themes/breath2/Main.qml...
Dec 04 12:18:57 LAPTOP-CIJPM7D sddm-greeter[935]: QObject: Cannot create children for a parent that is in a different thread.
Dec 04 12:18:57 LAPTOP-CIJPM7D sddm-greeter[935]: QObject: Cannot create children for a parent that is in a different thread.
Dec 04 12:18:57 LAPTOP-CIJPM7D sddm-greeter[935]: QObject: Cannot create children for a parent that is in a different thread.
Dec 04 12:18:57 LAPTOP-CIJPM7D sddm-greeter[935]: QObject: Cannot create children for a parent that is in a different thread.
Dec 04 12:18:57 LAPTOP-CIJPM7D sddm-greeter[935]: QObject::installEventFilter(): Cannot filter events for objects in a different thread.
Dec 04 12:19:01 LAPTOP-CIJPM7D dbus-daemon[667]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.29' (uid=967 pid=935 comm="/usr/bin/sddm-greeter --socket /tmp/sddm-:0-OBYFpv" label="unconfined")
Dec 04 12:19:01 LAPTOP-CIJPM7D dbus-daemon[667]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.29' (uid=967 pid=935 comm="/usr/bin/sddm-greeter --socket /tmp/sddm-:0-OBYFpv" label="unconfined")
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Main.qml:408:5: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:196:13: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:196:13: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:196:13: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/VirtualKeyboard.qml:22:1: Type InputPanel unavailable
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: qrc:/QtQuick/VirtualKeyboard/content/InputPanel.qml:127:5: Type Keyboard unavailable
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: qrc:/QtQuick/VirtualKeyboard/content/components/Keyboard.qml:38:1: module "QtQuick.VirtualKeyboard.Plugins" is not installed
Dec 04 12:19:03 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Login.qml:84:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:04 LAPTOP-CIJPM7D sddm-greeter[935]: Adding view for "eDP-1" QRect(0,0 1920x1080)
Dec 04 12:19:04 LAPTOP-CIJPM7D sddm-greeter[935]: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.30'
Dec 04 12:19:04 LAPTOP-CIJPM7D sddm-greeter[935]: Message received from daemon: Capabilities
Dec 04 12:19:04 LAPTOP-CIJPM7D sddm-greeter[935]: Message received from daemon: HostName
Dec 04 12:19:15 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Login.qml:84:9: QML Connections: Implicitly defined onFoo properties in Connections are deprecated. Use this syntax instead: function onFoo(<arguments>) { ... }
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:406:376: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:407:130: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:408:130: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:408:393: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:409:130: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:410:129: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:411:129: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:412:129: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:413:129: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:413:379: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: <input>:413:631: Could not add child element to parent element because the types are incorrect.
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: Reading from "/usr/share/xsessions/plasma.desktop"
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Message received from greeter: Login
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Reading from "/usr/share/xsessions/plasma.desktop"
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Reading from "/usr/share/xsessions/plasma.desktop"
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startplasma-x11"
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: [PAM] Starting...
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: [PAM] Authenticating...
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: [PAM] Preparing to converse...
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: [PAM] Conversation with 1 messages
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: pam_kwallet5(sddm:auth): (null): pam_sm_authenticate
Dec 04 12:19:24 LAPTOP-CIJPM7D audit[1015]: USER_AUTH pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: [PAM] returning.
Dec 04 12:19:24 LAPTOP-CIJPM7D audit[1015]: USER_ACCT pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_permit,pam_time acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Authenticated successfully
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Dec 04 12:19:24 LAPTOP-CIJPM7D audit[1015]: CRED_ACQ pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D kernel: audit: type=1100 audit(1607066364.381:76): pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D kernel: audit: type=1101 audit(1607066364.381:77): pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:accounting grantors=pam_access,pam_permit,pam_time acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D kernel: audit: type=1103 audit(1607066364.381:78): pid=1015 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: pam_unix(sddm:session): session opened for user root(uid=0) by (uid=0)
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: Message received from daemon: LoginSucceeded
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Main.qml:377: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/Battery.qml:27: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:55: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:34: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:36: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:37: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:55: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:34: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:36: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:37: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:55: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:34: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:36: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:37: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:55: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:34: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:36: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:37: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:82: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:111: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:97: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:98: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:88: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserList.qml:25: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserList.qml:26: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:101: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:36: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:101: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:36: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:101: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:36: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml:83: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml:28: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml:77: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml:77: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:39: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:70: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:45: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml:80: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/private/ButtonShadow.qml:117: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:55: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:34: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:36: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/ActionButton.qml:37: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:82: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:111: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:97: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:98: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/SessionManagementScreen.qml:88: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserList.qml:25: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserList.qml:26: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml:83: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml:28: TypeError: Cannot read property 'smallSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml:77: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml:77: TypeError: Cannot read property 'iconSizes' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:39: TypeError: Cannot read property 'largeSpacing' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:70: TypeError: Cannot read property 'gridUnit' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/components/UserDelegate.qml:45: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/private/ButtonShadow.qml:117: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml:80: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/lib/qt/qml/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml:80: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Main.qml:226: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-greeter[935]: file:///usr/share/sddm/themes/breath2/Main.qml:382: TypeError: Cannot read property 'longDuration' of null
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: pam_env(sddm:session): deprecated reading of user environment enabled
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1030]: pam_kwallet5: final socket path: /run/user/0/kwallet5.socket
Dec 04 12:19:24 LAPTOP-CIJPM7D audit[1015]: USER_START pid=1015 uid=0 auid=0 ses=2 subj==unconfined msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env,pam_kwallet5 acct="root" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1015]: Starting: "/usr/share/sddm/scripts/Xsession \"/usr/bin/startplasma-x11\""
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm-helper[1032]: Adding cookie to "/root/.Xauthority"
Dec 04 12:19:24 LAPTOP-CIJPM7D sddm[699]: Session started
Dec 04 12:19:25 LAPTOP-CIJPM7D sddm-helper[922]: [PAM] Closing session
Dec 04 12:19:25 LAPTOP-CIJPM7D sddm-helper[922]: pam_unix(sddm-greeter:session): session closed for user sddm
Dec 04 12:19:25 LAPTOP-CIJPM7D audit[922]: USER_END pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Dec 04 12:19:25 LAPTOP-CIJPM7D audit[922]: CRED_DISP pid=922 uid=0 auid=4294967295 ses=4294967295 subj==unconfined msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=:0 res=success'
Dec 04 12:19:25 LAPTOP-CIJPM7D sddm-helper[922]: [PAM] Ended.
Dec 04 12:19:25 LAPTOP-CIJPM7D sddm[699]: Auth: sddm-helper exited successfully
Dec 04 12:19:25 LAPTOP-CIJPM7D sddm[699]: Greeter stopped.
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: Checking for pam module
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: Got pam-login param
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: Waiting for hash on 7-
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: waitingForEnvironment on: 3
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: client connected
Dec 04 12:19:35 LAPTOP-CIJPM7D sddm[1031]: kwalletd5: client disconnected
Dec 04 12:19:35 LAPTOP-CIJPM7D systemd[925]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]

Not sure what any of this means, I’m sort of new.

Hmm, is there any specific reason why

xset r rate 600 25

```

should be in .xinitrc?
If not, I guess you could try to remove those lines as they are not present on a fresh Manjaro install.

I don’t think so?
It didn’t fix it by removing the line…

I’m a bit of an idiot.

Just deleted ~/.Xauthority from the terminal before logging in through SDDM, exited it and logged in through SDDM and it worked fine. Rebooted and checked and it’s all fine now.

Glad to hear that :grinning:!

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.