• Recent
  • Tags
  • Popular
  • Home
  • Docs
  • Register
  • Login
RetroPie forum home
  • Recent
  • Tags
  • Popular
  • Home
  • Docs
  • Register
  • Login
Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

change text size for raspi config and retropie setup menu?

Scheduled Pinned Locked Moved Help and Support
textsizeconsoleraspimenu
12 Posts 2 Posters 3.1k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • O
    ohmycommodore
    last edited by ohmycommodore 5 Jan 2020, 14:26 1 May 2020, 13:25

    HI folks, I've seen mention of changing text size for the console / shell (I'll paste that info from the wiki below)... but what about changing text size for the blue-and-grey raspi config and retropie setup menus? I'm not finding any hits (or the right one) searching.

    On my 240p CRT setup (on Pi 3B+) the text in those menus ends up so large that I can't see anything close to complete commands or file paths. For example, when installing themes, I see the first 20-30 characters maybe, but have no idea what the actual name of the theme is down at the end of the path. Frustrating when there are a few themes at basically the same path.

    Reducing the font size in those menus would help me not fly so blind. It's the opposite problem I suppose from HDMI and LCD where you might be squinting at small text on a large screen. Assuming this text is NOT console text... is there a way to adjust it?


    console text size adjustment from the wiki:
    How can I increase the console font size? Recent versions of the RetroPie-Setup script include a Console Font script module at Configuration / tools -> consolefont. Alternatively, you can execute the following command and follow the instructions on screen: sudo dpkg-reconfigure console-setup

    M 1 Reply Last reply 1 May 2020, 16:08 Reply Quote 0
    • M
      mitu Global Moderator @ohmycommodore
      last edited by mitu 5 Jan 2020, 18:33 1 May 2020, 16:08

      @ohmycommodore said in change text size for raspi config and retropie setup menu?:

      HI folks, I've seen mention of changing text size for the console / shell (I'll paste that info from the wiki below)... but what about changing text size for the blue-and-grey raspi config and retropie setup menus? I'm not finding any hits (or the right one) searching.

      These are using the console text fonts, so the advice there should work. You can also use choose to use smaller fonts from the RetroPie-Setup menu:

      4a920545-224a-44e9-8d57-17051ab119fc-image.png

      As per the FAQ page, you can also run sudo dpkg-reconfigure console-setup and you'll have a wider choice of fonts and sizes:

      7c65237c-f22c-40c2-a1b9-95aa67035980-image.png

      EDIT: I assume you're running a 240p video mode, right ?

      1 Reply Last reply Reply Quote 0
      • O
        ohmycommodore
        last edited by 1 May 2020, 17:30

        @mitu Yeah 240p. I'll give that a try. I thought I did a couple of days ago, and it just changed the console, nothing else. I might have moved on to tinkering elsewhere before I gave it a complete look.

        1 Reply Last reply Reply Quote 0
        • O
          ohmycommodore
          last edited by 1 May 2020, 17:36

          Actually it goes the other way because of my video size I guess... if I choose the smaller size, it blows up to the point where it's massive and I can't do anything. Good thing I had made a backup last night :)

          1 Reply Last reply Reply Quote 0
          • M
            mitu Global Moderator
            last edited by 1 May 2020, 17:38

            That's why having SSH configured is handy, you can always log in remotely and fix things.

            1 Reply Last reply Reply Quote 0
            • O
              ohmycommodore
              last edited by 1 May 2020, 17:56

              Yeah I'm in there now, but in either of those menus, 16x32 is the max. Technically I'd want even larger if I've wrapped my head around this correctly. Like 32x64 or something.

              1 Reply Last reply Reply Quote 0
              • M
                mitu Global Moderator
                last edited by 1 May 2020, 18:03

                Use setfont to load an additional font for testing. console-setup doesn't list all the fonts available - which are in /usr/share/consolefonts:

                setfont /usr/share/consolefonts/Uni3-Terminus32x62.psf.gz
                

                Note that you need to run this from the console in order to see them in 'real-time'.

                Once you find a good font, edit /etc/default/console-setup and add a line with the FONT filename:

                FONT="Uni3-Terminus32x62.psf.gz"
                
                1 Reply Last reply Reply Quote 0
                • O
                  ohmycommodore
                  last edited by 1 May 2020, 18:09

                  Interesting. Though that first command (or the path) isn't working for me:

                  pi@retropie:~ $ setfont /usr/share/consolefonts/Uni3-Terminus32x62.psf.gz
                  Couldn't get a file descriptor referring to the console

                  1 Reply Last reply Reply Quote 0
                  • M
                    mitu Global Moderator
                    last edited by 1 May 2020, 18:12

                    You need to run it from the console, not via SSH.

                    1 Reply Last reply Reply Quote 0
                    • O
                      ohmycommodore
                      last edited by 1 May 2020, 18:28

                      All I get is "cannot open font file". Not sure if it's actually 32x62 or 32x64 that is the correct size, but either way, same error.

                      Seeing the irony that I have to somewhat blindly type into giant console in order to make it not-giant console :)

                      1 Reply Last reply Reply Quote 0
                      • M
                        mitu Global Moderator
                        last edited by mitu 5 Jan 2020, 20:03 1 May 2020, 19:01

                        Maybe a script that goes through all the available fonts and shows them for 3-5 seconds would be useful, so you don't have to type anything. You can always interrupt it with Ctrl+C or adjust the filename wildcard to get different font sizes.

                        #!/bin/bash
                        for f in /usr/share/consolefonts/*32*; do
                        setfont "$f"
                        clear
                        echo Testing font $f ...
                        echo
                        echo "The quick brown fox jumps over the lazy dog"
                        sleep 3
                        done
                        1 Reply Last reply Reply Quote 0
                        • O
                          ohmycommodore
                          last edited by 1 May 2020, 23:46

                          I can see the font files from my Mac via FTP, and a number of 16x32 fonts seem to be the largest there is. That's fine, I hopefully I can just SSH in for 99% of things.

                          1 Reply Last reply Reply Quote 0
                          12 out of 12
                          • First post
                            12/12
                            Last post

                          Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                          Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.

                            This community forum collects and processes your personal information.
                            consent.not_received