How to stop windows console cursors from blinking
Asked Answered
B

2

5

I know how to completely hide a cursor, But is their any way to just stop it from blinking? It's oddly disturbing...

I'm not gonna install 3rd party software for this, what I want is simple solution using few lines of C++.

Bennybenoit answered 19/1, 2020 at 3:40 Comment(0)
M
8

Go to Run prompt (Win+R)

Paste into Open box:

control main.cpl keyboard

Press OK Keyboard properties dialog appears.

Set Cursor blink rate to None. Press OK

Maurreen answered 19/1, 2020 at 3:49 Comment(1)
Now every single blinking cursors are gone from my PC lmaoBennybenoit
L
3

For the record, by cmd you can do the same

You can save this code as desable_cursor_blink.cmd, and click/run...

Windows Registry Editor Version 5.00; [HKEY_CURRENT_USER\Control Panel\Desktop]"CursorBlinkRate"="-1"
reg import %~f0

  • By command line, you also can try:
%__APPDIR__%reg add "HKCU\Control Panel\Desktop" /v CursorBlinkRate /t REG_SZ /d -1 /f

Ludendorff answered 19/1, 2020 at 4:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.