WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Application not showing correctly  (Read 1755 times)

Offline gadget42

  • Hero Member
  • *****
  • Posts: 880
Re: Application not showing correctly
« Reply #15 on: May 19, 2025, 12:05:25 PM »
found this while kicking the weeds but don't know if it holds any clues:

https://lists.nongnu.org/archive/html/screen-users/2024-06/msg00003.html
The fluctuation theorem has long been known for a sudden switch of the Hamiltonian of a classical system Z54 . For a quantum system with a Hamiltonian changing from... https://forum.tinycorelinux.net/index.php/topic,25972.msg166580.html#msg166580

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 15182
Re: Application not showing correctly
« Reply #16 on: May 19, 2025, 12:08:59 PM »
If I use gnome-terminal and choose, for example, dejavu sans as the font then this:
Code: [Select]
/usr/local/bin/printf "\u20AC\n"
..returns the euro symbol

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 12133
Re: Application not showing correctly
« Reply #17 on: May 19, 2025, 12:37:52 PM »
Hi t18
No way, please se attached image.

So the systems built in printf can not handle unicode.

But the coreutils did attempt to print a unicode character.

I think the issue now is the terminal.

Try installing gnome-terminal.tcz.

Offline t18

  • Full Member
  • ***
  • Posts: 123
Re: Application not showing correctly
« Reply #18 on: May 19, 2025, 01:53:09 PM »
A big improvement, but still not totally fixed (please see).

And the terminal characters are overlapping, can I install something else?


According to this: https://en.wikipedia.org/wiki/Rxvt there is a "unicode" version of rxvt called urxvt. I was convinced to be using that one.
« Last Edit: May 19, 2025, 02:09:26 PM by t18 »

Offline t18

  • Full Member
  • ***
  • Posts: 123
Re: Application not showing correctly
« Reply #19 on: May 19, 2025, 03:09:44 PM »
Changing font fixed it (please see).

Thank you so much you all!  :)

Offline t18

  • Full Member
  • ***
  • Posts: 123
Re: Application not showing correctly
« Reply #20 on: May 20, 2025, 05:02:00 AM »
Last question, please: where are the gnome teminal settings stored?

I'm unable to find them. Many thanks

Offline patrikg

  • Wiki Author
  • Hero Member
  • *****
  • Posts: 756
Re: Application not showing correctly
« Reply #21 on: May 20, 2025, 05:31:17 AM »
You can figure it out your self with some knowledge how the systemcalls being used in Linux.
You can use strace for example like this.
Code: [Select]
strace -e openat gnome-terminal 2>&1 | grep -v 'ENOENT' | grep confExplanation of that line.
1. Run strace.
2. Just watch the openat systemcall.
3. Run gnome-terminal.
4. Put standard error to standard in because strace puts it output to standard error.
5. Pipe strace output to grep.
6. Grep revers of the 'ENOENT' to get what files being loaded, not the files that get not found.
7. Pipe to grep.
8. Grep for conf like config.

What I can see is that gnome-terminal uses dconf to store it's config in my system you can list the settings like this:
Code: [Select]
dconf dump /org/gnome/terminal/legacy/profiles:/
« Last Edit: May 20, 2025, 05:47:53 AM by patrikg »

Offline t18

  • Full Member
  • ***
  • Posts: 123
Re: Application not showing correctly
« Reply #22 on: May 20, 2025, 07:56:47 AM »
@ patrikg:  thank you so much for your detailed explanation.

I'll have to study a bit. :)