mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:37:45 +00:00
ProcessManager: Rename it to SystemMonitor
This is a more appropriate name now that it does a lot more than just manage processes ^)
This commit is contained in:
parent
c7040cee62
commit
cbdda91065
23 changed files with 9 additions and 9 deletions
|
@ -11,6 +11,6 @@ OBJS = \
|
|||
NetworkStatisticsWidget.o \
|
||||
main.o
|
||||
|
||||
APP = ProcessManager
|
||||
APP = SystemMonitor
|
||||
|
||||
include ../Makefile.common
|
|
@ -129,7 +129,7 @@ int main(int argc, char** argv)
|
|||
toolbar->add_action(continue_action);
|
||||
|
||||
auto menubar = make<GMenuBar>();
|
||||
auto app_menu = make<GMenu>("Process Manager");
|
||||
auto app_menu = make<GMenu>("System Monitor");
|
||||
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [](const GAction&) {
|
||||
GApplication::the().quit(0);
|
||||
return;
|
||||
|
@ -195,13 +195,13 @@ int main(int argc, char** argv)
|
|||
};
|
||||
|
||||
auto* window = new GWindow;
|
||||
window->set_title("Process Manager");
|
||||
window->set_title("System Monitor");
|
||||
window->set_rect(20, 200, 680, 400);
|
||||
window->set_main_widget(keeper);
|
||||
|
||||
window->show();
|
||||
|
||||
window->set_icon(load_png("/res/icons/16x16/app-process-manager.png"));
|
||||
window->set_icon(load_png("/res/icons/16x16/app-system-monitor.png"));
|
||||
|
||||
return app.exec();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue