Howto: Linux Refresh all or an X screen Kde-Gnome desktop

Linux or UNIX desktop systems are quite stable. However, some time weird things happen like unreadable screen and confusing application causing massive screen messed up, which makes it difficult to read what is on the Linux desktop.

Generally, I have observed that most users prefer to hit CTRL+ALT+Back Space or just kills the X session. However, there is way to get rid of this problem.

xrefresh is a simple X command that causes all or part of your screen to be repainted. This is useful when system messages have messed up your screen. Xrefresh maps a window on top of the desired area of the screen and then immediately unmaps it, causing refresh events to be sent to all applications. By default, a window with no
background is used, causing all applications to repaint smoothly. However, the various options can be used to indicate that a solid background (of any color) or the root window background should be used instead.

Just type the xrefresh:
$ xrefresh

You can also pass -white and -black option to xrefresh command:
$ xrefresh -white
OR
$ xrefresh -black

Where,

  • -white: Use a white background. The screen just appears to flash quickly, and then repaint (this is a default).
  • -black: Use a black background (in effect, turning off all of the electron guns to the tube). This can be somewhat disorienting as everything goes black for a moment.

If refresh will not clear the X display consider using xkill to kill particular X application or kill your self i.e. kill user account.

I am not sure if there is any such a program exists for Windows XP desktop. If any one has information please share with us.

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 2 comments… read them below or add one }

1 Saikat 09.21.06 at 8:26 am

It’s working. Wonderful.

2 Chaz 03.19.07 at 7:42 pm

If you want to refresh the KDE desktop just enter the command:

dcop kwin KWinInterface refresh &>/dev/null

I wasn’t able to get xrefresh to work with KDE!

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post: How to make money from a free, Linux, and Open Source software projects

Next post: Linux: How to write a System V init script to start, stop, and restart my own application or service