Re: kde-pim hopeless?
"O. Sinclair" <[email protected]>
| Newsgroups | gmane.comp.kde.users.pim |
|---|---|
| Message-ID | <[email protected]> |
On 08/05/2013 19:41, O. Sinclair wrote: > On 08/05/2013 16:54, Maurice Batey wrote: >> On Wed, 08 May 2013 08:00:23 +0200, O. Sinclair wrote: >> >>> the akonadi-nepomuk-feeder agent needs to be manually started on every >>> login/boot. >>> Use Akonadiconsole or script to do that and you should get >>> better results. >> >> How does one do that, please? >> > install akonadiconsole if it is not installed, run it after login. Find > the feeder and press button restart. > > scripts can be put somewhere in you home folder system, made executable > and modified for your system. Then use System Settings, Startup/Shutdown > module to point to the script. > > I have attached scripts in an earlier mail. > > /Sinclair > Find attached + a desktop file if you rather start manually w/o akonadiconsole involved _______________________________________________ KDE PIM users mailing list Subscription management: https://mail.kde.org/mailman/listinfo/kdepim-users
delayRestartANF.sh
(application/x-shellscript, 437 B)
#!/bin/bash #Give nepomuk and akonadi time (in seconds) to start #sleep 5 #Check status of ANF FeederStatus=`qdbus org.freedesktop.Akonadi.Agent.akonadi_nepomuk_feeder / org.freedesktop.Akonadi.Agent.Status.isOnline` #If status still false if [ "$FeederStatus" = "false" ];then #Restart ANF qdbus org.freedesktop.Akonadi.Control /AgentManager org.freedesktop.Akonadi.AgentManager.restartAgentInstance "akonadi_nepomuk_feeder" fi
Restartanf.desktop
(application/x-desktop, 377 B) - not displayed
restartANF.sh
(application/x-shellscript, 130 B)
#!/bin/bash #Restart ANF in the background, don't block KDE start-up /home/sinclair/scripts/delayRestartANF.sh >/dev/null 2>&1 &