Skip to content

Commit

Permalink
Tried my best with an vram icon
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Sep 6, 2024
1 parent 5c2d342 commit b4c12ad
Show file tree
Hide file tree
Showing 5 changed files with 154 additions and 115 deletions.
151 changes: 151 additions & 0 deletions data/icons/gpu-vram-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion data/icons/icons.indicator.gresource.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<file compressed="true" preprocess="xml-stripblanks">cpu-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">gpu-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">ram-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">memory-gpu-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">gpu-vram-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">swap-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">file-deleted-symbolic.svg</file>
<file compressed="true" preprocess="xml-stripblanks">temperature-sensor-symbolic.svg</file>
Expand Down
112 changes: 0 additions & 112 deletions data/icons/memory-gpu-symbolic.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/Indicator/Widgets/DisplayWidget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class Monitor.Widgets.DisplayWidget : Gtk.Grid {
public IndicatorWidget network_down_widget = new IndicatorWidget ("go-down-symbolic");

public IndicatorWidget gpu_widget = new IndicatorWidget ("gpu-symbolic");
public IndicatorWidget gpu_memory_widget = new IndicatorWidget ("memory-gpu-symbolic");
public IndicatorWidget gpu_memory_widget = new IndicatorWidget ("gpu-vram-symbolic");
public IndicatorWidget gpu_temperature_widget = new IndicatorWidget ("temperature-gpu-symbolic");

construct {
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/Statusbar/Statusbar.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Monitor.Statusbar : Gtk.ActionBar {
tooltip_text = _("GPU")
};

var gpu_memory_icon = new Gtk.Image.from_icon_name ("memory-gpu-symbolic", Gtk.IconSize.SMALL_TOOLBAR) {
var gpu_memory_icon = new Gtk.Image.from_icon_name ("gpu-vram-symbolic", Gtk.IconSize.SMALL_TOOLBAR) {
tooltip_text = _("VRAM")
};

Expand Down

0 comments on commit b4c12ad

Please sign in to comment.