Created
July 26, 2011 12:49
-
-
Save v6ak/1106674 to your computer and use it in GitHub Desktop.
Notifikace dokončení všech emerge - snad to funguje
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Busy waiting is very dirty, but it is very simple... | |
| while find /var/tmp/portage/ -name '*_lockfile' | grep lockfile; do | |
| sleep 1 | |
| done | |
| notify-send -t $((30*60*1000)) "doemergováno" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment