Here is the command I tried using in:
Code: Select all
~/.fluxbox/startup
# if kdeconnect is installed, start the kdeconnet-indicator
if [ -x /usr/bin/kdeconnect-indicator ]; then
kdeconnect-indicator &
fi
# I also tried the following variations, all of which failed to get the kdeconnect-indicator in the taskbar.
if [ -x /usr/bin/kdeconnect-indicator ]; then
kdeconnect-app && kdeconnect-indicator &
fi
if [ -x /usr/bin/kdeconnect-indicator ]; then
kdeconnect-app && kdeconnect-indicator
fi
# The last one was a disaster without the "&" at the end it prevented Fluxbox from fully loading.