fix: lint
This commit is contained in:
parent
a5299af3c2
commit
7ab9a560ae
|
@ -25,8 +25,8 @@ class Window : public waybar::ALabel {
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const waybar::Bar &bar_;
|
const waybar::Bar &bar_;
|
||||||
struct wl_output *output_; // stores the output this module belongs to
|
struct wl_output *output_; // stores the output this module belongs to
|
||||||
struct wl_output *focused_output_; // stores the currently focused output
|
struct wl_output *focused_output_; // stores the currently focused output
|
||||||
struct zriver_seat_status_v1 *seat_status_;
|
struct zriver_seat_status_v1 *seat_status_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -94,8 +94,7 @@ std::tuple<std::vector<uint16_t>, std::string> waybar::modules::Cpu::getCpuUsage
|
||||||
|
|
||||||
std::tuple<float, float, float> waybar::modules::Cpu::getCpuFrequency() {
|
std::tuple<float, float, float> waybar::modules::Cpu::getCpuFrequency() {
|
||||||
std::vector<float> frequencies = parseCpuFrequencies();
|
std::vector<float> frequencies = parseCpuFrequencies();
|
||||||
if (frequencies.empty())
|
if (frequencies.empty()) {
|
||||||
{
|
|
||||||
return {0.f, 0.f, 0.f};
|
return {0.f, 0.f, 0.f};
|
||||||
}
|
}
|
||||||
auto [min, max] = std::minmax_element(std::begin(frequencies), std::end(frequencies));
|
auto [min, max] = std::minmax_element(std::begin(frequencies), std::end(frequencies));
|
||||||
|
|
Loading…
Reference in New Issue