How can I hide the cursor in ncurses?

40,284

You need curs_set(0)

To quote the man page:

The curs_set routine sets the cursor state to invisible, normal, or very visible for visibility equal to 0, 1, or 2 respectively. If the terminal supports the visibility requested, the previous cursor state is returned; otherwise, ERR is returned.

Share:
40,284
fouric
Author by

fouric

merge me

Updated on July 08, 2022

Comments

  • fouric
    fouric almost 2 years

    I am writing ncurses programs in C and C++. I have not found a way to conceal the cursor to the user. I have looked around on the internet a bit, but most of the information that I have found either concerns Python/Ruby implementations of (n)curses or doesn't actually concern the hiding of the cursor. How may I accomplish my goal?