Happy linter

This commit is contained in:
Viktar Lukashonak 2022-12-10 16:48:22 +03:00
parent 57ad7f9536
commit 272c638f7e
No known key found for this signature in database
GPG Key ID: 08A413AA87200A6F
1 changed files with 9 additions and 7 deletions

View File

@ -5,8 +5,8 @@
#include <ctime>
#include <iomanip>
#include <sstream>
#include <regex>
#include <sstream>
#include <type_traits>
#include "util/ustring_clen.hpp"
@ -76,8 +76,11 @@ waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
}
if (config_["format-calendar-weeks"].isString()) {
weeks_format_ = std::regex_replace(config_["format-calendar-weeks"].asString(), std::regex("\\{\\}"), (first_day_of_week() == date::Monday) ? "{:%V}" : "{:%U}");
weeks_format_left_gaps = std::regex_replace(weeks_format_, std::regex(".*<b>|</b>.*|\\{.?+\\}"), "").length();
weeks_format_ =
std::regex_replace(config_["format-calendar-weeks"].asString(), std::regex("\\{\\}"),
(first_day_of_week() == date::Monday) ? "{:%V}" : "{:%U}");
weeks_format_left_gaps =
std::regex_replace(weeks_format_, std::regex(".*<b>|</b>.*|\\{.?+\\}"), "").length();
} else {
weeks_format_ = "";
}
@ -192,7 +195,6 @@ auto waybar::modules::Clock::calendar_text(const waybar_time& wtime) -> std::str
std::stringstream os;
enum class WeeksSide {
LEFT,
RIGHT,