Package Details: globonote 1.6-1

Git Clone URL: https://aur.archlinux.org/globonote.git (read-only, click to copy)
Package Base: globonote
Description: Create sticky notes, to-do lists, reminders and other notes in one place.
Upstream URL: http://globonote.info/
Keywords: notes sticky
Licenses: GPLv2
Submitter: SanskritFritz
Maintainer: SanskritFritz
Last Packager: SanskritFritz
Votes: 10
Popularity: 0.000005
First Submitted: 2013-02-22 16:07 (UTC)
Last Updated: 2020-12-31 16:20 (UTC)

Dependencies (1)

Required by (0)

Sources (3)

Latest Comments

mattalxndr commented on 2021-10-01 12:46 (UTC)

Ah, makes sense.

SanskritFritz commented on 2021-09-30 11:01 (UTC)

Well /bin/java works in all cases of archlinux java installations. So if JAVA_HOME is not set, we default to that path. Setting JAVA_HOME adds the convenience of using a different java version than the default one.

mattalxndr commented on 2021-09-30 10:45 (UTC)

Well, I don't know much about the app but from looking at globonote.sh, it does seem like it requires it. At least that script does.

SanskritFritz commented on 2021-09-30 10:17 (UTC)

I don't think this is a good idea, why should I force anyone to set JAVA_HOME? Globonote works well without that.

mattalxndr commented on 2021-09-30 06:51 (UTC)

May I suggest a new version of globonote.sh?

#!/bin/sh
if [[ -z ${JAVA_HOME:-} ]]; then printf >&2 'ERROR: JAVA_HOME must be set\n'; exit 1; fi
cd /usr/share/java/globonote
"$JAVA_HOME/bin/java" -jar '/usr/share/java/globonote/GloboNote.jar'