Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/Resources/CPUCache.vala
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

// This struct holds paths to cpu cache data
// Learn more: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-devices-system-cpu
[Compact]
public class Monitor.CPUCache : Object {
public class Monitor.CPUCache {
//
// allocation_policy:
// - WriteAllocate:
Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonFan.vala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// This struct holds paths to temperature data
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonFan : Object {
public class Monitor.HwmonFan {
// fan speed in RPM
public string input;

Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonFrequency.vala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// This struct holds paths to temperature data
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonFrequency : Object {
public class Monitor.HwmonFrequency {
// freq channel label
public string label;

Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonPWM.vala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// This struct holds paths to temperature data
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonPWM : Object {
public class Monitor.HwmonPWM {
// pulse width modulation fan level (0-255)
public string pwm;

Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonPower.vala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// This struct holds paths to temperature data
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonPower : Object {
public class Monitor.HwmonPower {
// average power used by the GPU in microWatts
public string average;

Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonTemperature.vala
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
// returns contents of the file as a string
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonTemperature : Object {
public class Monitor.HwmonTemperature {
// temperature channel label
// temp2_label and temp3_label are supported on SOC15 dGPUs only
public string _label;
Expand Down
3 changes: 1 addition & 2 deletions src/Resources/Hwmon/HwmonVoltage.vala
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
// This struct holds paths to temperature data
// Learn more: https://www.kernel.org/doc/html/v5.11/gpu/amdgpu.html#hwmon-interfaces

[Compact]
public class Monitor.HwmonVoltage : Object {
public class Monitor.HwmonVoltage {
// voltage channel label
public string label;

Expand Down
1 change: 0 additions & 1 deletion src/Resources/Storage/Volume.vala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* SPDX-FileCopyrightText: 2025 elementary, Inc. (https://elementary.io)
*/

[Compact]
public class Monitor.Volume : Object {
public string device;
public string label;
Expand Down