Skip to content

Instantly share code, notes, and snippets.

@troyscott
Created February 5, 2012 04:20
Show Gist options
  • Save troyscott/1742672 to your computer and use it in GitHub Desktop.
Save troyscott/1742672 to your computer and use it in GitHub Desktop.
byobu custom notification script
#!/usr/bin/env python
#
# example of a byobu custom notification script
# place the file in $HOME/.byobu/bin
# make sure the script is executable (chmod +x)
# displays the kernel version
# every 10 seconds (NN_name where NN is the number of seconds)
import os
import sys
k = os.uname()[2]
print k
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment