mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +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
Notes:
sideshowbarker
2024-07-19 07:43:59 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/b46a8d73355 Pull-request: https://github.com/SerenityOS/serenity/pull/1737
7 changed files with 6 additions and 6 deletions
|
@ -48,7 +48,7 @@ User=anon
|
|||
KeepAlive=1
|
||||
User=anon
|
||||
|
||||
[CPUGraph.MenuApplet]
|
||||
[ResourceGraph.MenuApplet]
|
||||
KeepAlive=1
|
||||
User=anon
|
||||
|
||||
|
|
|
@ -24,4 +24,4 @@ DoubleClickSpeed=250
|
|||
Mode=scaled
|
||||
|
||||
[Applet]
|
||||
Order=Clock,Audio,CPUGraph,UserName
|
||||
Order=Clock,Audio,ResourceGraph,UserName
|
||||
|
|
|
@ -166,7 +166,7 @@ cp ../Servers/NotificationServer/NotificationServer mnt/bin/NotificationServer
|
|||
cp ../Servers/WebServer/WebServer mnt/bin/WebServer
|
||||
cp ../Shell/Shell mnt/bin/Shell
|
||||
cp ../MenuApplets/Audio/Audio.MenuApplet mnt/bin/
|
||||
cp ../MenuApplets/CPUGraph/CPUGraph.MenuApplet mnt/bin/
|
||||
cp ../MenuApplets/ResourceGraph/ResourceGraph.MenuApplet mnt/bin/
|
||||
cp ../MenuApplets/Clock/Clock.MenuApplet mnt/bin/
|
||||
cp ../MenuApplets/UserName/UserName.MenuApplet mnt/bin
|
||||
echo "done"
|
||||
|
|
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…
Reference in a new issue