Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

CherryTree or Tomboy (What'd you recommend?)

Off-Topic discussions about science, technology, and non Debian specific topics.
Post Reply
Message
Author
User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

CherryTree or Tomboy (What'd you recommend?)

#1 Post by bester69 »

I was looking for an agil desktop open fast RTF editor for quick notes to use as a weekly/montly journal to query
and the best choicez I fount out were Tomboy a CherryTree, the first one seems to integrates better with desktop,
the second one, allow us to take more complete and large notes...

So, what do you think, any recommendation or think to know about?..To me, both options seems same valid..I thing I will test CherryTree, Ive never used it before :o

Image
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

CwF
Global Moderator
Global Moderator
Posts: 2625
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 41 times
Been thanked: 190 times

Re: CherryTree or Tomboy (What'd you recommend?)

#2 Post by CwF »

CherryTree!!
It has a few issues but is rich. It makes me want OLE (object link and embed).

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: CherryTree or Tomboy (What'd you recommend?)

#3 Post by bester69 »

Eva Smith wrote:I also use CherryTree and don't have any regrets
Ive seen snap verison (0.39) works better than stretch's one (0.37)..only I cant make checkspeller works in snap...its like if It just missed some module or something, doesnt find the dicctionaries in settings.. :shock:
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

CwF
Global Moderator
Global Moderator
Posts: 2625
Joined: 2018-06-20 15:16
Location: Colorado
Has thanked: 41 times
Been thanked: 190 times

Re: CherryTree or Tomboy (What'd you recommend?)

#4 Post by CwF »

I have 0.39.1 in buster and it's working well.

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: CherryTree or Tomboy (What'd you recommend?)

#5 Post by bester69 »

CwF wrote:I have 0.39.1 in buster and it's working well.
Only think, I dont like, we can only use four font sizes.. h1, h2, h3 and s ..
I was for a while looking for the increase/decrease button's font size :shock: ..It shoud have come with two buttons like in tomboy

I finally got my cherry personalization, Im using Segoe Print font :)

Image

I made a script for launching and backup .. I usually restore home btrfs subvolume, and cant keep base data within it or lose all data.

journal.sh

Code: Select all

#!/bin/bash
#
cherrypath="/home/user/snap/cherrytree"
cherrycopy="/home/user/LINUXDEBS/config/cherrysnap/cherrytree"
cherrybbdd="/home/user/LINUXDEBS/config/cherrysnap/cherryBBDD"

if [ ! -z $(pgrep -f  bin/cherrytree) ]
then
    exit
fi
### Para SNAP cherry
mkdir -p "$cherrycopy" "$cherrybbdd"
find "$cherrypath/current/" -maxdepth 1 -type f -name "*.ctb*" -exec mv -v "{}"  "$cherrybbdd/" \;
find "$cherrybbdd/" -maxdepth 1 -type f -name "*.ctb*" -exec ln -snf "{}" "$cherrypath/current/" \;
rsync -av --delete "$cherrypath/" "$cherrycopy/"

snap run cherrytree &
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: CherryTree or Tomboy (What'd you recommend?)

#6 Post by Head_on_a_Stick »

bester69 wrote:the first one seems to integrates better with desktop
Try installing the breeze-gtk-theme package, that should style GTK applications to match your Plasma Breeze theme. You may have to set the theme manually in ~/.gtkrc-2.0 & ~/.config/gtk-3.0/settings.ini (or use lxappearance to set it).
bester69 wrote:

Code: Select all

#!/bin/bash
#
cherrypath="/home/user/snap/cherrytree"
cherrycopy="/home/user/LINUXDEBS/config/cherrysnap/cherrytree"
cherrybbdd="/home/user/LINUXDEBS/config/cherrysnap/cherryBBDD"

if [ ! -z $(pgrep -f  bin/cherrytree) ]
then
    exit
fi
### Para SNAP cherry
mkdir -p "$cherrycopy" "$cherrybbdd"
find "$cherrypath/current/" -maxdepth 1 -type f -name "*.ctb*" -exec mv -v "{}"  "$cherrybbdd/" \;
find "$cherrybbdd/" -maxdepth 1 -type f -name "*.ctb*" -exec ln -snf "{}" "$cherrypath/current/" \;
rsync -av --delete "$cherrypath/" "$cherrycopy/"

snap run cherrytree &
If you're going to use bash then you should use [[ instead of [ but your script doesn't need either, the command itself can be used as a test:

Code: Select all

#!/bin/sh
#
cherrypath="${HOME}/snap/cherrytree"
cherrycopy="${HOME}/LINUXDEBS/config/cherrysnap/cherrytree"
cherrybbdd="${HOME}/LINUXDEBS/config/cherrysnap/cherryBBDD"

if pgrep -f  bin/cherrytree
then
   exit
fi
### Para SNAP cherry
mkdir -p "$cherrycopy" "$cherrybbdd"
find "$cherrypath/current/" -maxdepth 1 -type f -name "*.ctb*" -exec mv -v "{}"  "$cherrybbdd/" \;
find "$cherrybbdd/" -maxdepth 1 -type f -name "*.ctb*" -exec ln -snf "{}" "$cherrypath/current/" \;
rsync -av --delete "$cherrypath/" "$cherrycopy/"
As you can see, it doesn't need buggy, bloated bash either. POSIX sh ftw!
deadbang

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: CherryTree or Tomboy (What'd you recommend?)

#7 Post by bester69 »

Head_on_a_Stick wrote:
bester69 wrote:the first one seems to integrates better with desktop
Try installing the breeze-gtk-theme package, that should style GTK applications to match your Plasma Breeze theme. You may have to set the theme manually in ~/.gtkrc-2.0 & ~/.config/gtk-3.0/settings.ini (or use lxappearance to set it).
ok, thanks :o

by the way, cherry 0.39 do install in stretch, so I installed (It opens up faster than snap or flatpak)
https://www.giuspen.com/software/cherry ... -0_all.deb
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

Post Reply