Update i3bar.go

This commit is contained in:
akp 2023-01-16 03:44:18 +00:00
parent 27c8782713
commit beebafdf5d
No known key found for this signature in database
GPG key ID: AA5726202C8879B7

View file

@ -223,6 +223,9 @@ type BlockGenerator interface {
Block(*ColorSet) (*Block, error)
// Frequency should return the frequency at which the block is updated, as
// "1 per n seconds".
//
// A frequency of zero means that the Block method will only be called
// once, ever.
Frequency() uint8
}