diff options
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 9 |
1 files changed, 7 insertions, 2 deletions
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 |