mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 11:12:49 +00:00
Add option for sensor tooltips instead of sliders
Partially implements https://github.com/scorpion-26/gBar/issues/48
This commit is contained in:
parent
d811b14767
commit
0812c3680f
5 changed files with 112 additions and 40 deletions
|
@ -101,6 +101,9 @@ NetworkAdapter: eno1
|
||||||
# Disables the network widget when set to false
|
# Disables the network widget when set to false
|
||||||
NetworkWidget: true
|
NetworkWidget: true
|
||||||
|
|
||||||
|
# Use tooltips instead of sliders for the sensors
|
||||||
|
SensorTooltips: false
|
||||||
|
|
||||||
# Enables tray icons
|
# Enables tray icons
|
||||||
EnableSNI: true
|
EnableSNI: true
|
||||||
|
|
||||||
|
|
|
@ -163,6 +163,11 @@ in {
|
||||||
default = true;
|
default = true;
|
||||||
description = "Disables the network widget when set to false";
|
description = "Disables the network widget when set to false";
|
||||||
};
|
};
|
||||||
|
SensorTooltips = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Use tooltips instead of sliders for the sensors";
|
||||||
|
};
|
||||||
EnableSNI = mkOption {
|
EnableSNI = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = true;
|
||||||
|
|
84
src/Bar.cpp
84
src/Bar.cpp
|
@ -28,7 +28,15 @@ namespace Bar
|
||||||
double usage = System::GetCPUUsage();
|
double usage = System::GetCPUUsage();
|
||||||
double temp = System::GetCPUTemp();
|
double temp = System::GetCPUTemp();
|
||||||
|
|
||||||
cpuText->SetText("CPU: " + Utils::ToStringPrecision(usage * 100, "%0.1f") + "% " + Utils::ToStringPrecision(temp, "%0.1f") + "°C");
|
std::string text = "CPU: " + Utils::ToStringPrecision(usage * 100, "%0.1f") + "% " + Utils::ToStringPrecision(temp, "%0.1f") + "°C";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cpuText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(usage);
|
sensor.SetValue(usage);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -38,7 +46,15 @@ namespace Bar
|
||||||
{
|
{
|
||||||
double percentage = System::GetBatteryPercentage();
|
double percentage = System::GetBatteryPercentage();
|
||||||
|
|
||||||
batteryText->SetText("Battery: " + Utils::ToStringPrecision(percentage * 100, "%0.1f") + "%");
|
std::string text = "Battery: " + Utils::ToStringPrecision(percentage * 100, "%0.1f") + "%";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
batteryText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(percentage);
|
sensor.SetValue(percentage);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -50,7 +66,15 @@ namespace Bar
|
||||||
double used = info.totalGiB - info.freeGiB;
|
double used = info.totalGiB - info.freeGiB;
|
||||||
double usedPercent = used / info.totalGiB;
|
double usedPercent = used / info.totalGiB;
|
||||||
|
|
||||||
ramText->SetText("RAM: " + Utils::ToStringPrecision(used, "%0.2f") + "GiB/" + Utils::ToStringPrecision(info.totalGiB, "%0.2f") + "GiB");
|
std::string text = "RAM: " + Utils::ToStringPrecision(used, "%0.2f") + "GiB/" + Utils::ToStringPrecision(info.totalGiB, "%0.2f") + "GiB";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ramText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(usedPercent);
|
sensor.SetValue(usedPercent);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -61,8 +85,16 @@ namespace Bar
|
||||||
{
|
{
|
||||||
System::GPUInfo info = System::GetGPUInfo();
|
System::GPUInfo info = System::GetGPUInfo();
|
||||||
|
|
||||||
gpuText->SetText("GPU: " + Utils::ToStringPrecision(info.utilisation, "%0.1f") + "% " + Utils::ToStringPrecision(info.coreTemp, "%0.1f") +
|
std::string text = "GPU: " + Utils::ToStringPrecision(info.utilisation, "%0.1f") + "% " +
|
||||||
"°C");
|
Utils::ToStringPrecision(info.coreTemp, "%0.1f") + "°C";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
gpuText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(info.utilisation / 100);
|
sensor.SetValue(info.utilisation / 100);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -72,8 +104,16 @@ namespace Bar
|
||||||
{
|
{
|
||||||
System::VRAMInfo info = System::GetVRAMInfo();
|
System::VRAMInfo info = System::GetVRAMInfo();
|
||||||
|
|
||||||
vramText->SetText("VRAM: " + Utils::ToStringPrecision(info.usedGiB, "%0.2f") + "GiB/" + Utils::ToStringPrecision(info.totalGiB, "%0.2f") +
|
std::string text = "VRAM: " + Utils::ToStringPrecision(info.usedGiB, "%0.2f") + "GiB/" +
|
||||||
"GiB");
|
Utils::ToStringPrecision(info.totalGiB, "%0.2f") + "GiB";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
vramText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(info.usedGiB / info.totalGiB);
|
sensor.SetValue(info.usedGiB / info.totalGiB);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -84,8 +124,16 @@ namespace Bar
|
||||||
{
|
{
|
||||||
System::DiskInfo info = System::GetDiskInfo();
|
System::DiskInfo info = System::GetDiskInfo();
|
||||||
|
|
||||||
diskText->SetText("Disk: " + Utils::ToStringPrecision(info.usedGiB, "%0.2f") + "GiB/" + Utils::ToStringPrecision(info.totalGiB, "%0.2f") +
|
std::string text = "Disk: " + Utils::ToStringPrecision(info.usedGiB, "%0.2f") + "GiB/" +
|
||||||
"GiB");
|
Utils::ToStringPrecision(info.totalGiB, "%0.2f") + "GiB";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
diskText->SetText(text);
|
||||||
|
}
|
||||||
sensor.SetValue(info.usedGiB / info.totalGiB);
|
sensor.SetValue(info.usedGiB / info.totalGiB);
|
||||||
return TimerResult::Ok;
|
return TimerResult::Ok;
|
||||||
}
|
}
|
||||||
|
@ -246,7 +294,15 @@ namespace Bar
|
||||||
std::string upload = Utils::StorageUnitDynamic(bpsUp, "%0.1f%s");
|
std::string upload = Utils::StorageUnitDynamic(bpsUp, "%0.1f%s");
|
||||||
std::string download = Utils::StorageUnitDynamic(bpsDown, "%0.1f%s");
|
std::string download = Utils::StorageUnitDynamic(bpsDown, "%0.1f%s");
|
||||||
|
|
||||||
|
std::string text = Config::Get().networkAdapter + ": " + upload + " Up/" + download + " Down";
|
||||||
|
if (Config::Get().sensorTooltips)
|
||||||
|
{
|
||||||
|
sensor.SetTooltip(text);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
networkText->SetText(Config::Get().networkAdapter + ": " + upload + " Up/" + download + " Down");
|
networkText->SetText(Config::Get().networkAdapter + ": " + upload + " Up/" + download + " Down");
|
||||||
|
}
|
||||||
|
|
||||||
sensor.SetUp(bpsUp);
|
sensor.SetUp(bpsUp);
|
||||||
sensor.SetDown(bpsDown);
|
sensor.SetDown(bpsDown);
|
||||||
|
@ -310,6 +366,8 @@ namespace Bar
|
||||||
box->SetSpacing({0, false});
|
box->SetSpacing({0, false});
|
||||||
Utils::SetTransform(*box, {-1, true, Alignment::Right});
|
Utils::SetTransform(*box, {-1, true, Alignment::Right});
|
||||||
box->SetOrientation(Utils::GetOrientation());
|
box->SetOrientation(Utils::GetOrientation());
|
||||||
|
{
|
||||||
|
if (!Config::Get().sensorTooltips)
|
||||||
{
|
{
|
||||||
auto revealer = Widget::Create<Revealer>();
|
auto revealer = Widget::Create<Revealer>();
|
||||||
revealer->SetTransition({Utils::GetTransitionType(), 500});
|
revealer->SetTransition({Utils::GetTransitionType(), 500});
|
||||||
|
@ -327,6 +385,8 @@ namespace Bar
|
||||||
textPtr = text.get();
|
textPtr = text.get();
|
||||||
revealer->AddChild(std::move(text));
|
revealer->AddChild(std::move(text));
|
||||||
}
|
}
|
||||||
|
box->AddChild(std::move(revealer));
|
||||||
|
}
|
||||||
|
|
||||||
auto sensor = Widget::Create<Sensor>();
|
auto sensor = Widget::Create<Sensor>();
|
||||||
sensor->SetClass(sensorClass);
|
sensor->SetClass(sensorClass);
|
||||||
|
@ -342,7 +402,6 @@ namespace Bar
|
||||||
sensor->AddTimer<Sensor>(std::move(callback), DynCtx::updateTime);
|
sensor->AddTimer<Sensor>(std::move(callback), DynCtx::updateTime);
|
||||||
Utils::SetTransform(*sensor, {24, true, Alignment::Fill});
|
Utils::SetTransform(*sensor, {24, true, Alignment::Fill});
|
||||||
|
|
||||||
box->AddChild(std::move(revealer));
|
|
||||||
box->AddChild(std::move(sensor));
|
box->AddChild(std::move(sensor));
|
||||||
}
|
}
|
||||||
eventBox->AddChild(std::move(box));
|
eventBox->AddChild(std::move(box));
|
||||||
|
@ -542,6 +601,8 @@ namespace Bar
|
||||||
box->SetSpacing({0, false});
|
box->SetSpacing({0, false});
|
||||||
Utils::SetTransform(*box, {-1, true, Alignment::Right});
|
Utils::SetTransform(*box, {-1, true, Alignment::Right});
|
||||||
box->SetOrientation(Utils::GetOrientation());
|
box->SetOrientation(Utils::GetOrientation());
|
||||||
|
{
|
||||||
|
if (!Config::Get().sensorTooltips)
|
||||||
{
|
{
|
||||||
auto revealer = Widget::Create<Revealer>();
|
auto revealer = Widget::Create<Revealer>();
|
||||||
revealer->SetTransition({Utils::GetTransitionType(), 500});
|
revealer->SetTransition({Utils::GetTransitionType(), 500});
|
||||||
|
@ -559,6 +620,8 @@ namespace Bar
|
||||||
DynCtx::networkText = text.get();
|
DynCtx::networkText = text.get();
|
||||||
revealer->AddChild(std::move(text));
|
revealer->AddChild(std::move(text));
|
||||||
}
|
}
|
||||||
|
box->AddChild(std::move(revealer));
|
||||||
|
}
|
||||||
|
|
||||||
auto sensor = Widget::Create<NetworkSensor>();
|
auto sensor = Widget::Create<NetworkSensor>();
|
||||||
sensor->SetLimitUp({(double)Config::Get().minUploadBytes, (double)Config::Get().maxUploadBytes});
|
sensor->SetLimitUp({(double)Config::Get().minUploadBytes, (double)Config::Get().maxUploadBytes});
|
||||||
|
@ -567,7 +630,6 @@ namespace Bar
|
||||||
sensor->AddTimer<NetworkSensor>(DynCtx::UpdateNetwork, DynCtx::updateTime);
|
sensor->AddTimer<NetworkSensor>(DynCtx::UpdateNetwork, DynCtx::updateTime);
|
||||||
Utils::SetTransform(*sensor, {24, true, Alignment::Fill});
|
Utils::SetTransform(*sensor, {24, true, Alignment::Fill});
|
||||||
|
|
||||||
box->AddChild(std::move(revealer));
|
|
||||||
box->AddChild(std::move(sensor));
|
box->AddChild(std::move(sensor));
|
||||||
}
|
}
|
||||||
eventBox->AddChild(std::move(box));
|
eventBox->AddChild(std::move(box));
|
||||||
|
|
|
@ -204,6 +204,7 @@ void Config::Load()
|
||||||
AddConfigVar("WorkspaceScrollInvert", config.workspaceScrollInvert, lineView, foundProperty);
|
AddConfigVar("WorkspaceScrollInvert", config.workspaceScrollInvert, lineView, foundProperty);
|
||||||
AddConfigVar("UseHyprlandIPC", config.useHyprlandIPC, lineView, foundProperty);
|
AddConfigVar("UseHyprlandIPC", config.useHyprlandIPC, lineView, foundProperty);
|
||||||
AddConfigVar("EnableSNI", config.enableSNI, lineView, foundProperty);
|
AddConfigVar("EnableSNI", config.enableSNI, lineView, foundProperty);
|
||||||
|
AddConfigVar("SensorTooltips", config.sensorTooltips, lineView, foundProperty);
|
||||||
|
|
||||||
AddConfigVar("MinUploadBytes", config.minUploadBytes, lineView, foundProperty);
|
AddConfigVar("MinUploadBytes", config.minUploadBytes, lineView, foundProperty);
|
||||||
AddConfigVar("MaxUploadBytes", config.maxUploadBytes, lineView, foundProperty);
|
AddConfigVar("MaxUploadBytes", config.maxUploadBytes, lineView, foundProperty);
|
||||||
|
|
|
@ -33,6 +33,7 @@ public:
|
||||||
bool workspaceScrollInvert = false; // Up = +1, instead of Up = -1
|
bool workspaceScrollInvert = false; // Up = +1, instead of Up = -1
|
||||||
bool useHyprlandIPC = true; // Use Hyprland IPC instead of ext_workspaces protocol (Less buggy, but also less performant)
|
bool useHyprlandIPC = true; // Use Hyprland IPC instead of ext_workspaces protocol (Less buggy, but also less performant)
|
||||||
bool enableSNI = true; // Enable tray icon
|
bool enableSNI = true; // Enable tray icon
|
||||||
|
bool sensorTooltips = false; // Use tooltips instead of sliders for the sensors
|
||||||
|
|
||||||
// Controls for color progression of the network widget
|
// Controls for color progression of the network widget
|
||||||
uint32_t minUploadBytes = 0; // Bottom limit of the network widgets upload. Everything below it is considered "under"
|
uint32_t minUploadBytes = 0; // Bottom limit of the network widgets upload. Everything below it is considered "under"
|
||||||
|
|
Loading…
Reference in a new issue