Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6330057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:47:46+00:00 2026-05-24T17:47:46+00:00

I’m doing a small project for fun in C++ (in Ubuntu 11.04) and the

  • 0

I’m doing a small project for fun in C++ (in Ubuntu 11.04) and the program is text-based (all in the Gnome terminal). I’m using the ncurses library to change the font color, but I also want to print different sized text to the terminal, and can’t figure out how to do that with ncurses. Is there a way to do this (perhaps with ncurses, or with a different library)? Ideally, I’d want it to be terminal-independent,, but if it’s a solution that only works in Gnome, or only works in Ubuntu, or some other restriction like that then that’s better than nothing!

Thanks for your help as always.


I’ve tried the suggestion from Keith Thompson but couldn’t get it to work. Here’s my code:

cout << "\x1b]50;" << "10x20" << "\a" << flush;
cout << "test";

It just shows up as the same font size specified in the terminal preferences. I’m using: GNOME Terminal 2.32.1 if that helps!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T17:47:46+00:00Added an answer on May 24, 2026 at 5:47 pm

    At least for xterm, you can change the current font by printing an escape sequence. The syntax is ESCAPE ] 50 ; FONTNAME BEL.

    Here’s (an abbreviated version of) a script I use for this; I call it xfont (the real one has more error checking):

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    print "\e]50;@ARGV\a";
    

    I don’t know which other terminal emulators recognize this sequence. In particular, I find that it doesn’t work under screen, even if the screen session is in an xterm window.

    Note that you have to specify the name of the font ("10x20", "9x15"), not its size.

    EDIT: I should pay more attention to tags. In C++, it would be something like:

    std::cout << "\x1b]50;" << font_name << "\a" << std::flush;
    

    UPDATE: With xterm, this won’t work if you’re using TrueType fonts. Also, Dúthomhas suggests in a comment:

    I know this is old, but all terminfo strings should be printed using
    putp() [or tputs()], even in C++.

    putp( (std::string{ "\33]50;" } + font_name + "\a").c_str() );

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a text area in my form which accepts all possible characters from
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I used javascript for loading a picture on my website depending on which small
I am reading a book about Javascript and jQuery and using one of the
I am doing a simple coin flipping experiment for class that involves flipping a
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.