Base: Remove useless default config files from /home/anon/.config

This commit is contained in:
Bastiaan van der Plaat 2024-12-30 20:35:28 +01:00
parent e3793c3953
commit e35bdd3460
7 changed files with 1 additions and 44 deletions

View file

@ -1,9 +0,0 @@
[DirectoryView]
ViewMode=Icon
ShowDotFiles=false
[Layout]
ShowToolbar=true
ShowStatusBar=true
ShowLocationBar=true
ShowFolderPane=true

View file

@ -1,2 +0,0 @@
[Defaults]
Font=/res/fonts/KaticaRegular10.font

View file

@ -1,12 +0,0 @@
[PixelGrid]
Threshold=15
Show=true
[Rulers]
Show=true
[Guides]
Show=true
[ImageEditor]
ShowActiveLayerBoundary=true

View file

@ -1,6 +1,3 @@
[Clock]
TimeFormat=%T
[QuickLaunch_Entries]
Browser=0:Browser.af
FileManager=1:FileManager.af

View file

@ -1,13 +0,0 @@
[Startup]
Command=
[Terminal]
ShowScrollBar=true
MaxHistorySize=1024
AutoMark=MarkInteractiveShellPrompt
[Window]
Opacity=255
Bell=Visible
ColorScheme=Default
[Cursor]
Shape=Block
Blinking=true

View file

@ -1,4 +0,0 @@
[Layout]
ShowRuler=true
ShowToolbar=true
ShowStatusBar=true

View file

@ -59,7 +59,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
window->show();
auto default_path = TRY(String::from_byte_string(Config::read_string("FontEditor"sv, "Defaults"sv, "Font"sv, {})));
auto default_path = TRY(String::from_byte_string(Config::read_string("FontEditor"sv, "Defaults"sv, "Font"sv, "/res/fonts/KaticaRegular10.font"sv)));
auto path_to_load = path.is_empty() ? default_path : path;
if (!path_to_load.is_empty()) {
auto response = FileSystemAccessClient::Client::the().request_file_read_only_approved(window, path_to_load);