From a8504c2741a6929e677c2bcd759f4faf430d3493 Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Sun, 20 Feb 2022 19:24:33 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20remove=20security=20tweeks=20men?= =?UTF-8?q?u?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 +++--------- src/tui.cpp | 5 ----- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 1bdde45..4fc98dc 100644 --- a/README.md +++ b/README.md @@ -102,15 +102,9 @@ Main Menu │ ├── Install Custom Packages │ ├── System Tweaks | │ ├── Enable Automatic Login -| │ ├── Performance (TODO) -| | │ ├── I/O schedulers -| | │ ├── Swap configuration -| | │ └── zram -| | │ -| │ └── Security and systemd Tweaks (TODO) -| | ├── Amend journald Logging -| | ├── Disable Coredump Logging -| | └── Restrict Access to Kernel Logs +| │ └── Performance +| | ├── I/O schedulers +| | └── Swap configuration | │ │ ├── Review Configuration Files │ └── Chroot into Installation diff --git a/src/tui.cpp b/src/tui.cpp index 3af3dfb..6004b42 100644 --- a/src/tui.cpp +++ b/src/tui.cpp @@ -1181,13 +1181,11 @@ void performance_menu() { static constexpr auto tweaks_body = "Various configuration options"; detail::menu_widget(menu_entries, ok_callback, &selected, &screen, tweaks_body, {.text_size = size(HEIGHT, GREATER_THAN, 1)}); } -void security_menu() { } void tweaks_menu() noexcept { const std::vector menu_entries = { "Enable Automatic Login", "Performance", - "Security and systemd Tweaks", "Back", }; @@ -1201,9 +1199,6 @@ void tweaks_menu() noexcept { case 1: tui::performance_menu(); break; - case 2: - tui::security_menu(); - break; default: screen.ExitLoopClosure()(); break;