mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
Base: Remove useless default config files from /home/anon/.config
This commit is contained in:
parent
e3793c3953
commit
e35bdd3460
7 changed files with 1 additions and 44 deletions
|
@ -1,9 +0,0 @@
|
|||
[DirectoryView]
|
||||
ViewMode=Icon
|
||||
ShowDotFiles=false
|
||||
|
||||
[Layout]
|
||||
ShowToolbar=true
|
||||
ShowStatusBar=true
|
||||
ShowLocationBar=true
|
||||
ShowFolderPane=true
|
|
@ -1,2 +0,0 @@
|
|||
[Defaults]
|
||||
Font=/res/fonts/KaticaRegular10.font
|
|
@ -1,12 +0,0 @@
|
|||
[PixelGrid]
|
||||
Threshold=15
|
||||
Show=true
|
||||
|
||||
[Rulers]
|
||||
Show=true
|
||||
|
||||
[Guides]
|
||||
Show=true
|
||||
|
||||
[ImageEditor]
|
||||
ShowActiveLayerBoundary=true
|
|
@ -1,6 +1,3 @@
|
|||
[Clock]
|
||||
TimeFormat=%T
|
||||
|
||||
[QuickLaunch_Entries]
|
||||
Browser=0:Browser.af
|
||||
FileManager=1:FileManager.af
|
||||
|
|
|
@ -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
|
|
@ -1,4 +0,0 @@
|
|||
[Layout]
|
||||
ShowRuler=true
|
||||
ShowToolbar=true
|
||||
ShowStatusBar=true
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue