Package Details: docfetcher 1.1.25-1

Git Clone URL: https://aur.archlinux.org/docfetcher.git (read-only, click to copy)
Package Base: docfetcher
Description: A java open source desktop search application
Upstream URL: http://docfetcher.sourceforge.net/
Keywords: desktop productivity search
Licenses: EPL
Submitter: thiagowfx
Maintainer: macxcool
Last Packager: macxcool
Votes: 18
Popularity: 0.000101
First Submitted: 2014-05-01 20:55 (UTC)
Last Updated: 2021-05-25 23:57 (UTC)

Dependencies (4)

Required by (0)

Sources (4)

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

macxcool commented on 2017-04-30 12:40 (UTC)

@languitar I'm not sure what you mean. It all works for me still. /usr/share/docfetcher/DocFetcher.sh is in the package still and the 'docfetcher' script works. What are you seeing?

languitar commented on 2017-04-26 13:07 (UTC)

The included docfetcher script doesn't work anymore as the references script in the package has gone

macxcool commented on 2016-10-28 13:31 (UTC)

KDE should have nothing to do with variables in a shell script. I'm setting the value of $_gtkver to be 'gtk3' by default. It's only there so people have the choice of using GTK2 or 3. It's strange that you get no shortcut. I'll have a closer look at the script tonight.

pitlochry commented on 2016-10-28 12:31 (UTC)

I had to do the following fixes: sudo chmod 655 /usr/share/docfetcher/DocFetcher-GTK* sudo ln -s /usr/share/docfetcher/DocFetcher-GTK2.sh /usr/share/docfetcher/DocFetcher.sh sudo sed -i s,"Icon=docfetcher","Icon=/usr/share/docfetcher/img/docfetcher128.png", /usr/share/applications/docfetcher.desktop sudo sed -i s,"Name=Docfetcher","Name=DocFetcher", /usr/share/applications/docfetcher.desktop The first one is already in http://hastebin.com/arubabakoq.bash, the second one can easily be fixed there. The third (no icon) and fourth (typing error) can easily be fixed in the desktop file. Thanks!

pitlochry commented on 2016-10-28 10:30 (UTC)

@http://hastebin.com/arubabakoq.bash I use kde, so $_gtkver gives nothing (at least on my system). So there is no link made.

thiagowfx commented on 2016-10-24 05:19 (UTC)

LGTM

macxcool commented on 2016-10-23 18:57 (UTC)

What do y'all think of this? http://hastebin.com/arubabakoq.bash

thiagowfx commented on 2016-10-23 16:59 (UTC) (edited on 2016-10-23 17:00 (UTC) by thiagowfx)

I am not currently using this software, so I can't advise. However, I'd say it's better to stick to one and only one. Choose gtk2 or gtk3, whatever you think it's more convenient. Since Arch supports gnome, which uses gtk3, I guess it would be a good default choice to make it more consistent with the rest of the system. And, if changing it to gtk2 is just a matter of changing one flag (like --use-gtk2 instead of --use-gtk3), then you could leave a comment so users can change it at their own discretion. All right?

macxcool commented on 2016-10-23 13:04 (UTC)

OK. Which of the two should we be using, or should we make both available? I also notice that both DocFetcher.GTK2 and DocFetcher.GTK3 are not chmod +x by default. Should we just use GTK3 by default? I suggest a symlink called DocFetcher.sh to DocFetcher.GTK3 then? That's somewhat simpler and allows for an easy change to GTK2 for the user. We should also make GTK3 a dependency, shouldn't we?

davidmcinnis commented on 2016-09-14 05:10 (UTC) (edited on 2016-09-14 05:10 (UTC) by davidmcinnis)

Had to make the following change for docfetcher to start: docfetcher @@ -1,3 +1,3 @@ #!/bin/sh cd "/usr/share/docfetcher/" -exec ./DocFetcher.sh "$@" +exec ./DocFetcher-GTK3.sh "$@"