From cbae7c8eff0b5f804ebf8cff8f86239d55b23c05 Mon Sep 17 00:00:00 2001 From: Matt Alexander Date: Fri, 20 Jan 2023 12:22:50 -0600 Subject: [PATCH] Added autostart that works in KDE --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 3ecb0a7..bc4ebab 100644 --- a/Makefile +++ b/Makefile @@ -66,12 +66,17 @@ DEFAULT_TARGETS+=autostart_config install_autostart_config: mkdir -p ${DESTDIR}/${XDG_AUTOSTART_DIR} install -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop + # KDE-specific autostart (workaround for https://github.com/systemd/systemd/issues/18791) + install -m 644 contrib/etc/xdg/autostart/autorandr.desktop ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop + desktop-file-edit --remove-key=X-GNOME-Autostart-Phase --add-only-show-in=KDE ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop + ifneq ($(PREFIX),/usr/) sed -i -re 's#/usr/bin/autorandr#$(subst #,\#,${PREFIX})/bin/autorandr#g' ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop endif uninstall_autostart_config: rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr.desktop + rm -f ${DESTDIR}/${XDG_AUTOSTART_DIR}/autorandr-kde.desktop # Rules for systemd SYSTEMD_UNIT_DIR:=$(shell pkg-config --variable=systemdsystemunitdir systemd 2>/dev/null) -- 2.39.2