mirror of
https://github.com/polybar/polybar.git
synced 2026-03-30 03:56:22 +00:00
16 lines
283 B
C++
16 lines
283 B
C++
#include "x11/xresources.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
template <>
|
|
string xresource_manager::convert(string&& value) const {
|
|
return forward<string>(value);
|
|
}
|
|
|
|
template <>
|
|
double xresource_manager::convert(string&& value) const {
|
|
return std::strtod(value.c_str(), nullptr);
|
|
}
|
|
|
|
POLYBAR_NS_END
|