ssanthosh243 / semicomplete

Automatically exported from code.google.com/p/semicomplete
0 stars 0 forks source link

PATCH: add xdotool support for setting a window's urgency hint. #39

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Using the attached patch, you can set or unset the urgency hint of a window as 
follows:

Set the hint:
  $ xdotool set_window --urgency 1 `xdotool search --name test`

Unset the hint:
  $ xdotool set_window --urgency 0 `xdotool search --name test`

Original issue reported on code.google.com by ervan...@gmail.com on 6 Nov 2010 at 9:14

Attachments:

GoogleCodeExporter commented 9 years ago
Thanks for the patch! It'll be in the next release.

BTW, your example can be written more cleanly as:
xdotool search --name test set_window --urgency 1

Uses the command chaining from 2.20100623 and newer.

Original comment by jls.semi...@gmail.com on 6 Nov 2010 at 9:38

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Code checked in. New release will be soon.

Original comment by jls.semi...@gmail.com on 6 Nov 2010 at 9:53