mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
16 lines
261 B
Text
16 lines
261 B
Text
|
POLYBAR_NS
|
||
|
|
||
|
namespace modules {
|
||
|
template <typename Impl>
|
||
|
void static_module<Impl>::start() {
|
||
|
CAST_MOD(Impl)->broadcast();
|
||
|
}
|
||
|
|
||
|
template <typename Impl>
|
||
|
bool static_module<Impl>::build(builder*, string) const {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
POLYBAR_NS_END
|