cppscripts/helpers.hpp
tastytea 3cad575f7c
Add statusweather.
Get weather info from openweathermap.org for use with i3blocks.
2021-08-23 16:53:26 +02:00

15 lines
228 B
C++

#ifndef CPPSCRIPTS_HELPERS_HPP
#define CPPSCRIPTS_HELPERS_HPP
#include <string>
#include <string_view>
namespace helpers
{
std::string get_env(std::string_view name);
} // namespace helpers
#endif // CPPSCRIPTS_HELPERS_HPP