[READ-ONLY] Mirror of https://github.com/plttn/dotfiles.
0

Configure Feed

Select the types of activity you want to include in your feed.

Update .wezterm.lua Update Library/Application Support/superfile/config.toml Remove Library/Application Support/superfile/superfile.log Update Library/Application Support/superfile/hotkeys.toml Update Library/Application Support/superfile/lastCheckVersion Add Library/Application Support/superfile/superfile.log Update Library/Application Support/superfile/theme/catppuccin-latte.toml Update Library/Application Support/superfile/themeFileVersion Update .config/ghostty/config Update .ssh/config Change attributes of .config/starship.toml

Jack Platten (Dec 17, 2025, 7:52 PM -0800) 10831a7e 1af93f12

+1097 -29
+1 -1
dot_wezterm.lua
··· 19 19 config.font = wezterm.font('TX-02') 20 20 21 21 config.harfbuzz_features = { 'calt=0' } 22 - onfig.font_size = 12 22 + config.font_size = 12 23 23 config.hide_tab_bar_if_only_one_tab = true 24 24 config.initial_cols = 115 25 25 config.initial_rows = 35
+79 -16
private_Library/private_Application Support/superfile/config.toml
··· 1 + # More details are at https://superfile.dev/configure/superfile-config/ 1 2 # change your theme 2 3 theme = 'catpuccin' 3 4 # 4 - # useless for now 5 - footer_panel_list = ['processes', 'metadata', 'clipboard'] 6 - # 5 + # The editor files will be opened with. (Leave blank to use the EDITOR environment variable). 6 + editor = '' 7 + # 8 + # The editor directories will be opened with. (Leave blank to use the default editors). 9 + dir_editor = '' 10 + # 11 + # Auto check for update 12 + auto_check_update = true 13 + # 14 + # Cd on quit (For more details, please check out https://superfile.dev/configure/superfile-config/#cd_on_quit) 15 + cd_on_quit = false 16 + # 17 + # Whether to open file preview automatically every time superfile is opened. 18 + default_open_file_preview = true 19 + # 20 + # Whether to show image preview. 21 + show_image_preview = true 22 + # 23 + # Whether to show additional footer info for file panel. 24 + show_panel_footer_info = true 25 + # 26 + # The path of the first file panel when superfile is opened. 27 + default_directory = '.' 28 + # 29 + # Display file sizes using powers of 1000 (kB, MB, GB) instead of powers of 1024 (KiB, MiB, GiB). 30 + file_size_use_si = false 31 + # 32 + # Default sort type (0: Name, 1: Size, 2: Date Modified, 3: Type). 33 + default_sort_type = 0 34 + # 35 + # Default sort order (false: Ascending, true: Descending). 36 + sort_order_reversed = false 37 + # 38 + # Case sensitive sort by name (capital "B" comes before "a" if true). 39 + case_sensitive_sort = false 40 + # 41 + # Whether to close the shell on successful command execution. 42 + shell_close_on_success = false 43 + # 44 + # Whether to enable debug mode. 45 + debug = false 46 + # 47 + # Whether to ignore warnings about missing fields in the config file. 48 + ignore_missing_fields = false 49 + # 7 50 # ================ Style ================= 8 - # 51 + # 52 + # If you don't have or don't want Nerdfont installed you can turn this off 53 + nerdfont = true 54 + # 55 + # Show checkbox icons in select mode (requires nerdfont) 56 + show_select_icons = true 57 + # 9 58 # Set transparent background or not (this only work when your terminal background is transparent) 10 - transparent_backgroun = false 11 - # 59 + transparent_background = false 60 + # 61 + # 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.) 62 + file_preview_width = 0 63 + # 64 + # Whether to use the builtin syntax highlighting with chroma or use bat. Values: "" for builtin chroma, "bat" for bat 65 + code_previewer = '' 66 + # 67 + # 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. 68 + sidebar_width = 20 69 + # 12 70 # Border style 13 - border_top = "━" 14 - border_bottom = "━" 15 - border_left = "┃" 16 - border_right = "┃" 17 - border_top_left = "┏" 18 - border_top_right = "┓" 19 - border_bottom_left = "┗" 20 - border_bottom_right = "┛" 21 - border_middle_left = "┣" 22 - border_middle_right = "┫" 71 + border_top = '━' 72 + border_bottom = '━' 73 + border_left = '┃' 74 + border_right = '┃' 75 + border_top_left = '┏' 76 + border_top_right = '┓' 77 + border_bottom_left = '┗' 78 + border_bottom_right = '┛' 79 + border_middle_left = '┣' 80 + border_middle_right = '┫' 23 81 # 24 82 # ==========PLUGINS========== # 83 + # Plugins means that you need to install some external dependencies to use them. 25 84 # 26 85 # Show more detailed metadata, please install exiftool before enabling this plugin! 27 86 metadata = false 87 + # Enable MD5 checksum generation for files 88 + enable_md5_checksum = false 89 + # Zoxide support for the fast navigation 90 + zoxide_support = false
private_Library/private_Application Support/superfile/empty_superfile.log

This is a binary file and will not be displayed.

+5 -1
private_Library/private_Application Support/superfile/hotkeys.toml
··· 2 2 # Global hotkeys (cannot conflict with other hotkeys) 3 3 confirm = ['enter', ''] 4 4 quit = ['esc', 'q'] 5 + cd_quit = ['Q', ''] 5 6 # movement 6 7 list_up = ['up', 'k'] 7 8 list_down = ['down', 'j'] ··· 27 28 paste_items = ['ctrl+v', ''] 28 29 cut_items = ['ctrl+x', ''] 29 30 delete_items = ['ctrl+d', 'delete', ''] 31 + permanently_delete_items = ['D', ''] 30 32 # compress and extract 31 33 extract_file = ['ctrl+e', ''] 32 34 compress_file = ['ctrl+r', ''] ··· 39 41 change_panel_mode = ['v', ''] 40 42 open_help_menu = ['?', ''] 41 43 open_command_line = [':', ''] 44 + open_spf_prompt = ['>', ''] 45 + open_zoxide = ['z', ''] 42 46 copy_path = ['ctrl+p', ''] 43 47 copy_present_working_directory = ['c', ''] 44 48 toggle_footer = ['F', ''] ··· 51 55 parent_directory = ['h', 'backspace'] 52 56 search_bar = ['ctrl+f', ''] 53 57 # ================================================================================================= 54 - # Select mode hotkeys (can conflict with other modes, cananot conflict with global hotkeys) 58 + # Select mode hotkeys (can conflict with other modes, cannot conflict with global hotkeys) 55 59 file_panel_select_mode_items_select_down = ['shift+down', 'J'] 56 60 file_panel_select_mode_items_select_up = ['shift+up', 'K'] 57 61 file_panel_select_all_items = ['A', '']
+1 -1
private_Library/private_Application Support/superfile/lastCheckVersion
··· 1 - 2024-05-11T18:49:59-07:00 1 + 2025-12-16T06:54:28Z
+1005
private_Library/private_Application Support/superfile/superfile.log
··· 1 + time=2025-12-15T22:54:02.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 2 + 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 3 + time=2025-12-15T22:54:02.143-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 4 + time=2025-12-15T22:54:02.143-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 5 + time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Max lines reached" maxLines=0 6 + time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 7 + time=2025-12-15T22:54:02.144-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 8 + time=2025-12-15T22:54:02.180-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 9 + time=2025-12-15T22:54:02.184-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 10 + time=2025-12-15T22:54:02.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 11 + time=2025-12-15T22:54:02.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 12 + time=2025-12-15T22:54:02.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 13 + time=2025-12-15T22:54:02.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 14 + time=2025-12-15T22:54:03.258-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 15 + time=2025-12-15T22:54:03.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 16 + time=2025-12-15T22:54:04.072-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 17 + time=2025-12-15T22:54:04.078-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 18 + time=2025-12-15T22:54:04.083-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 19 + time=2025-12-15T22:54:04.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 20 + time=2025-12-15T22:54:04.266-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 21 + time=2025-12-15T22:54:04.271-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 22 + time=2025-12-15T22:54:04.473-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 23 + time=2025-12-15T22:54:04.481-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 24 + time=2025-12-15T22:54:04.486-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 25 + time=2025-12-15T22:54:04.838-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 26 + time=2025-12-15T22:54:04.842-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 27 + time=2025-12-15T22:54:04.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 28 + time=2025-12-15T22:54:05.011-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 29 + time=2025-12-15T22:54:05.015-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 30 + time=2025-12-15T22:54:05.018-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 31 + time=2025-12-15T22:54:05.147-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 32 + time=2025-12-15T22:54:05.151-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 33 + time=2025-12-15T22:54:05.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 34 + time=2025-12-15T22:54:05.557-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 35 + time=2025-12-15T22:54:05.564-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 36 + time=2025-12-15T22:54:06.615-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 37 + time=2025-12-15T22:54:06.619-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 38 + time=2025-12-15T22:54:06.737-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 39 + time=2025-12-15T22:54:06.741-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 40 + time=2025-12-15T22:54:06.743-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 41 + time=2025-12-15T22:54:06.745-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 42 + time=2025-12-15T22:54:06.882-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 43 + time=2025-12-15T22:54:06.885-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 44 + time=2025-12-15T22:54:06.886-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 45 + time=2025-12-15T22:54:06.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 46 + time=2025-12-15T22:54:06.985-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 47 + time=2025-12-15T22:54:06.988-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 48 + time=2025-12-15T22:54:06.990-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 49 + time=2025-12-15T22:54:06.991-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 50 + time=2025-12-15T22:54:07.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 51 + time=2025-12-15T22:54:07.343-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 52 + time=2025-12-15T22:54:07.516-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 53 + time=2025-12-15T22:54:07.527-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 54 + time=2025-12-15T22:54:07.662-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 55 + time=2025-12-15T22:54:07.665-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 56 + time=2025-12-15T22:54:08.046-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 57 + time=2025-12-15T22:54:08.052-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 58 + time=2025-12-15T22:54:08.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 59 + time=2025-12-15T22:54:08.093-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 60 + time=2025-12-15T22:54:08.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 61 + time=2025-12-15T22:54:11.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 62 + time=2025-12-15T22:54:11.069-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 63 + time=2025-12-15T22:54:12.021-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 64 + time=2025-12-15T22:54:12.026-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 65 + time=2025-12-15T22:54:15.243-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 66 + time=2025-12-15T22:54:15.438-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 67 + time=2025-12-15T22:54:16.235-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 68 + time=2025-12-15T22:54:16.239-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 69 + time=2025-12-15T22:54:16.242-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 70 + time=2025-12-15T22:54:16.545-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 71 + time=2025-12-15T22:54:16.547-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 72 + time=2025-12-15T22:54:16.549-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 73 + time=2025-12-15T22:54:16.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 74 + time=2025-12-15T22:54:16.711-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 75 + time=2025-12-15T22:54:16.713-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 76 + time=2025-12-15T22:54:17.102-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 77 + time=2025-12-15T22:54:17.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 78 + time=2025-12-15T22:54:18.915-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 79 + time=2025-12-15T22:54:19.012-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 80 + time=2025-12-15T22:54:19.450-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 81 + time=2025-12-15T22:54:19.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 82 + time=2025-12-15T22:54:19.952-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 83 + time=2025-12-15T22:54:19.957-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 84 + time=2025-12-15T22:54:20.034-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 85 + time=2025-12-15T22:54:20.039-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 86 + time=2025-12-15T22:54:20.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 87 + time=2025-12-15T22:54:20.122-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 88 + time=2025-12-15T22:54:20.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 89 + time=2025-12-15T22:54:20.207-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 90 + time=2025-12-15T22:54:20.283-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 91 + time=2025-12-15T22:54:20.288-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 92 + time=2025-12-15T22:54:20.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 93 + time=2025-12-15T22:54:20.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 94 + time=2025-12-15T22:54:20.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 95 + time=2025-12-15T22:54:20.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 96 + time=2025-12-15T22:54:20.533-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 97 + time=2025-12-15T22:54:20.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 98 + time=2025-12-15T22:54:20.618-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 99 + time=2025-12-15T22:54:20.627-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 100 + time=2025-12-15T22:54:20.697-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 101 + time=2025-12-15T22:54:20.702-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 102 + time=2025-12-15T22:54:20.785-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 103 + time=2025-12-15T22:54:20.791-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 104 + time=2025-12-15T22:54:20.865-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 105 + time=2025-12-15T22:54:20.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 106 + time=2025-12-15T22:54:20.951-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 107 + time=2025-12-15T22:54:20.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 108 + time=2025-12-15T22:54:21.035-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 109 + time=2025-12-15T22:54:21.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 110 + time=2025-12-15T22:54:21.265-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 111 + time=2025-12-15T22:54:21.269-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 112 + time=2025-12-15T22:54:21.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 113 + time=2025-12-15T22:54:21.276-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 114 + time=2025-12-15T22:54:21.280-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 115 + time=2025-12-15T22:54:21.284-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 116 + time=2025-12-15T22:54:21.364-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 117 + time=2025-12-15T22:54:21.369-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 118 + time=2025-12-15T22:54:21.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 119 + time=2025-12-15T22:54:21.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 120 + time=2025-12-15T22:54:21.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 121 + time=2025-12-15T22:54:21.542-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 122 + time=2025-12-15T22:54:21.620-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 123 + time=2025-12-15T22:54:21.625-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 124 + time=2025-12-15T22:54:21.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 125 + time=2025-12-15T22:54:21.709-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 126 + time=2025-12-15T22:54:21.787-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 127 + time=2025-12-15T22:54:21.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 128 + time=2025-12-15T22:54:21.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 129 + time=2025-12-15T22:54:21.874-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 130 + time=2025-12-15T22:54:21.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 131 + time=2025-12-15T22:54:21.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 132 + time=2025-12-15T22:54:22.038-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 133 + time=2025-12-15T22:54:22.043-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 134 + time=2025-12-15T22:54:22.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 135 + time=2025-12-15T22:54:22.122-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 136 + time=2025-12-15T22:54:22.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 137 + time=2025-12-15T22:54:22.207-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 138 + time=2025-12-15T22:54:22.287-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 139 + time=2025-12-15T22:54:22.292-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 140 + time=2025-12-15T22:54:22.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 141 + time=2025-12-15T22:54:22.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 142 + time=2025-12-15T22:54:22.455-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 143 + time=2025-12-15T22:54:22.462-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 144 + time=2025-12-15T22:54:22.534-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 145 + time=2025-12-15T22:54:22.541-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 146 + time=2025-12-15T22:54:22.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 147 + time=2025-12-15T22:54:22.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 148 + time=2025-12-15T22:54:22.704-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 149 + time=2025-12-15T22:54:22.710-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 150 + time=2025-12-15T22:54:22.787-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 151 + time=2025-12-15T22:54:22.792-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 152 + time=2025-12-15T22:54:22.872-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 153 + time=2025-12-15T22:54:22.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 154 + time=2025-12-15T22:54:22.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 155 + time=2025-12-15T22:54:22.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 156 + time=2025-12-15T22:54:23.038-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 157 + time=2025-12-15T22:54:23.043-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 158 + time=2025-12-15T22:54:23.120-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 159 + time=2025-12-15T22:54:23.125-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 160 + time=2025-12-15T22:54:23.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 161 + time=2025-12-15T22:54:23.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 162 + time=2025-12-15T22:54:23.289-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 163 + time=2025-12-15T22:54:23.294-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 164 + time=2025-12-15T22:54:23.372-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 165 + time=2025-12-15T22:54:23.376-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 166 + time=2025-12-15T22:54:23.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 167 + time=2025-12-15T22:54:23.464-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 168 + time=2025-12-15T22:54:23.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 169 + time=2025-12-15T22:54:23.540-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 170 + time=2025-12-15T22:54:23.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 171 + time=2025-12-15T22:54:23.627-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 172 + time=2025-12-15T22:54:23.708-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 173 + time=2025-12-15T22:54:23.714-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 174 + time=2025-12-15T22:54:23.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 175 + time=2025-12-15T22:54:23.803-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 176 + time=2025-12-15T22:54:23.870-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 177 + time=2025-12-15T22:54:23.876-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 178 + time=2025-12-15T22:54:23.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 179 + time=2025-12-15T22:54:23.964-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 180 + time=2025-12-15T22:54:24.041-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 181 + time=2025-12-15T22:54:24.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 182 + time=2025-12-15T22:54:24.118-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 183 + time=2025-12-15T22:54:24.123-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 184 + time=2025-12-15T22:54:24.205-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 185 + time=2025-12-15T22:54:24.210-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 186 + time=2025-12-15T22:54:24.290-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 187 + time=2025-12-15T22:54:24.295-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 188 + time=2025-12-15T22:54:24.375-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 189 + time=2025-12-15T22:54:24.381-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 190 + time=2025-12-15T22:54:24.459-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 191 + time=2025-12-15T22:54:24.464-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 192 + time=2025-12-15T22:54:24.543-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 193 + time=2025-12-15T22:54:24.548-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 194 + time=2025-12-15T22:54:24.630-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 195 + time=2025-12-15T22:54:24.636-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 196 + time=2025-12-15T22:54:24.712-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 197 + time=2025-12-15T22:54:24.718-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 198 + time=2025-12-15T22:54:24.796-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 199 + time=2025-12-15T22:54:24.806-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 200 + time=2025-12-15T22:54:24.875-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 201 + time=2025-12-15T22:54:24.881-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 202 + time=2025-12-15T22:54:24.965-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 203 + time=2025-12-15T22:54:24.970-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 204 + time=2025-12-15T22:54:25.046-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 205 + time=2025-12-15T22:54:25.052-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 206 + time=2025-12-15T22:54:25.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 207 + time=2025-12-15T22:54:25.139-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 208 + time=2025-12-15T22:54:25.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 209 + time=2025-12-15T22:54:25.214-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 210 + time=2025-12-15T22:54:25.296-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 211 + time=2025-12-15T22:54:25.301-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 212 + time=2025-12-15T22:54:25.379-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 213 + time=2025-12-15T22:54:25.388-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 214 + time=2025-12-15T22:54:25.463-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 215 + time=2025-12-15T22:54:25.468-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 216 + time=2025-12-15T22:54:25.546-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 217 + time=2025-12-15T22:54:25.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 218 + time=2025-12-15T22:54:25.630-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 219 + time=2025-12-15T22:54:25.636-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 220 + time=2025-12-15T22:54:25.713-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 221 + time=2025-12-15T22:54:25.718-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 222 + time=2025-12-15T22:54:25.797-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 223 + time=2025-12-15T22:54:25.802-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 224 + time=2025-12-15T22:54:25.880-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 225 + time=2025-12-15T22:54:25.887-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 226 + time=2025-12-15T22:54:25.963-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 227 + time=2025-12-15T22:54:25.968-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 228 + time=2025-12-15T22:54:26.047-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 229 + time=2025-12-15T22:54:26.053-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 230 + time=2025-12-15T22:54:26.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 231 + time=2025-12-15T22:54:26.135-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 232 + time=2025-12-15T22:54:26.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 233 + time=2025-12-15T22:54:26.221-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 234 + time=2025-12-15T22:54:26.297-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 235 + time=2025-12-15T22:54:26.302-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 236 + time=2025-12-15T22:54:26.384-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 237 + time=2025-12-15T22:54:26.389-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 238 + time=2025-12-15T22:54:26.466-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 239 + time=2025-12-15T22:54:26.471-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 240 + time=2025-12-15T22:54:26.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 241 + time=2025-12-15T22:54:26.556-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 242 + time=2025-12-15T22:54:26.634-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 243 + time=2025-12-15T22:54:26.638-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 244 + time=2025-12-15T22:54:26.717-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 245 + time=2025-12-15T22:54:26.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 246 + time=2025-12-15T22:54:27.712-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 247 + time=2025-12-15T22:54:27.767-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 248 + time=2025-12-15T22:54:28.172-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 249 + time=2025-12-15T22:54:37.380-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 250 + 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 251 + time=2025-12-15T22:54:37.416-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 252 + time=2025-12-15T22:54:37.416-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 253 + time=2025-12-15T22:54:37.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 254 + time=2025-12-15T22:54:37.421-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 255 + time=2025-12-15T22:54:37.424-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 256 + time=2025-12-15T22:54:37.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 257 + time=2025-12-15T22:54:37.429-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 258 + time=2025-12-15T22:54:37.431-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 259 + time=2025-12-15T22:54:38.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 260 + time=2025-12-15T22:54:43.312-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 261 + 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 262 + time=2025-12-15T22:54:43.346-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 263 + time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 264 + time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Max lines reached" maxLines=0 265 + time=2025-12-15T22:54:43.346-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 266 + time=2025-12-15T22:54:43.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 267 + time=2025-12-15T22:54:43.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 268 + time=2025-12-15T22:54:43.350-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 269 + time=2025-12-15T22:54:43.353-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 270 + time=2025-12-15T22:54:43.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 271 + time=2025-12-15T22:54:43.358-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 272 + time=2025-12-15T22:54:43.360-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 273 + time=2025-12-15T22:54:44.026-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 274 + time=2025-12-15T22:54:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 275 + 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 276 + time=2025-12-15T22:54:46.905-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 277 + time=2025-12-15T22:54:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 278 + time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Max lines reached" maxLines=0 279 + time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 280 + time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 281 + time=2025-12-15T22:54:46.906-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 282 + time=2025-12-15T22:54:46.910-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 283 + time=2025-12-15T22:54:46.914-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 284 + time=2025-12-15T22:54:46.917-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 285 + time=2025-12-15T22:54:46.920-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 286 + time=2025-12-15T22:54:46.923-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 287 + time=2025-12-15T22:54:48.159-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 288 + time=2025-12-15T22:54:48.166-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 289 + time=2025-12-15T22:54:48.170-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 290 + time=2025-12-15T22:54:48.386-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 291 + time=2025-12-15T22:54:48.390-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 292 + time=2025-12-15T22:54:48.395-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 293 + time=2025-12-15T22:54:48.761-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 294 + time=2025-12-15T22:54:48.765-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 295 + time=2025-12-15T22:54:48.767-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 296 + time=2025-12-15T22:54:49.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 297 + time=2025-12-15T22:54:49.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 298 + time=2025-12-15T22:54:49.263-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 299 + time=2025-12-15T22:54:50.205-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 300 + time=2025-12-15T22:54:51.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 301 + 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 302 + time=2025-12-15T22:54:51.827-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 303 + time=2025-12-15T22:54:51.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 304 + time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Max lines reached" maxLines=0 305 + time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 306 + time=2025-12-15T22:54:51.828-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 307 + time=2025-12-15T22:54:51.831-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 308 + time=2025-12-15T22:54:51.835-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 309 + time=2025-12-15T22:54:51.838-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 310 + time=2025-12-15T22:54:51.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 311 + time=2025-12-15T22:54:51.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 312 + time=2025-12-15T22:54:51.846-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 313 + time=2025-12-15T22:54:52.731-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 314 + time=2025-12-15T22:54:52.735-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 315 + time=2025-12-15T22:54:52.738-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 316 + time=2025-12-15T22:54:52.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 317 + time=2025-12-15T22:54:52.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 318 + time=2025-12-15T22:54:52.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 319 + time=2025-12-15T22:54:53.074-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 320 + time=2025-12-15T22:54:53.080-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 321 + time=2025-12-15T22:54:53.086-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 322 + time=2025-12-15T22:54:53.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 323 + time=2025-12-15T22:54:53.379-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 324 + time=2025-12-15T22:54:53.382-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 325 + time=2025-12-15T22:54:53.583-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 326 + time=2025-12-15T22:54:53.589-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 327 + time=2025-12-15T22:54:53.595-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 328 + time=2025-12-15T22:54:53.858-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 329 + time=2025-12-15T22:54:53.868-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 330 + time=2025-12-15T22:54:54.226-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 331 + time=2025-12-15T22:54:54.384-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 332 + time=2025-12-15T22:54:54.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 333 + time=2025-12-15T22:54:55.299-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 334 + time=2025-12-15T22:54:55.359-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 335 + time=2025-12-15T22:54:55.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 336 + time=2025-12-15T22:54:55.766-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 337 + time=2025-12-15T22:54:56.221-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 338 + time=2025-12-15T22:54:56.338-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 339 + time=2025-12-15T22:54:56.378-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 340 + time=2025-12-15T22:54:56.418-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 341 + time=2025-12-15T22:54:56.457-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 342 + time=2025-12-15T22:54:56.496-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 343 + time=2025-12-15T22:54:56.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 344 + time=2025-12-15T22:54:56.575-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 345 + time=2025-12-15T22:54:56.614-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 346 + time=2025-12-15T22:54:56.654-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 347 + time=2025-12-15T22:54:56.693-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 348 + time=2025-12-15T22:54:56.732-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 349 + time=2025-12-15T22:54:56.771-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 350 + time=2025-12-15T22:54:56.810-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 351 + time=2025-12-15T22:54:56.850-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 352 + time=2025-12-15T22:54:56.889-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 353 + time=2025-12-15T22:54:56.928-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 354 + time=2025-12-15T22:54:56.966-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 355 + time=2025-12-15T22:54:57.006-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 356 + time=2025-12-15T22:54:57.045-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 357 + time=2025-12-15T22:54:57.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 358 + time=2025-12-15T22:54:57.149-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 359 + time=2025-12-15T22:54:57.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 360 + time=2025-12-15T22:54:57.227-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 361 + time=2025-12-15T22:54:57.266-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 362 + time=2025-12-15T22:54:57.305-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 363 + time=2025-12-15T22:54:57.344-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 364 + time=2025-12-15T22:54:57.382-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 365 + time=2025-12-15T22:54:57.421-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 366 + time=2025-12-15T22:54:57.459-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 367 + time=2025-12-15T22:54:57.499-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 368 + time=2025-12-15T22:54:57.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 369 + time=2025-12-15T22:54:57.577-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 370 + time=2025-12-15T22:54:57.664-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 371 + time=2025-12-15T22:54:57.703-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 372 + time=2025-12-15T22:54:57.742-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 373 + time=2025-12-15T22:54:57.781-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 374 + time=2025-12-15T22:54:57.812-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 375 + time=2025-12-15T22:54:58.469-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 376 + time=2025-12-15T22:54:58.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 377 + time=2025-12-15T22:54:58.479-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 378 + time=2025-12-15T22:54:59.199-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 379 + time=2025-12-15T22:54:59.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 380 + time=2025-12-15T22:54:59.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 381 + time=2025-12-15T22:54:59.608-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 382 + time=2025-12-15T22:54:59.613-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 383 + time=2025-12-15T22:54:59.615-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 384 + time=2025-12-15T22:55:00.109-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 385 + time=2025-12-15T22:55:00.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 386 + time=2025-12-15T22:55:00.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 387 + time=2025-12-15T22:55:00.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 388 + time=2025-12-15T22:55:00.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 389 + time=2025-12-15T22:55:00.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 390 + time=2025-12-15T22:55:00.270-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 391 + time=2025-12-15T22:55:00.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 392 + time=2025-12-15T22:55:00.278-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 393 + time=2025-12-15T22:55:00.359-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 394 + time=2025-12-15T22:55:00.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 395 + time=2025-12-15T22:55:00.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 396 + time=2025-12-15T22:55:00.442-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 397 + time=2025-12-15T22:55:00.449-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 398 + time=2025-12-15T22:55:00.452-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 399 + time=2025-12-15T22:55:00.525-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 400 + time=2025-12-15T22:55:00.532-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 401 + time=2025-12-15T22:55:00.535-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 402 + time=2025-12-15T22:55:00.604-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 403 + time=2025-12-15T22:55:00.609-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 404 + time=2025-12-15T22:55:00.612-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 405 + time=2025-12-15T22:55:00.692-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 406 + time=2025-12-15T22:55:00.695-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 407 + time=2025-12-15T22:55:00.698-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 408 + time=2025-12-15T22:55:00.775-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 409 + time=2025-12-15T22:55:00.781-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 410 + time=2025-12-15T22:55:00.784-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 411 + time=2025-12-15T22:55:00.858-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 412 + time=2025-12-15T22:55:00.863-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 413 + time=2025-12-15T22:55:00.866-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 414 + time=2025-12-15T22:55:00.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 415 + time=2025-12-15T22:55:00.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 416 + time=2025-12-15T22:55:00.949-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 417 + time=2025-12-15T22:55:01.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 418 + time=2025-12-15T22:55:01.108-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 419 + time=2025-12-15T22:55:01.111-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 420 + time=2025-12-15T22:55:01.113-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 421 + time=2025-12-15T22:55:01.116-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 422 + time=2025-12-15T22:55:01.119-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 423 + time=2025-12-15T22:55:01.188-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 424 + time=2025-12-15T22:55:01.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 425 + time=2025-12-15T22:55:01.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 426 + time=2025-12-15T22:55:01.791-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 427 + time=2025-12-15T22:55:01.794-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 428 + time=2025-12-15T22:55:01.797-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 429 + time=2025-12-15T22:55:01.929-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 430 + time=2025-12-15T22:55:01.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 431 + time=2025-12-15T22:55:01.937-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 432 + time=2025-12-15T22:55:02.126-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 433 + time=2025-12-15T22:55:02.129-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 434 + time=2025-12-15T22:55:02.133-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 435 + time=2025-12-15T22:55:02.287-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 436 + time=2025-12-15T22:55:02.291-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 437 + time=2025-12-15T22:55:02.295-08:00 level=ERROR msg="Max lines reached" maxLines=25 438 + time=2025-12-15T22:55:02.295-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 439 + time=2025-12-15T22:55:02.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 440 + time=2025-12-15T22:55:02.554-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 441 + time=2025-12-15T22:55:02.558-08:00 level=ERROR msg="Max lines reached" maxLines=25 442 + time=2025-12-15T22:55:02.558-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 443 + time=2025-12-15T22:55:02.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 444 + time=2025-12-15T22:55:02.844-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 445 + time=2025-12-15T22:55:02.859-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 446 + time=2025-12-15T22:55:03.076-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 447 + time=2025-12-15T22:55:03.079-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 448 + time=2025-12-15T22:55:03.082-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 449 + time=2025-12-15T22:55:03.234-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 450 + time=2025-12-15T22:55:03.237-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 451 + time=2025-12-15T22:55:03.248-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 452 + time=2025-12-15T22:55:03.467-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 453 + time=2025-12-15T22:55:03.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 454 + time=2025-12-15T22:55:03.477-08:00 level=ERROR msg="Max lines reached" maxLines=25 455 + time=2025-12-15T22:55:03.477-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 456 + time=2025-12-15T22:55:04.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 457 + time=2025-12-15T22:55:04.158-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 458 + time=2025-12-15T22:55:04.168-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 459 + time=2025-12-15T22:55:04.342-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 460 + time=2025-12-15T22:55:04.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 461 + time=2025-12-15T22:55:04.351-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 462 + time=2025-12-15T22:55:04.441-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 463 + time=2025-12-15T22:55:04.446-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 464 + time=2025-12-15T22:55:04.452-08:00 level=ERROR msg="Error open file" error="bufio.Scanner: token too long" 465 + time=2025-12-15T22:55:04.452-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 466 + time=2025-12-15T22:55:04.945-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 467 + time=2025-12-15T22:55:04.951-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 468 + time=2025-12-15T22:55:04.960-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 469 + time=2025-12-15T22:55:05.022-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 470 + time=2025-12-15T22:55:05.187-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 471 + time=2025-12-15T22:55:05.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 472 + time=2025-12-15T22:55:05.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 473 + time=2025-12-15T22:55:05.201-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 474 + time=2025-12-15T22:55:05.204-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 475 + time=2025-12-15T22:55:05.209-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 476 + time=2025-12-15T22:55:05.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 477 + time=2025-12-15T22:55:05.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 478 + time=2025-12-15T22:55:05.271-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 479 + time=2025-12-15T22:55:05.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 480 + time=2025-12-15T22:55:05.280-08:00 level=ERROR msg="Max lines reached" maxLines=25 481 + time=2025-12-15T22:55:05.281-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 482 + time=2025-12-15T22:55:05.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 483 + time=2025-12-15T22:55:05.361-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 484 + time=2025-12-15T22:55:05.366-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 485 + time=2025-12-15T22:55:05.439-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 486 + time=2025-12-15T22:55:05.444-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 487 + time=2025-12-15T22:55:05.451-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 488 + time=2025-12-15T22:55:05.526-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 489 + time=2025-12-15T22:55:05.532-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 490 + time=2025-12-15T22:55:05.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 491 + time=2025-12-15T22:55:05.611-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 492 + time=2025-12-15T22:55:05.616-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 493 + time=2025-12-15T22:55:05.624-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 494 + time=2025-12-15T22:55:05.828-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 495 + time=2025-12-15T22:55:05.953-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 496 + time=2025-12-15T22:55:07.313-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 497 + time=2025-12-15T22:55:07.333-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 498 + time=2025-12-15T22:55:07.335-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 499 + time=2025-12-15T22:55:07.337-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 500 + time=2025-12-15T22:55:07.342-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 501 + time=2025-12-15T22:55:07.344-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 502 + time=2025-12-15T22:55:07.346-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 503 + time=2025-12-15T22:55:07.348-08:00 level=ERROR msg="Max lines reached" maxLines=25 504 + time=2025-12-15T22:55:07.348-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 505 + time=2025-12-15T22:55:07.351-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 506 + time=2025-12-15T22:55:07.354-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 507 + time=2025-12-15T22:55:07.357-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 508 + time=2025-12-15T22:55:07.360-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 509 + time=2025-12-15T22:55:07.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 510 + time=2025-12-15T22:55:07.365-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 511 + time=2025-12-15T22:55:07.368-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 512 + time=2025-12-15T22:55:07.370-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 513 + time=2025-12-15T22:55:07.372-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 514 + time=2025-12-15T22:55:07.375-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 515 + time=2025-12-15T22:55:07.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 516 + time=2025-12-15T22:55:07.835-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 517 + time=2025-12-15T22:55:07.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 518 + time=2025-12-15T22:55:07.851-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 519 + time=2025-12-15T22:55:08.189-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 520 + time=2025-12-15T22:55:08.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 521 + time=2025-12-15T22:55:08.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 522 + time=2025-12-15T22:55:08.391-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 523 + time=2025-12-15T22:55:08.397-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 524 + time=2025-12-15T22:55:08.402-08:00 level=ERROR msg="Max lines reached" maxLines=25 525 + time=2025-12-15T22:55:08.402-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 526 + time=2025-12-15T22:55:08.746-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 527 + time=2025-12-15T22:55:08.749-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 528 + time=2025-12-15T22:55:08.753-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 529 + time=2025-12-15T22:55:09.503-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 530 + time=2025-12-15T22:55:09.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 531 + time=2025-12-15T22:55:09.508-08:00 level=ERROR msg="Max lines reached" maxLines=25 532 + time=2025-12-15T22:55:09.508-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 533 + time=2025-12-15T22:55:09.669-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 534 + time=2025-12-15T22:55:09.672-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 535 + time=2025-12-15T22:55:09.675-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 536 + time=2025-12-15T22:55:09.832-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 537 + time=2025-12-15T22:55:09.834-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 538 + time=2025-12-15T22:55:09.837-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 539 + time=2025-12-15T22:55:09.990-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 540 + time=2025-12-15T22:55:09.993-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 541 + time=2025-12-15T22:55:09.996-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 542 + time=2025-12-15T22:55:10.145-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 543 + time=2025-12-15T22:55:10.148-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 544 + time=2025-12-15T22:55:10.150-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 545 + time=2025-12-15T22:55:10.313-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 546 + time=2025-12-15T22:55:10.317-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 547 + time=2025-12-15T22:55:10.321-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 548 + time=2025-12-15T22:55:10.487-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 549 + time=2025-12-15T22:55:10.507-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 550 + time=2025-12-15T22:55:10.530-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 551 + time=2025-12-15T22:55:10.653-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 552 + time=2025-12-15T22:55:10.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 553 + time=2025-12-15T22:55:10.673-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 554 + time=2025-12-15T22:55:11.217-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 555 + time=2025-12-15T22:55:11.241-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 556 + time=2025-12-15T22:55:11.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 557 + time=2025-12-15T22:55:11.650-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 558 + time=2025-12-15T22:55:11.657-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 559 + time=2025-12-15T22:55:11.660-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 560 + time=2025-12-15T22:55:11.827-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 561 + time=2025-12-15T22:55:11.830-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 562 + time=2025-12-15T22:55:11.834-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 563 + time=2025-12-15T22:55:12.000-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 564 + time=2025-12-15T22:55:12.004-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 565 + time=2025-12-15T22:55:12.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 566 + time=2025-12-15T22:55:12.390-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 567 + time=2025-12-15T22:55:12.805-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 568 + time=2025-12-15T22:55:12.807-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 569 + time=2025-12-15T22:55:12.810-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 570 + time=2025-12-15T22:55:12.812-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 571 + time=2025-12-15T22:55:12.814-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 572 + time=2025-12-15T22:55:13.409-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 573 + time=2025-12-15T22:55:13.424-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 574 + time=2025-12-15T22:55:13.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 575 + time=2025-12-15T22:55:13.915-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 576 + time=2025-12-15T22:55:13.920-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 577 + time=2025-12-15T22:55:13.923-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 578 + time=2025-12-15T22:55:14.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 579 + time=2025-12-15T22:55:14.423-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 580 + time=2025-12-15T22:55:14.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 581 + time=2025-12-15T22:55:14.496-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 582 + time=2025-12-15T22:55:14.502-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 583 + time=2025-12-15T22:55:14.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 584 + time=2025-12-15T22:55:14.582-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 585 + time=2025-12-15T22:55:14.587-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 586 + time=2025-12-15T22:55:14.590-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 587 + time=2025-12-15T22:55:14.667-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 588 + time=2025-12-15T22:55:14.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 589 + time=2025-12-15T22:55:14.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 590 + time=2025-12-15T22:55:14.750-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 591 + time=2025-12-15T22:55:14.759-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 592 + time=2025-12-15T22:55:14.763-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 593 + time=2025-12-15T22:55:14.971-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 594 + time=2025-12-15T22:55:14.975-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 595 + time=2025-12-15T22:55:14.979-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 596 + time=2025-12-15T22:55:15.133-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 597 + time=2025-12-15T22:55:15.318-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 598 + time=2025-12-15T22:55:15.321-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 599 + time=2025-12-15T22:55:15.324-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 600 + time=2025-12-15T22:55:15.337-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 601 + time=2025-12-15T22:55:15.340-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 602 + time=2025-12-15T22:55:15.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 603 + time=2025-12-15T22:55:15.881-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 604 + time=2025-12-15T22:55:15.894-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 605 + time=2025-12-15T22:55:16.226-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 606 + time=2025-12-15T22:55:16.231-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 607 + time=2025-12-15T22:55:16.243-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 608 + time=2025-12-15T22:55:16.408-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 609 + time=2025-12-15T22:55:16.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 610 + time=2025-12-15T22:55:16.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 611 + time=2025-12-15T22:55:16.576-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 612 + time=2025-12-15T22:55:16.580-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 613 + time=2025-12-15T22:55:16.587-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 614 + time=2025-12-15T22:55:17.130-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 615 + time=2025-12-15T22:55:17.134-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 616 + time=2025-12-15T22:55:17.140-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 617 + time=2025-12-15T22:55:17.333-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 618 + time=2025-12-15T22:55:17.343-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 619 + time=2025-12-15T22:55:17.356-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 620 + time=2025-12-15T22:55:17.509-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 621 + time=2025-12-15T22:55:17.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 622 + time=2025-12-15T22:55:17.526-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 623 + time=2025-12-15T22:55:17.666-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 624 + time=2025-12-15T22:55:17.670-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 625 + time=2025-12-15T22:55:17.682-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 626 + time=2025-12-15T22:55:17.836-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 627 + time=2025-12-15T22:55:17.841-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 628 + time=2025-12-15T22:55:17.856-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 629 + time=2025-12-15T22:55:18.000-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 630 + time=2025-12-15T22:55:19.407-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 631 + time=2025-12-15T22:55:19.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 632 + time=2025-12-15T22:55:19.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 633 + time=2025-12-15T22:55:19.416-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 634 + time=2025-12-15T22:55:19.419-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 635 + time=2025-12-15T22:55:19.422-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 636 + time=2025-12-15T22:55:19.425-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 637 + time=2025-12-15T22:55:19.429-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 638 + time=2025-12-15T22:55:19.432-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 639 + time=2025-12-15T22:55:19.435-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 640 + time=2025-12-15T22:55:19.438-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 641 + time=2025-12-15T22:55:19.822-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 642 + time=2025-12-15T22:55:19.830-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 643 + time=2025-12-15T22:55:19.836-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 644 + time=2025-12-15T22:55:20.190-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 645 + time=2025-12-15T22:55:20.196-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 646 + time=2025-12-15T22:55:20.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 647 + time=2025-12-15T22:55:20.466-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 648 + time=2025-12-15T22:55:20.470-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 649 + time=2025-12-15T22:55:20.473-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 650 + time=2025-12-15T22:55:20.803-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 651 + time=2025-12-15T22:55:20.807-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 652 + time=2025-12-15T22:55:20.820-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 653 + time=2025-12-15T22:55:21.433-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 654 + time=2025-12-15T22:55:21.492-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 655 + time=2025-12-15T22:55:21.503-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 656 + time=2025-12-15T22:55:22.355-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 657 + time=2025-12-15T22:55:22.363-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 658 + time=2025-12-15T22:55:22.385-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 659 + time=2025-12-15T22:55:22.512-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 660 + time=2025-12-15T22:55:22.520-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 661 + time=2025-12-15T22:55:22.527-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 662 + time=2025-12-15T22:55:23.048-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 663 + time=2025-12-15T22:55:23.057-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 664 + time=2025-12-15T22:55:23.080-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 665 + time=2025-12-15T22:55:23.212-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 666 + time=2025-12-15T22:55:23.219-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 667 + time=2025-12-15T22:55:23.240-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 668 + time=2025-12-15T22:55:23.400-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 669 + time=2025-12-15T22:55:23.409-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 670 + time=2025-12-15T22:55:23.430-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 671 + time=2025-12-15T22:55:23.571-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 672 + time=2025-12-15T22:55:23.580-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 673 + time=2025-12-15T22:55:23.595-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 674 + time=2025-12-15T22:55:24.075-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 675 + time=2025-12-15T22:55:24.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 676 + time=2025-12-15T22:55:24.219-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 677 + time=2025-12-15T22:55:24.222-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 678 + time=2025-12-15T22:55:24.225-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 679 + time=2025-12-15T22:55:24.227-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 680 + time=2025-12-15T22:55:24.233-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 681 + time=2025-12-15T22:55:24.236-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 682 + time=2025-12-15T22:55:24.248-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 683 + time=2025-12-15T22:55:24.317-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 684 + time=2025-12-15T22:55:24.320-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 685 + time=2025-12-15T22:55:24.334-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 686 + time=2025-12-15T22:55:24.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 687 + time=2025-12-15T22:55:24.405-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 688 + time=2025-12-15T22:55:24.418-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 689 + time=2025-12-15T22:55:24.485-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 690 + time=2025-12-15T22:55:24.488-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 691 + time=2025-12-15T22:55:24.491-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 692 + time=2025-12-15T22:55:24.882-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 693 + time=2025-12-15T22:55:38.886-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 694 + 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 695 + time=2025-12-15T22:55:38.887-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 696 + time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 697 + time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Max lines reached" maxLines=0 698 + time=2025-12-15T22:55:38.887-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 699 + time=2025-12-15T22:55:38.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 700 + time=2025-12-15T22:55:38.888-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 701 + time=2025-12-15T22:55:38.892-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 702 + time=2025-12-15T22:55:38.895-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 703 + time=2025-12-15T22:55:38.897-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 704 + time=2025-12-15T22:55:38.899-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 705 + time=2025-12-15T22:55:38.901-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 706 + time=2025-12-15T22:55:41.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 707 + time=2025-12-15T22:55:41.146-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 708 + time=2025-12-15T22:55:41.894-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 709 + time=2025-12-15T22:55:41.902-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 710 + time=2025-12-15T22:55:43.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 711 + time=2025-12-15T22:55:43.270-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 712 + time=2025-12-15T22:55:43.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 713 + time=2025-12-15T22:55:43.948-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 714 + time=2025-12-15T22:55:45.358-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 715 + 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 716 + time=2025-12-15T22:55:45.400-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 717 + time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 718 + time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Max lines reached" maxLines=0 719 + time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Rendered output data" lineCnt=1 totalHeight=0 totalWidth=0 maxW=0 720 + time=2025-12-15T22:55:45.401-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 721 + time=2025-12-15T22:55:45.405-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 722 + time=2025-12-15T22:55:45.407-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 723 + time=2025-12-15T22:55:45.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 724 + time=2025-12-15T22:55:45.413-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 725 + time=2025-12-15T22:55:45.415-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 726 + time=2025-12-15T22:55:45.417-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 727 + time=2025-12-15T22:55:47.410-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 728 + time=2025-12-15T22:55:50.097-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 729 + 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 730 + time=2025-12-15T22:55:50.098-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 731 + time=2025-12-15T22:55:50.098-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 732 + time=2025-12-15T22:55:50.101-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 733 + time=2025-12-15T22:55:50.104-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 734 + time=2025-12-15T22:55:50.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 735 + time=2025-12-15T22:55:50.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 736 + time=2025-12-15T22:55:50.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 737 + time=2025-12-15T22:55:50.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 738 + time=2025-12-15T22:55:50.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 739 + time=2025-12-15T22:55:50.633-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 740 + time=2025-12-15T22:55:51.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 741 + time=2025-12-15T22:55:51.719-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 742 + time=2025-12-15T22:55:52.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 743 + time=2025-12-15T22:55:52.513-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 744 + time=2025-12-15T22:55:52.801-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 745 + time=2025-12-15T22:55:52.809-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 746 + time=2025-12-15T22:55:53.246-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 747 + time=2025-12-15T22:55:53.254-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 748 + time=2025-12-15T22:55:53.260-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 749 + time=2025-12-15T22:55:53.265-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 750 + time=2025-12-15T22:55:53.474-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 751 + time=2025-12-15T22:55:53.480-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 752 + time=2025-12-15T22:55:53.778-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 753 + time=2025-12-15T22:55:53.785-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 754 + time=2025-12-15T22:55:54.308-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 755 + time=2025-12-15T22:55:54.315-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 756 + time=2025-12-15T22:55:54.665-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 757 + time=2025-12-15T22:55:54.669-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 758 + time=2025-12-15T22:55:54.839-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 759 + time=2025-12-15T22:55:54.846-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 760 + time=2025-12-15T22:55:55.370-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 761 + time=2025-12-15T22:55:55.377-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 762 + time=2025-12-15T22:55:55.900-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 763 + time=2025-12-15T22:55:55.907-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 764 + time=2025-12-15T22:55:56.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 765 + time=2025-12-15T22:55:56.127-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 766 + time=2025-12-15T22:55:56.431-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 767 + time=2025-12-15T22:55:56.436-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 768 + time=2025-12-15T22:55:56.962-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 769 + time=2025-12-15T22:55:56.969-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 770 + time=2025-12-15T22:55:57.472-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 771 + time=2025-12-15T22:55:57.480-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 772 + time=2025-12-15T22:55:57.493-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 773 + time=2025-12-15T22:55:57.500-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 774 + time=2025-12-15T22:55:58.025-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 775 + time=2025-12-15T22:55:58.037-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 776 + time=2025-12-15T22:55:58.555-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 777 + time=2025-12-15T22:55:58.562-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 778 + time=2025-12-15T22:55:58.872-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 779 + time=2025-12-15T22:55:58.879-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 780 + time=2025-12-15T22:55:58.884-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 781 + time=2025-12-15T22:55:58.889-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 782 + time=2025-12-15T22:55:58.939-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 783 + time=2025-12-15T22:55:58.942-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 784 + time=2025-12-15T22:55:58.944-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 785 + time=2025-12-15T22:55:58.947-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 786 + time=2025-12-15T22:55:59.055-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 787 + time=2025-12-15T22:55:59.059-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 788 + time=2025-12-15T22:55:59.065-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 789 + time=2025-12-15T22:55:59.071-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 790 + time=2025-12-15T22:55:59.191-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 791 + time=2025-12-15T22:55:59.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 792 + time=2025-12-15T22:55:59.197-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 793 + time=2025-12-15T22:55:59.200-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 794 + time=2025-12-15T22:55:59.262-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 795 + time=2025-12-15T22:55:59.268-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 796 + time=2025-12-15T22:55:59.272-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 797 + time=2025-12-15T22:55:59.275-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 798 + time=2025-12-15T22:55:59.551-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 799 + time=2025-12-15T22:55:59.556-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 800 + time=2025-12-15T22:55:59.558-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 801 + time=2025-12-15T22:55:59.561-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 802 + time=2025-12-15T22:55:59.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 803 + time=2025-12-15T22:55:59.722-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 804 + time=2025-12-15T22:56:00.082-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 805 + time=2025-12-15T22:56:00.088-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 806 + time=2025-12-15T22:56:00.612-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 807 + time=2025-12-15T22:56:00.621-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 808 + time=2025-12-15T22:56:01.143-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 809 + time=2025-12-15T22:56:01.154-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 810 + time=2025-12-15T22:56:01.252-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 811 + time=2025-12-15T22:56:01.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 812 + time=2025-12-15T22:56:01.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 813 + time=2025-12-15T22:56:01.682-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 814 + time=2025-12-15T22:56:16.758-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 815 + time=2025-12-15T22:56:16.808-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 816 + time=2025-12-15T22:56:18.995-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 817 + time=2025-12-15T22:56:19.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 818 + time=2025-12-15T22:56:19.642-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 819 + time=2025-12-15T22:56:19.646-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 820 + time=2025-12-15T22:56:20.614-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 821 + time=2025-12-15T22:56:20.623-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 822 + time=2025-12-15T22:56:21.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 823 + time=2025-12-15T22:56:21.434-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 824 + time=2025-12-15T22:56:21.441-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 825 + time=2025-12-15T22:56:21.746-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 826 + time=2025-12-15T22:56:21.750-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 827 + time=2025-12-15T22:56:21.756-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 828 + time=2025-12-15T22:56:22.107-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 829 + time=2025-12-15T22:56:22.112-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 830 + time=2025-12-15T22:56:22.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 831 + time=2025-12-15T22:56:22.378-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 832 + time=2025-12-15T22:56:22.385-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 833 + time=2025-12-15T22:56:22.819-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 834 + time=2025-12-15T22:56:22.823-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 835 + time=2025-12-15T22:56:23.142-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 836 + time=2025-12-15T22:56:23.147-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 837 + time=2025-12-15T22:56:23.299-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 838 + time=2025-12-15T22:56:23.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 839 + time=2025-12-15T22:56:23.635-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 840 + time=2025-12-15T22:56:23.643-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 841 + time=2025-12-15T22:56:23.649-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 842 + time=2025-12-15T22:56:24.189-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 843 + time=2025-12-15T22:56:24.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 844 + time=2025-12-15T22:56:24.195-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 845 + time=2025-12-15T22:56:24.534-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 846 + time=2025-12-15T22:56:24.537-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 847 + time=2025-12-15T22:56:24.539-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 848 + time=2025-12-15T22:56:24.671-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 849 + time=2025-12-15T22:56:24.674-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 850 + time=2025-12-15T22:56:24.676-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 851 + time=2025-12-15T22:56:25.034-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 852 + time=2025-12-15T22:56:25.037-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 853 + time=2025-12-15T22:56:25.040-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 854 + time=2025-12-15T22:56:26.625-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 855 + time=2025-12-15T22:56:26.628-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 856 + time=2025-12-15T22:56:26.873-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 857 + time=2025-12-15T22:56:26.877-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 858 + time=2025-12-15T22:56:27.993-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 859 + time=2025-12-15T22:56:28.211-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 860 + time=2025-12-15T22:56:28.963-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 861 + time=2025-12-15T22:56:29.253-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 862 + time=2025-12-15T22:56:29.304-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 863 + time=2025-12-15T22:56:29.307-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 864 + time=2025-12-15T22:56:30.784-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 865 + time=2025-12-15T22:56:30.793-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 866 + time=2025-12-15T22:56:31.017-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 867 + time=2025-12-15T22:56:31.462-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 868 + time=2025-12-15T22:56:32.029-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 869 + time=2025-12-15T22:56:32.086-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 870 + time=2025-12-15T22:56:32.090-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 871 + time=2025-12-15T22:56:32.644-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 872 + time=2025-12-15T22:56:32.647-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 873 + time=2025-12-15T22:56:32.648-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 874 + time=2025-12-15T22:56:33.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 875 + time=2025-12-15T22:56:33.010-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 876 + time=2025-12-15T22:56:33.012-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 877 + time=2025-12-15T22:56:33.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 878 + time=2025-12-15T22:56:33.523-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 879 + time=2025-12-15T22:56:33.815-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 880 + time=2025-12-15T22:56:34.256-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 881 + time=2025-12-15T22:56:34.258-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 882 + time=2025-12-15T22:56:34.362-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 883 + time=2025-12-15T22:56:34.543-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 884 + time=2025-12-15T22:56:35.173-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 885 + time=2025-12-15T22:56:35.955-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 886 + time=2025-12-15T22:56:35.958-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 887 + time=2025-12-15T22:56:36.018-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 888 + time=2025-12-15T22:56:36.892-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 889 + time=2025-12-15T22:56:36.898-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 890 + time=2025-12-15T22:56:36.966-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 891 + time=2025-12-15T22:56:37.511-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 892 + time=2025-12-15T22:56:37.514-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 893 + time=2025-12-15T22:56:37.714-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 894 + time=2025-12-15T22:56:37.716-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 895 + time=2025-12-15T22:56:37.815-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 896 + time=2025-12-15T22:56:38.008-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 897 + time=2025-12-15T22:56:38.478-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 898 + time=2025-12-15T22:56:38.658-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 899 + time=2025-12-15T22:56:39.263-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 900 + time=2025-12-15T22:56:39.300-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 901 + time=2025-12-15T22:56:39.302-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 902 + time=2025-12-15T22:56:39.305-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 903 + time=2025-12-15T22:56:39.314-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 904 + time=2025-12-15T22:56:39.316-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 905 + time=2025-12-15T22:56:39.345-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 906 + time=2025-12-15T22:56:39.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 907 + time=2025-12-15T22:56:39.371-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 908 + time=2025-12-15T22:56:39.374-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 909 + time=2025-12-15T22:56:39.397-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 910 + time=2025-12-15T22:56:39.399-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 911 + time=2025-12-15T22:56:39.423-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 912 + time=2025-12-15T22:56:39.427-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 913 + time=2025-12-15T22:56:39.448-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 914 + time=2025-12-15T22:56:39.456-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 915 + time=2025-12-15T22:56:39.478-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 916 + time=2025-12-15T22:56:39.489-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 917 + time=2025-12-15T22:56:39.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 918 + time=2025-12-15T22:56:39.570-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 919 + time=2025-12-15T22:56:39.576-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 920 + time=2025-12-15T22:56:39.604-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 921 + time=2025-12-15T22:56:39.609-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 922 + time=2025-12-15T22:56:39.640-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 923 + time=2025-12-15T22:56:39.647-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 924 + time=2025-12-15T22:56:39.666-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 925 + time=2025-12-15T22:56:39.697-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 926 + time=2025-12-15T22:56:39.743-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 927 + time=2025-12-15T22:56:39.747-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 928 + time=2025-12-15T22:56:39.785-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 929 + time=2025-12-15T22:56:39.851-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 930 + time=2025-12-15T22:56:39.858-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 931 + time=2025-12-15T22:56:39.943-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 932 + time=2025-12-15T22:56:39.973-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 933 + time=2025-12-15T22:56:40.007-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 934 + time=2025-12-15T22:56:40.026-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 935 + time=2025-12-15T22:56:40.150-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 936 + time=2025-12-15T22:56:40.161-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 937 + time=2025-12-15T22:56:40.219-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 938 + time=2025-12-15T22:56:40.368-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 939 + time=2025-12-15T22:56:40.392-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 940 + time=2025-12-15T22:56:40.852-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 941 + time=2025-12-15T22:56:40.938-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 942 + time=2025-12-15T22:56:40.946-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 943 + time=2025-12-15T22:56:40.954-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 944 + time=2025-12-15T22:56:41.007-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 945 + time=2025-12-15T22:56:41.022-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 946 + time=2025-12-15T22:56:41.092-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 947 + time=2025-12-15T22:56:41.111-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 948 + time=2025-12-15T22:56:41.114-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 949 + time=2025-12-15T22:56:41.117-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 950 + time=2025-12-15T22:56:41.168-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 951 + time=2025-12-15T22:56:41.215-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 952 + time=2025-12-15T22:56:41.231-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 953 + time=2025-12-15T22:56:41.276-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 954 + time=2025-12-15T22:56:41.574-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 955 + time=2025-12-15T22:56:42.925-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 956 + time=2025-12-15T22:56:42.933-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 957 + time=2025-12-15T22:56:43.204-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 958 + time=2025-12-15T22:56:43.823-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 959 + time=2025-12-15T22:56:43.929-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 960 + time=2025-12-15T22:56:44.303-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 961 + time=2025-12-15T22:56:44.306-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 962 + time=2025-12-15T22:56:44.309-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 963 + time=2025-12-15T22:56:44.345-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 964 + time=2025-12-15T22:56:44.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 965 + time=2025-12-15T22:56:44.495-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 966 + time=2025-12-15T22:56:44.498-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 967 + time=2025-12-15T22:56:44.559-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 968 + time=2025-12-15T22:56:44.598-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 969 + time=2025-12-15T22:56:44.640-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 970 + time=2025-12-15T22:56:44.736-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 971 + time=2025-12-15T22:56:44.739-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 972 + time=2025-12-15T22:56:44.796-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 973 + time=2025-12-15T22:56:45.124-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 974 + time=2025-12-15T22:56:45.169-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 975 + time=2025-12-15T22:56:45.192-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 976 + time=2025-12-15T22:56:45.340-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 977 + time=2025-12-15T22:56:46.296-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 978 + time=2025-12-15T22:56:46.347-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 979 + time=2025-12-15T22:56:46.905-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 980 + time=2025-12-15T22:56:46.956-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 981 + time=2025-12-15T22:56:47.505-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 982 + time=2025-12-15T22:56:47.507-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 983 + time=2025-12-15T22:56:47.787-08:00 level=ERROR msg="exif error" error="exif: failed to find exif intro marker" 984 + time=2025-12-15T22:56:47.864-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 985 + time=2025-12-15T22:56:47.867-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 986 + time=2025-12-15T22:56:47.914-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 987 + time=2025-12-15T22:56:48.284-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 988 + time=2025-12-15T22:56:48.426-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 989 + time=2025-12-15T22:56:48.454-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 990 + time=2025-12-15T22:56:48.949-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 991 + time=2025-12-15T22:56:48.975-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 992 + time=2025-12-15T22:56:48.978-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 993 + time=2025-12-15T22:56:49.024-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 994 + time=2025-12-15T22:56:49.208-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 995 + time=2025-12-15T22:56:51.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 996 + 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 997 + time=2025-12-15T22:56:51.096-08:00 level=INFO msg="Terminal cell size detection" pixels_per_column=15 pixels_per_row=29 998 + time=2025-12-15T22:56:51.096-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 999 + time=2025-12-15T22:56:51.102-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1000 + time=2025-12-15T22:56:51.106-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1001 + time=2025-12-15T22:56:51.110-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1002 + time=2025-12-15T22:56:51.115-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1003 + time=2025-12-15T22:56:51.119-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1004 + time=2025-12-15T22:56:51.123-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input" 1005 + time=2025-12-15T22:56:57.880-08:00 level=ERROR msg="Error parsing pinned directories data" error="unexpected end of JSON input"
+1
private_Library/private_Application Support/superfile/theme/catppuccin-latte.toml
··· 42 42 cancel = "#e64553" # Maroon 43 43 # Gradient color can only have two color! 44 44 gradient_color = ["#1e66f5", "#ca9ee6"] # [Blue, Mauve] 45 + directory_icon_color = "#444444" # Darker shade of grey 45 46 46 47 # ========= File Panel Special Items ========= 47 48 file_panel_top_directory_icon = "#40a02b" # Green
+1 -1
private_Library/private_Application Support/superfile/themeFileVersion
··· 1 - v1.1.7.1 1 + v1.4.0
+3
private_dot_config/empty_starship.toml private_dot_config/starship.toml
··· 3 3 4 4 5 5 add_newline = false 6 + [directory] 7 + repo_root_style = 'blue' 8 + before_repo_root_style = 'cyan'
+1 -1
private_dot_config/ghostty/config
··· 26 26 macos-option-as-alt = true 27 27 macos-auto-secure-input 28 28 macos-titlebar-style = transparent 29 - # macos-icon = xray 29 + shell-integration-features = sudo, ssh-terminfo,ssh-env
-8
private_dot_ssh/private_config
··· 3 3 # This won't be added again if you remove it. 4 4 Include ~/.orbstack/ssh/config 5 5 6 - Host iceberg.jkp.sh 7 - HostName iceberg.jkp.sh 8 - 9 - Host * 10 - # VerifyHostKeyDNS yes 11 - # ControlMaster auto 12 - # ControlPath ~/.ssh/sockets/%C 13 - # ControlPersist 5m 14 6 Host unifi 15 7 SetEnv TERM=xterm-256color