Last active
October 15, 2016 20:21
-
-
Save clonejo/ae8299edcadf496308dbcca09bf108f4 to your computer and use it in GitHub Desktop.
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
{{! Our format string: }} | |
{{{ entry_a }}} | |
{{{ entry_a2 }}} | |
{{{ entry_b }}} | |
{{^ entry_b }} | |
some value | |
{{/entry_b}} | |
- and some static stuff | |
================ BARTENDER-SNIP ================ | |
// this is a timer entry | |
entry_a = { | |
type = "timer"; | |
seconds = 1; | |
command = "date +%H:%M:%S.%N"; | |
}; | |
entry_a2 = { | |
type = "timer"; | |
seconds = 1; | |
command = "date +%H:%M:%S.%N"; | |
}; | |
// this is a FIFO entry | |
entry_b = { | |
type = "fifo"; | |
fifo_path = "~/tmp/entry_b_fifo"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment