diff --git a/dot_wezterm.lua b/dot_wezterm.lua index ac85649..d8d4e07 100644 --- a/dot_wezterm.lua +++ b/dot_wezterm.lua @@ -19,7 +19,7 @@ config.color_scheme = 'Brogrammer' config.font = wezterm.font('TX-02') config.harfbuzz_features = { 'calt=0' } -onfig.font_size = 12 +config.font_size = 12 config.hide_tab_bar_if_only_one_tab = true config.initial_cols = 115 config.initial_rows = 35 diff --git a/private_Library/private_Application Support/superfile/config.toml b/private_Library/private_Application Support/superfile/config.toml index 6104083..638f234 100644 --- a/private_Library/private_Application Support/superfile/config.toml +++ b/private_Library/private_Application Support/superfile/config.toml @@ -1,27 +1,90 @@ +# More details are at https://superfile.dev/configure/superfile-config/ # change your theme theme = 'catpuccin' # -# useless for now -footer_panel_list = ['processes', 'metadata', 'clipboard'] -# +# The editor files will be opened with. (Leave blank to use the EDITOR environment variable). +editor = '' +# +# The editor directories will be opened with. (Leave blank to use the default editors). +dir_editor = '' +# +# Auto check for update +auto_check_update = true +# +# Cd on quit (For more details, please check out https://superfile.dev/configure/superfile-config/#cd_on_quit) +cd_on_quit = false +# +# Whether to open file preview automatically every time superfile is opened. +default_open_file_preview = true +# +# Whether to show image preview. +show_image_preview = true +# +# Whether to show additional footer info for file panel. +show_panel_footer_info = true +# +# The path of the first file panel when superfile is opened. +default_directory = '.' +# +# Display file sizes using powers of 1000 (kB, MB, GB) instead of powers of 1024 (KiB, MiB, GiB). +file_size_use_si = false +# +# Default sort type (0: Name, 1: Size, 2: Date Modified, 3: Type). +default_sort_type = 0 +# +# Default sort order (false: Ascending, true: Descending). +sort_order_reversed = false +# +# Case sensitive sort by name (capital "B" comes before "a" if true). +case_sensitive_sort = false +# +# Whether to close the shell on successful command execution. +shell_close_on_success = false +# +# Whether to enable debug mode. +debug = false +# +# Whether to ignore warnings about missing fields in the config file. +ignore_missing_fields = false +# # ================ Style ================= -# +# +# If you don't have or don't want Nerdfont installed you can turn this off +nerdfont = true +# +# Show checkbox icons in select mode (requires nerdfont) +show_select_icons = true +# # Set transparent background or not (this only work when your terminal background is transparent) -transparent_backgroun = false -# +transparent_background = false +# +# File preview width allow '0' (this mean same as file panel),'x' x must be less than 10 and greater than 1 (This means that the width of the file preview will be one xth of the total width.) +file_preview_width = 0 +# +# Whether to use the builtin syntax highlighting with chroma or use bat. Values: "" for builtin chroma, "bat" for bat +code_previewer = '' +# +# The length of the sidebar. If you don't want to display the sidebar, you can input 0 directly. If you want to display the value, please place it in the range of 3-20. +sidebar_width = 20 +# # Border style -border_top = "━" -border_bottom = "━" -border_left = "┃" -border_right = "┃" -border_top_left = "┏" -border_top_right = "┓" -border_bottom_left = "┗" -border_bottom_right = "┛" -border_middle_left = "┣" -border_middle_right = "┫" +border_top = '━' +border_bottom = '━' +border_left = '┃' +border_right = '┃' +border_top_left = '┏' +border_top_right = '┓' +border_bottom_left = '┗' +border_bottom_right = '┛' +border_middle_left = '┣' +border_middle_right = '┫' # # ==========PLUGINS========== # +# Plugins means that you need to install some external dependencies to use them. # # Show more detailed metadata, please install exiftool before enabling this plugin! metadata = false +# Enable MD5 checksum generation for files +enable_md5_checksum = false +# Zoxide support for the fast navigation +zoxide_support = false diff --git a/private_Library/private_Application Support/superfile/empty_superfile.log b/private_Library/private_Application Support/superfile/empty_superfile.log deleted file mode 100644 index e69de29..0000000 diff --git a/private_Library/private_Application Support/superfile/hotkeys.toml b/private_Library/private_Application Support/superfile/hotkeys.toml index 6cbc40a..ba66ced 100644 --- a/private_Library/private_Application Support/superfile/hotkeys.toml +++ b/private_Library/private_Application Support/superfile/hotkeys.toml @@ -2,6 +2,7 @@ # Global hotkeys (cannot conflict with other hotkeys) confirm = ['enter', ''] quit = ['esc', 'q'] +cd_quit = ['Q', ''] # movement list_up = ['up', 'k'] list_down = ['down', 'j'] @@ -27,6 +28,7 @@ copy_items = ['ctrl+c', ''] paste_items = ['ctrl+v', ''] cut_items = ['ctrl+x', ''] delete_items = ['ctrl+d', 'delete', ''] +permanently_delete_items = ['D', ''] # compress and extract extract_file = ['ctrl+e', ''] compress_file = ['ctrl+r', ''] @@ -39,6 +41,8 @@ toggle_dot_file = ['ctrl+h', ''] change_panel_mode = ['v', ''] open_help_menu = ['?', ''] open_command_line = [':', ''] +open_spf_prompt = ['>', ''] +open_zoxide = ['z', ''] copy_path = ['ctrl+p', ''] copy_present_working_directory = ['c', ''] toggle_footer = ['F', ''] @@ -51,7 +55,7 @@ cancel_typing = ['ctrl+c', 'esc'] parent_directory = ['h', 'backspace'] search_bar = ['ctrl+f', ''] # ================================================================================================= -# Select mode hotkeys (can conflict with other modes, cananot conflict with global hotkeys) +# Select mode hotkeys (can conflict with other modes, cannot conflict with global hotkeys) file_panel_select_mode_items_select_down = ['shift+down', 'J'] file_panel_select_mode_items_select_up = ['shift+up', 'K'] file_panel_select_all_items = ['A', ''] diff --git a/private_Library/private_Application Support/superfile/lastCheckVersion b/private_Library/private_Application Support/superfile/lastCheckVersion index b850f89..ae36ac7 100644 --- a/private_Library/private_Application Support/superfile/lastCheckVersion +++ b/private_Library/private_Application Support/superfile/lastCheckVersion @@ -1 +1 @@ -2024-05-11T18:49:59-07:00 \ No newline at end of file +2025-12-16T06:54:28Z \ No newline at end of file diff --git a/private_Library/private_Application Support/superfile/superfile.log b/private_Library/private_Application Support/superfile/superfile.log new file mode 100644 index 0000000..e630210 --- /dev/null +++ b/private_Library/private_Application Support/superfile/superfile.log @@ -0,0 +1,1005 @@ +time=2025-12-15T22:54:02.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.142-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:02.143-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:02.143-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.180-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.184-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:02.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:03.258-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:03.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.072-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.078-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.083-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.266-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.271-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.473-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.481-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.486-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.838-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.842-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:04.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.011-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.015-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.018-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.147-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.151-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.557-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:05.564-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.615-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.619-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.737-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.741-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.743-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.745-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.882-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.885-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.886-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.985-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.988-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.990-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:06.991-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.343-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.516-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.527-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.662-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:07.665-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:08.046-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:08.052-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:08.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:08.093-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:08.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:11.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:11.069-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:12.021-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:12.026-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:15.243-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:15.438-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.235-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.239-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.242-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.545-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.547-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.549-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.711-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:16.713-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:17.102-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:17.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:18.915-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:19.012-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:19.450-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:19.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:19.952-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:19.957-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.034-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.039-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.122-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.207-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.283-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.288-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.533-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.618-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.627-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.697-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.702-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.785-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.791-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.865-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.951-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:20.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.035-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.265-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.269-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.276-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.280-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.284-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.364-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.369-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.542-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.620-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.625-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.709-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.787-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.874-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:21.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.038-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.043-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.122-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.207-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.287-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.292-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.462-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.534-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.541-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.710-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.787-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.792-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.872-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:22.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.038-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.043-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.120-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.125-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.289-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.294-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.372-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.376-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.464-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.540-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.627-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.708-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.714-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.803-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.876-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:23.964-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.041-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.118-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.123-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.205-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.210-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.290-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.295-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.375-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.381-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.459-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.464-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.543-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.548-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.630-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.636-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.712-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.718-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.796-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.806-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.875-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.881-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.965-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:24.970-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.046-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.052-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.139-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.214-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.296-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.301-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.379-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.388-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.463-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.468-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.546-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.630-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.636-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.713-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.718-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.797-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.802-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.880-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.887-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.963-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:25.968-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.047-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.053-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.135-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.221-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.297-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.302-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.384-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.389-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.466-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.471-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.556-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.634-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.638-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.717-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:26.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:27.712-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:27.767-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:28.172-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.380-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.416-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:37.416-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:37.416-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.421-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.424-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.429-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:37.431-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:38.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.312-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.346-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:43.346-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:54:43.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.350-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.353-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.358-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:43.360-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:44.026-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.905-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:46.905-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.910-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.914-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.917-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.920-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:46.923-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.159-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.166-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.170-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.386-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.390-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.395-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.761-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.765-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:48.767-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:49.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:49.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:49.263-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:50.205-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.827-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:51.827-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:54:51.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.831-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.835-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.838-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:51.846-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.731-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.735-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.738-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:52.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.074-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.080-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.086-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.379-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.382-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.583-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.589-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.595-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.858-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:53.868-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:54.226-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:54.384-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:54.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:55.299-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:55.359-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:55.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:55.766-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.221-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.338-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.378-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.418-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.457-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.496-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.575-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.614-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.654-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.693-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.732-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.771-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.810-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.850-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.889-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.928-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:56.966-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.006-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.045-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.149-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.227-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.266-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.305-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.344-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.382-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.421-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.459-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.499-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.577-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.664-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.703-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.742-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.781-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:57.812-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:58.469-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:58.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:58.479-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.199-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.608-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.613-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:54:59.615-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.270-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.278-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.359-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.442-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.452-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.525-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.532-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.604-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.609-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.612-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.692-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.695-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.698-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.775-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.781-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.784-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.858-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.863-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.866-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:00.949-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.108-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.111-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.113-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.116-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.119-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.791-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.794-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.797-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.929-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:01.937-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.126-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.129-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.133-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.287-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.291-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.295-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:02.295-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.554-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.558-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:02.558-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:02.859-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.076-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.079-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.082-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.234-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.237-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.248-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.467-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:03.477-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:03.477-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.158-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.168-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.342-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.351-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.441-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.446-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.452-08:00 level=ERROR msg="Error open file" error="bufio.Scanner: token too long" +time=2025-12-15T22:55:04.452-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.945-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.951-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:04.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.022-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.187-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.271-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.280-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:05.281-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.361-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.439-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.444-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.451-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.526-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.532-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.611-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.616-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.624-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.828-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:05.953-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.313-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.333-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.335-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.337-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.342-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.344-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.346-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.348-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:07.348-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.351-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.354-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.357-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.360-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.365-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.368-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.370-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.372-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.375-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.835-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:07.851-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.189-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.391-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.397-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.402-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:08.402-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.746-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.749-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:08.753-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.503-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.508-08:00 level=ERROR msg="Max lines reached" maxLines=25 +time=2025-12-15T22:55:09.508-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.669-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.672-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.675-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.832-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.834-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.837-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.990-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.993-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:09.996-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.145-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.148-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.150-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.313-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.317-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.321-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.487-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.507-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.530-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.653-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:10.673-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.217-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.241-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.650-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.657-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.660-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.830-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:11.834-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.000-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.004-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.390-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.805-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.807-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.810-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.812-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:12.814-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.409-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.424-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.915-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.920-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:13.923-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.423-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.496-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.502-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.582-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.587-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.590-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.667-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.750-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.759-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.763-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.971-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.975-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:14.979-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.133-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.318-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.321-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.324-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.337-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.340-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.881-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:15.894-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.226-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.231-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.243-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.408-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.576-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.580-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:16.587-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.134-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.140-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.333-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.343-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.509-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.526-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.666-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.670-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.682-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.836-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:17.856-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:18.000-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.407-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.416-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.422-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.429-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.432-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.435-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.438-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.822-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.830-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:19.836-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.190-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.196-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.466-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.470-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.473-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.803-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.807-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:20.820-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:21.433-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:21.492-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:21.503-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.355-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.385-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.512-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.520-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:22.527-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.048-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.057-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.080-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.219-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.240-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.400-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.409-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.430-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.571-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.580-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:23.595-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.075-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.219-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.222-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.225-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.227-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.233-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.236-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.248-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.317-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.320-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.334-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.405-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.418-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.485-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.488-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.491-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:24.882-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.886-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.887-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:38.887-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:55:38.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.892-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.895-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.897-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.899-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:38.901-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:41.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:41.146-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:41.894-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:41.902-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:43.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:43.270-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:43.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:43.948-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.358-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.400-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:45.400-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Max lines reached" maxLines=0 +time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 +time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.405-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.407-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.415-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:45.417-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:47.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.097-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.098-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:50.098-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:55:50.098-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.101-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.104-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:50.633-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:51.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:51.719-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:52.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:52.513-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:52.801-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:52.809-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.246-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.254-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.265-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.474-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.480-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.778-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:53.785-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.308-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.315-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.665-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.669-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.839-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:54.846-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:55.370-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:55.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:55.900-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:55.907-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.127-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.431-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.436-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.962-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:56.969-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:57.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:57.480-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:57.493-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:57.500-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.037-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.555-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.562-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.872-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.879-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.884-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.889-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.939-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.944-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:58.947-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.055-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.059-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.065-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.071-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.268-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.556-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.558-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.561-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:55:59.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:00.082-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:00.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:00.612-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:00.621-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.143-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.252-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:01.682-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:16.758-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:16.808-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:18.995-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:19.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:19.642-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:19.646-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:20.614-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:20.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.434-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.441-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.746-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.750-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:21.756-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.378-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.385-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.819-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:22.823-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.147-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.299-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.635-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.643-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:23.649-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.189-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.534-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:24.676-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:25.034-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:25.037-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:25.040-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:26.625-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:26.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:26.873-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:26.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:27.993-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:28.211-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:28.963-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:29.253-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:29.304-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:29.307-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:30.784-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:30.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:31.017-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:31.462-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.029-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.086-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.090-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.644-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.647-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:32.648-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.010-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.012-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.523-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:33.815-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:34.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:34.258-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:34.362-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:34.543-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:35.173-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:35.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:35.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:36.018-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:36.892-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:36.898-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:36.966-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:37.511-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:37.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:37.714-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:37.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:37.815-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:38.008-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:38.478-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:38.658-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.263-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.300-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.302-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.305-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.314-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.316-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.345-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.374-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.397-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.399-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.423-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.448-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.478-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.489-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.570-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.576-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.604-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.609-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.640-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.647-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.666-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:39.697-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.743-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.747-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.785-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.851-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.858-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.943-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:39.973-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.007-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.026-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.150-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.161-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.219-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.368-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:40.392-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:40.852-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:40.938-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:40.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:40.954-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.022-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.092-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.111-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.114-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.168-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.231-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.276-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:41.574-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:42.925-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:42.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:43.204-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:43.823-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:43.929-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.306-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.309-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.345-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.495-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.498-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.559-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:44.598-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:44.640-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:44.736-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.739-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:44.796-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:45.124-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:45.169-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:45.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:45.340-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:46.296-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:46.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:46.956-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:47.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:47.507-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:47.787-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" +time=2025-12-15T22:56:47.864-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:47.867-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:47.914-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.284-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.454-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.949-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.975-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:48.978-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:49.024-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:49.208-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.096-08:00 level=INFO msg="Successfully detected terminal cell size via ioctl" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:56:51.096-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 +time=2025-12-15T22:56:51.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.102-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.106-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.119-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:51.123-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" +time=2025-12-15T22:56:57.880-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" diff --git a/private_Library/private_Application Support/superfile/theme/catppuccin-latte.toml b/private_Library/private_Application Support/superfile/theme/catppuccin-latte.toml index 4269a53..17757f7 100644 --- a/private_Library/private_Application Support/superfile/theme/catppuccin-latte.toml +++ b/private_Library/private_Application Support/superfile/theme/catppuccin-latte.toml @@ -42,6 +42,7 @@ hint = "#209fb5" # Sapphire cancel = "#e64553" # Maroon # Gradient color can only have two color! gradient_color = ["#1e66f5", "#ca9ee6"] # [Blue, Mauve] +directory_icon_color = "#444444" # Darker shade of grey # ========= File Panel Special Items ========= file_panel_top_directory_icon = "#40a02b" # Green diff --git a/private_Library/private_Application Support/superfile/themeFileVersion b/private_Library/private_Application Support/superfile/themeFileVersion index 89cb096..ec7b967 100644 --- a/private_Library/private_Application Support/superfile/themeFileVersion +++ b/private_Library/private_Application Support/superfile/themeFileVersion @@ -1 +1 @@ -v1.1.7.1 \ No newline at end of file +v1.4.0 \ No newline at end of file diff --git a/private_dot_config/ghostty/config b/private_dot_config/ghostty/config index b041be8..16fa622 100644 --- a/private_dot_config/ghostty/config +++ b/private_dot_config/ghostty/config @@ -26,4 +26,4 @@ bell-features = attention, title macos-option-as-alt = true macos-auto-secure-input macos-titlebar-style = transparent -# macos-icon = xray \ No newline at end of file +shell-integration-features = sudo, ssh-terminfo,ssh-env diff --git a/private_dot_config/empty_starship.toml b/private_dot_config/starship.toml similarity index 64% rename from private_dot_config/empty_starship.toml rename to private_dot_config/starship.toml index ac83aca..bbc14d0 100644 --- a/private_dot_config/empty_starship.toml +++ b/private_dot_config/starship.toml @@ -3,3 +3,6 @@ add_newline = false +[directory] +repo_root_style = 'blue' +before_repo_root_style = 'cyan' diff --git a/private_dot_ssh/private_config b/private_dot_ssh/private_config index aec0c3b..6634d62 100644 --- a/private_dot_ssh/private_config +++ b/private_dot_ssh/private_config @@ -3,13 +3,5 @@ # This won't be added again if you remove it. Include ~/.orbstack/ssh/config - Host iceberg.jkp.sh - HostName iceberg.jkp.sh - -Host * -# VerifyHostKeyDNS yes -# ControlMaster auto -# ControlPath ~/.ssh/sockets/%C -# ControlPersist 5m Host unifi SetEnv TERM=xterm-256color