mirror of
https://github.com/polybar/polybar.git
synced 2024-11-03 04:33:30 -05:00
12 lines
170 B
C++
12 lines
170 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace env_util {
|
|
bool has(const char* var);
|
|
string get(const char* var, string fallback = "");
|
|
}
|
|
|
|
POLYBAR_NS_END
|