From ed371d6e63abb17fde04fa2c1f15c007d4a8c284 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Fri, 4 Feb 2022 14:45:47 +0100 Subject: DAW: address qjackctl desktop filename change --- make_slackware_live.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'make_slackware_live.sh') diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 9a8f1d9..8b2488f 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -2765,8 +2765,13 @@ EOT # Autostart qjackctl: mkdir -p ${LIVE_ROOTDIR}/home/${LIVEUID}/.config/autostart - cp -a ${LIVE_ROOTDIR}/usr/share/applications/qjackctl.desktop \ - ${LIVE_ROOTDIR}/home/${LIVEUID}/.config/autostart + if [ -f ${LIVE_ROOTDIR}/usr/share/applications/org.rncbc.qjackctl.desktop ]; then + QJCDF=/usr/share/applications/org.rncbc.qjackctl.desktop + else + QJCDF=/usr/share/applications/qjackctl.desktop + fi + cp -a ${QJCDF} \ + ${LIVE_ROOTDIR}/home/${LIVEUID}/.config/autostart/ # Add all our programs into their own submenu Applications>Multimedia>DAW # to avoid clutter in the Multimedia menu. We will use a custom category -- cgit v1.2.3