New answers tagged window
3
It might be simpler, and more reliable, to rely on your window manager or X11 to handle this by writing a "real" X11 application.
What you want from the shell is something that registers with the window manager and waits for a desired event type before returning to the shell... it's much more load-friendly if you can avoid looping inside the shell. (Your ...
2
This should give you all (OK: most. What have I forgotten? Sockets?) file system activities which include writes:
strace -f command 2>&1 |
grep -e '^open.*O_CREAT' \
-e ^write \
-e ^mkdir \
-e ^rmdir \
-e ^unlink \
-e ^rename \
-e ^chmod \
-e ^link \
-e ^symlink \
-e ^mknod
With this information a ...
Top 50 recent answers are included
