


Dolphin Service Menus by Incarus 78 comments
Might be a problem with DBus. - Jun 04 2014

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments
nohup clamscan -r --log="$spath"/ServiceMenus/ClamScan/logs/ClamScan_result_$date.log --stdout $real_files > "$spath"/ServiceMenus/ClamScan/logs/ClamScan_$date.log 2>&1 &
we could swap it to something like
if [ "$(pidof clamdscan)" ]
then
nohup clamdscan [...]
else
nohup clamscan [...]
fi
not sure if that is working. - Apr 22 2014

Dolphin Service Menus by Incarus 78 comments
A possible fix for this would be to let the script check if clamdscan is running and if yes to prefer that one. - Apr 22 2014

Dolphin Service Menus by Incarus 78 comments
"$spath"/ServiceMenus/ClamScan/logs/ClamScan_$date.log
each scanned file creates exactly one new line in that file, so if the amount of lines in the file == amount of all selected files the progressbar should be 100% (or x of x files).
Does the mentioned file exist on your computer (is it creating while scanning)? - Apr 22 2014

Dolphin Service Menus by Incarus 78 comments
Feel free to fork this project and to maintain your own script, I also changed the license to CC BY (now without SA). - Dec 02 2013

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments
Yeah, it didn't work for me either and I was really surprised, cause it did before.
Hope everything is fixed after that release ;) - Apr 19 2012

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments
First you can find out more about that issue by looking in the log file. I would advise you to look in those files (you can find them under /home/USERNAME/.kde/share/kde4/services/ServiceMenus/ClamScan/logs/).
If you can't find something conspicuous try to manually run clamav on the selected file/directory with "clamscan -r /PATH/TO/FILE". If clamscan will output an error here it would be a clamscan issue. I guess it is a permission error. - Feb 23 2012

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Various KDE Stuff by malcer 3 comments
I like the idea of creating an easy to use and intuitive installation software.
Would be stunning to see that project as installation software for unixoid systems like 'Inno Setup' in Windows. - Jan 28 2012

Dolphin Service Menus by Incarus 78 comments
The downloadable version of the script should now be v2.4 - Jan 23 2012

Dolphin Service Menus by Incarus 78 comments
I fixed the whitespace issue in the latest release so I can deliver now the modified clamscan.desktop file in the next version - Jan 18 2012

Dolphin Service Menus by Incarus 78 comments
I currently experiment with a modified .desktop file in that directory. As soon as this works as I want and after some testing I could add it to this script and to the installation routine - Jan 16 2012

Dolphin Service Menus by Incarus 78 comments
"kde4-config --localprefix"
and "kde4-config --path services"
The first one only returns "/home/USER/.kde/", the second "/home/USER/.kde/share/kde4/services/:/usr/share/kde4/services/"
The first one is unlucky, because the service menu path could differ so "/home/USER/.kde/" + "share/kde4/services" could go 404.
The second one have to be reduced, I'm using "echo ${path%:*}" to do that, which is not the best solution but at least it works.
In theory I need a syntax which only returns the user service menu path "/home/USER/.kde/share/kde4/services/".
My second problem is, that the .desktop file can not run a sh file in the same directory (like EXEC=sh abc.sh). I'm not sure but I think I saw scripts there this or something similar worked. If I'm able to get this to work only the install.sh file will be affected by the first problem. - Jan 03 2012

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments
Thank you for reporting, issue is now fixed in the installation routine. If the services path is not the default path (and I hope that is rare) the installation script will replace the paths in ClamScan.desktop. I also replaced absolute paths in ClamScan.sh with relatives.
Not sure if there is another way to fix that - if you try to install it without install.sh and your .kde path is not the default one you could encouter problems. - Dec 27 2011

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments
I reviewed the complete source code and come to the following conclusion - correct me if I'm wrong:
There are two common locations for servicesmenus, on my machine (kde4-config --path services):
/home/USER/.kde/share/kde4/services/
and
/usr/share/kde4/services/
For my script I'm using the /home/USER/.kde/ (~/.kde) path because you can write in it without superuser-rights - not to mistaken with /usr/share/kde4/ (!).
However, I will try to completly use relative paths (kde4-config --path services) instead of absolute paths (/home/USER/...) in my next release, thank you!
- Dec 27 2011

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments

Security by hoganrobert 150 comments

Dolphin Service Menus by Incarus 78 comments

Dolphin Service Menus by Incarus 78 comments