mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:57:35 +00:00
MenuApplets: Rename CPUGraph to ResourceGraph
The plan is to extend what currently is known as "CPUGraph" and let the SystemServer spawn multiple instances of it - which then can show memory or network usages as well :^) Simply renaming the applet is the first step.
This commit is contained in:
parent
ea58563970
commit
b46a8d7335
7 changed files with 6 additions and 6 deletions
1
MenuApplets/CPUGraph/.gitignore
vendored
1
MenuApplets/CPUGraph/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
CPUGraph.MenuApplet
|
1
MenuApplets/ResourceGraph/.gitignore
vendored
Normal file
1
MenuApplets/ResourceGraph/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
ResourceGraph.MenuApplet
|
|
@ -1,6 +1,6 @@
|
|||
OBJS = main.o
|
||||
|
||||
PROGRAM = CPUGraph.MenuApplet
|
||||
PROGRAM = ResourceGraph.MenuApplet
|
||||
|
||||
LIB_DEPS = GUI IPC Gfx Thread Pthread Core
|
||||
|
|
@ -124,7 +124,7 @@ int main(int argc, char** argv)
|
|||
}
|
||||
|
||||
auto window = GUI::Window::construct();
|
||||
window->set_title("CPUGraph");
|
||||
window->set_title("ResourceGraph");
|
||||
window->set_window_type(GUI::WindowType::MenuApplet);
|
||||
window->resize(30, 16);
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue