File indexing completed on 2024-05-12 05:29:26

0001 #!/bin/sh
0002 # SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0003 # SPDX-FileCopyrightText: 2023 Harald Sitter <sitter@kde.org>
0004 
0005 export QT_LOGGING_RULES="*=false"
0006 
0007 if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
0008   exec kcmshell6 kcm_about-distro --args dump --platform wayland
0009 elif [ -n "${DISPLAY+x}" ]; then
0010   exec kcmshell6 kcm_about-distro --args dump --platform xcb
0011 else
0012   exec kcmshell6 kcm_about-distro --args dump --platform offscreen
0013 fi