feat: remove sysinfo app

This commit is contained in:
2026-03-31 10:33:02 +02:00
parent 55748564b7
commit 6dc8302063
5 changed files with 1 additions and 144 deletions
-5
View File
@@ -354,7 +354,6 @@ void gui::desktop_handle_mouse(DesktopState* ds) {
// Dispatch desktop-owned launcher entry
switch (row.app_id) {
case 1: open_filemanager(ds); break;
case 2: open_sysinfo(ds); break;
case 11: open_settings(ds); break;
case 12: open_reboot_dialog(ds); break;
case 14: open_shutdown_dialog(ds); break;
@@ -758,10 +757,6 @@ void gui::desktop_handle_keyboard(DesktopState* ds, const Montauk::KeyEvent& key
open_filemanager(ds);
return;
}
if (key.ascii == 'i' || key.ascii == 'I') {
open_sysinfo(ds);
return;
}
if (key.ascii == 'c' || key.ascii == 'C') {
open_calculator(ds);
return;