diff --git a/.config/Brewfile b/.config/Brewfile index bba3d19..c2f77ce 100644 --- a/.config/Brewfile +++ b/.config/Brewfile @@ -15,6 +15,7 @@ brew "lua" brew "mackup" brew "mas" brew "mysql@8.4", restart_service: :changed +brew "ncmdump" brew "neofetch" brew "neovim" brew "nping" @@ -30,6 +31,7 @@ brew "tmux" brew "trash" brew "tree" brew "typioca" +brew "uv" brew "wget" brew "xdotool" brew "xprop" @@ -40,7 +42,6 @@ cask "alacritty" cask "bettertouchtool" cask "cherry-studio" cask "clash-verge-rev" -cask "clickup" cask "coteditor" cask "cursor" cask "dockdoor" @@ -48,6 +49,7 @@ cask "flutter" cask "font-jetbrains-mono" cask "font-jetbrains-mono-nerd-font" cask "font-maple-mono-nf-cn" +cask "github" cask "google-chrome" cask "google-drive" cask "imhex" @@ -71,22 +73,24 @@ cask "obsidian" cask "only-switch" cask "orbstack" cask "picgo" +cask "qq" cask "qspace-pro" cask "replit" cask "slack" cask "slimhud" cask "snipaste" cask "spotify" -cask "ssh-config-editor" cask "superhuman" cask "syncalicious" cask "thor" cask "trae" cask "trae-cn" +cask "ultimate-vocal-remover" cask "visual-studio-code" cask "wechatwebdevtools" cask "windsurf" cask "wpsoffice-cn" +mas "Aspect Ratio", id: 1156930257 mas "CapCut", id: 1500855883 mas "DaVinci Resolve", id: 571213070 mas "DevCleaner", id: 1388020431 @@ -96,6 +100,7 @@ mas "Goodnotes", id: 1444383602 mas "Microsoft To Do", id: 1274495053 mas "Nex Terminal", id: 6742214286 mas "NookX", id: 6733240772 +mas "Pure Paste", id: 1611378436 mas "QianJi", id: 1473785373 mas "SnippetsLab", id: 1006087419 mas "Wallpaper Monster", id: 6553989287 diff --git a/.config/fish/completions/nvm.fish b/.config/fish/completions/nvm.fish new file mode 100644 index 0000000..14be1b7 --- /dev/null +++ b/.config/fish/completions/nvm.fish @@ -0,0 +1,21 @@ +complete --command nvm --exclusive +complete --command nvm --exclusive --long version --description "Print version" +complete --command nvm --exclusive --long help --description "Print help" +complete --command nvm --long silent --description "Suppress standard output" + +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments install --description "Download and activate the specified Node version" +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments use --description "Activate the specified Node version in the current shell" +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments list --description "List installed Node versions" +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments list-remote --description "List available Node versions to install" +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments current --description "Print the currently-active Node version" +complete --command nvm --exclusive --condition "__fish_seen_subcommand_from install" --arguments "( + test -e $nvm_data && string split ' ' <$nvm_data/.index +)" +complete --command nvm --exclusive --condition "__fish_seen_subcommand_from use" --arguments "(_nvm_list | string split ' ')" +complete --command nvm --exclusive --condition __fish_use_subcommand --arguments uninstall --description "Uninstall the specified Node version" +complete --command nvm --exclusive --condition "__fish_seen_subcommand_from uninstall" --arguments "( + _nvm_list | string split ' ' | string replace system '' +)" +complete --command nvm --exclusive --condition "__fish_seen_subcommand_from use uninstall" --arguments "( + set --query nvm_default_version && echo default +)" diff --git a/.config/fish/conf.d/brew.fish b/.config/fish/conf.d/brew.fish index 2cd6b53..c956560 100644 --- a/.config/fish/conf.d/brew.fish +++ b/.config/fish/conf.d/brew.fish @@ -1,8 +1,9 @@ -function brew - command /bin/zsh -c "brew $argv" +eval "$(/opt/homebrew/bin/brew shellenv)" +function b + command brew $argv if contains -- "install" $argv; or contains -- "remove" $argv; or contains -- "uninstall" $argv; echo "Updating Brewfile..." - command /bin/zsh -c "brew bundle dump --force --file=~/.config/Brewfile" + command -c "brew bundle dump --force --file=~/.config/Brewfile" end end function brew_install diff --git a/.config/fish/conf.d/homebrew-registry.fish b/.config/fish/conf.d/homebrew-registry.fish new file mode 100644 index 0000000..93f355d --- /dev/null +++ b/.config/fish/conf.d/homebrew-registry.fish @@ -0,0 +1,2 @@ +set -x HOMEBREW_BREW_GIT_REMOTE "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git" +set -x HOMEBREW_CORE_GIT_REMOTE "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git" diff --git a/.config/fish/conf.d/nvm.fish b/.config/fish/conf.d/nvm.fish new file mode 100644 index 0000000..7545699 --- /dev/null +++ b/.config/fish/conf.d/nvm.fish @@ -0,0 +1,28 @@ +set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share +set --query nvm_mirror || set --global nvm_mirror https://nodejs.org/dist +set --query nvm_data || set --global nvm_data $XDG_DATA_HOME/nvm + +function _nvm_install --on-event nvm_install + test ! -d $nvm_data && command mkdir -p $nvm_data + echo "Downloading the Node distribution index..." 2>/dev/null + _nvm_index_update +end + +function _nvm_update --on-event nvm_update + set --query --universal nvm_data && set --erase --universal nvm_data + set --query --universal nvm_mirror && set --erase --universal nvm_mirror + set --query nvm_mirror || set --global nvm_mirror https://nodejs.org/dist +end + +function _nvm_uninstall --on-event nvm_uninstall + command rm -rf $nvm_data + + set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version + + set --names | string replace --filter --regex -- "^nvm" "set --erase nvm" | source + functions --erase (functions --all | string match --entire --regex -- "^_nvm_") +end + +if status is-interactive && set --query nvm_default_version && ! set --query nvm_current_version + nvm use --silent $nvm_default_version +end diff --git a/.config/fish/config.fish b/.config/fish/config.fish index a82124a..4ef09ca 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -22,3 +22,10 @@ else end # <<< conda initialize <<< + +# pnpm +set -gx PNPM_HOME "/Users/marsway/Library/pnpm" +if not string match -q -- $PNPM_HOME $PATH + set -gx PATH "$PNPM_HOME" $PATH +end +# pnpm end diff --git a/.config/fish/fish_plugins b/.config/fish/fish_plugins new file mode 100644 index 0000000..aea2aa0 --- /dev/null +++ b/.config/fish/fish_plugins @@ -0,0 +1 @@ +jorgebucaran/nvm.fish diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index 69fc1fa..dfec8e4 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables @@ -6,6 +6,8 @@ SETUVAR --export ZLUA_SCRIPT:/Users/marsway/\x2ebin/z\x2elua/z\x2elua SETUVAR _ZL_DATA:/Users/marsway/\x2elocal/share/zlua/zlua\x2etxt SETUVAR _ZL_DATA_DIR:/Users/marsway/\x2elocal/share/zlua SETUVAR __fish_initialized:3800 +SETUVAR _fisher_jorgebucaran_2F_nvm_2E_fish_files:\x7e/\x2econfig/fish/functions/_nvm_index_update\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_list\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_activate\x2efish\x1e\x7e/\x2econfig/fish/functions/_nvm_version_deactivate\x2efish\x1e\x7e/\x2econfig/fish/functions/nvm\x2efish\x1e\x7e/\x2econfig/fish/conf\x2ed/nvm\x2efish\x1e\x7e/\x2econfig/fish/completions/nvm\x2efish +SETUVAR _fisher_plugins:jorgebucaran/nvm\x2efish SETUVAR _fisher_upgraded_to_4_4:\x1d SETUVAR fish_color_autosuggestion:brblack SETUVAR fish_color_cancel:\x2dr @@ -35,7 +37,7 @@ SETUVAR fish_pager_color_description:yellow\x1e\x2di SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan SETUVAR fish_pager_color_selected_background:\x2dr -SETUVAR fish_user_paths:/opt/clash/bin\x1e/opt/homebrew/opt/mysql\x408\x2e4/bin\x1e/opt/homebrew/bin +SETUVAR fish_user_paths:/opt/homebrew/sbin\x1e/opt/clash/bin\x1e/opt/homebrew/opt/mysql\x408\x2e4/bin\x1e/opt/homebrew/bin SETUVAR pure_begin_prompt_with_current_directory:true SETUVAR pure_check_for_new_release:false SETUVAR pure_color_at_sign:pure_color_mute diff --git a/.config/fish/functions/_nvm_index_update.fish b/.config/fish/functions/_nvm_index_update.fish new file mode 100644 index 0000000..c66753d --- /dev/null +++ b/.config/fish/functions/_nvm_index_update.fish @@ -0,0 +1,20 @@ +function _nvm_index_update + test ! -d $nvm_data && command mkdir -p $nvm_data + + set --local index $nvm_data/.index + + if not command curl -q --location --silent $nvm_mirror/index.tab >$index.temp + command rm -f $index.temp + echo "nvm: Can't update index, host unavailable: \"$nvm_mirror\"" >&2 + return 1 + end + + command awk -v OFS=\t ' + /v0.9.12/ { exit } # Unsupported + NR > 1 { + print $1 (NR == 2 ? " latest" : $10 != "-" ? " lts/" tolower($10) : "") + } + ' $index.temp >$index + + command rm -f $index.temp +end diff --git a/.config/fish/functions/_nvm_list.fish b/.config/fish/functions/_nvm_list.fish new file mode 100644 index 0000000..1623bb8 --- /dev/null +++ b/.config/fish/functions/_nvm_list.fish @@ -0,0 +1,14 @@ +function _nvm_list + set --local versions $nvm_data/* + + set --query versions[1] && + string match --entire --regex -- ( + string replace --all -- $nvm_data/ "" $versions | + string match --regex -- "v\d.+" | + string escape --style=regex | + string join "|" + ) <$nvm_data/.index + + command --all node | + string match --quiet --invert --regex -- "^$nvm_data" && echo system +end diff --git a/.config/fish/functions/_nvm_version_activate.fish b/.config/fish/functions/_nvm_version_activate.fish new file mode 100644 index 0000000..f7dfef7 --- /dev/null +++ b/.config/fish/functions/_nvm_version_activate.fish @@ -0,0 +1,4 @@ +function _nvm_version_activate --argument-names ver + set --global --export nvm_current_version $ver + set --prepend PATH $nvm_data/$ver/bin +end diff --git a/.config/fish/functions/_nvm_version_deactivate.fish b/.config/fish/functions/_nvm_version_deactivate.fish new file mode 100644 index 0000000..24dd36e --- /dev/null +++ b/.config/fish/functions/_nvm_version_deactivate.fish @@ -0,0 +1,5 @@ +function _nvm_version_deactivate --argument-names ver + test "$nvm_current_version" = "$ver" && set --erase nvm_current_version + set --local index (contains --index -- $nvm_data/$ver/bin $PATH) && + set --erase PATH[$index] +end diff --git a/.config/fish/functions/d.fish b/.config/fish/functions/d.fish new file mode 100644 index 0000000..52ca60b --- /dev/null +++ b/.config/fish/functions/d.fish @@ -0,0 +1,3 @@ +function d + cd .. +end diff --git a/.config/fish/functions/nvm.fish b/.config/fish/functions/nvm.fish new file mode 100644 index 0000000..64d94c5 --- /dev/null +++ b/.config/fish/functions/nvm.fish @@ -0,0 +1,237 @@ +function nvm --description "Node version manager" + for silent in --silent -s + if set --local index (contains --index -- $silent $argv) + set --erase argv[$index] && break + end + set --erase silent + end + + set --local cmd $argv[1] + set --local ver $argv[2] + + if set --query silent && ! set --query cmd[1] + echo "nvm: Version number not specified (see nvm -h for usage)" >&2 + return 1 + end + + if ! set --query ver[1] && contains -- "$cmd" install use + for file in .nvmrc .node-version + set file (_nvm_find_up $PWD $file) && read ver <$file && break + end + + if ! set --query ver[1] + echo "nvm: Invalid version or missing \".nvmrc\" file" >&2 + return 1 + end + end + + set --local their_version $ver + + switch "$cmd" + case -v --version + echo "nvm, version 2.2.18" + case "" -h --help + echo "Usage: nvm install Download and activate the specified Node version" + echo " nvm install Install the version specified in the nearest .nvmrc file" + echo " nvm use Activate the specified Node version in the current shell" + echo " nvm use Activate the version specified in the nearest .nvmrc file" + echo " nvm list List installed Node versions" + echo " nvm list-remote List available Node versions to install" + echo " nvm list-remote List Node versions matching a given regex pattern" + echo " nvm current Print the currently-active Node version" + echo " nvm uninstall Uninstall the specified Node version" + echo "Options:" + echo " -s, --silent Suppress standard output" + echo " -v, --version Print the version of nvm" + echo " -h, --help Print this help message" + echo "Variables:" + echo " nvm_arch Override architecture, e.g. x64-musl" + echo " nvm_mirror Use a mirror for downloading Node binaries" + echo " nvm_default_version Set the default version for new shells" + echo " nvm_default_packages Install a list of packages every time a Node version is installed" + echo " nvm_data Set a custom directory for storing nvm data" + echo "Examples:" + echo " nvm install latest Install the latest version of Node" + echo " nvm use 14.15.1 Use Node version 14.15.1" + echo " nvm use system Activate the system's Node version" + + case install + _nvm_index_update + + string match --entire --regex -- (_nvm_version_match $ver) <$nvm_data/.index | read ver alias + + if ! set --query ver[1] + echo "nvm: Invalid version number or alias: \"$their_version\"" >&2 + return 1 + end + + if test ! -e $nvm_data/$ver + set --local os (command uname -s | string lower) + set --local ext tar.gz + set --local arch (command uname -m) + set --local tarcmd tar + + switch $os + case aix + set arch ppc64 + case sunos + case linux + case darwin + case {msys_nt,mingw\*_nt}\* + set os win + set ext zip + set tarcmd bsdtar + case \* + echo "nvm: Unsupported operating system: \"$os\"" >&2 + return 1 + end + + switch $arch + case i\*86 + set arch x86 + case x86_64 + set arch x64 + case arm64 + string match --regex --quiet "v(?\d+)" $ver + if test "$os" = darwin -a $major -lt 16 + set arch x64 + end + case armv6 armv6l + set arch armv6l + case armv7 armv7l + set arch armv7l + case armv8 armv8l aarch64 + set arch arm64 + end + + set --query nvm_arch && set arch $nvm_arch + + set --local dir "node-$ver-$os-$arch" + set --local url $nvm_mirror/$ver/$dir.$ext + + command mkdir -p $nvm_data/$ver + + if ! set --query silent + echo -e "Installing Node \x1b[1m$ver\x1b[22m $alias" + echo -e "Fetching \x1b[4m$url\x1b[24m\x1b[7m" + end + + if ! command curl -q $silent --progress-bar --location $url | + command $tarcmd --extract --gzip --directory $nvm_data/$ver 2>/dev/null + command rm -rf $nvm_data/$ver + echo -e "\033[F\33[2K\x1b[0mnvm: Invalid mirror or host unavailable: \"$url\"" >&2 + return 1 + end + + set --query silent || echo -en "\033[F\33[2K\x1b[0m" + + if test "$os" = win + command mv $nvm_data/$ver/$dir $nvm_data/$ver/bin + else + command mv $nvm_data/$ver/$dir/* $nvm_data/$ver + command rm -rf $nvm_data/$ver/$dir + end + end + + if test $ver != "$nvm_current_version" + set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version + _nvm_version_activate $ver + + set --query nvm_default_packages[1] && npm install --global $silent $nvm_default_packages + end + + set --query silent || printf "Now using Node %s (npm %s) %s\n" (_nvm_node_info) + case use + test $ver = default && set ver $nvm_default_version + _nvm_list | string match --entire --regex -- (_nvm_version_match $ver) | read ver __ + + if ! set --query ver[1] + echo "nvm: Can't use Node \"$their_version\", version must be installed first" >&2 + return 1 + end + + if test $ver != "$nvm_current_version" + set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version + test $ver != system && _nvm_version_activate $ver + end + + set --query silent || printf "Now using Node %s (npm %s) %s\n" (_nvm_node_info) + case uninstall + if test -z "$ver" + echo "nvm: Not enough arguments for command: \"$cmd\"" >&2 + return 1 + end + + test $ver = default && test ! -z "$nvm_default_version" && set ver $nvm_default_version + + _nvm_list | string match --entire --regex -- (_nvm_version_match $ver) | read ver __ + + if ! set -q ver[1] + echo "nvm: Node version not installed or invalid: \"$their_version\"" >&2 + return 1 + end + + set --query silent || printf "Uninstalling Node %s %s\n" $ver (string replace ~ \~ "$nvm_data/$ver/bin/node") + + _nvm_version_deactivate $ver + + command rm -rf $nvm_data/$ver + case current + _nvm_current + case ls list + _nvm_list | _nvm_list_format (_nvm_current) $argv[2] + case lsr {ls,list}-remote + _nvm_index_update || return + _nvm_list | command awk ' + FILENAME == "-" && (is_local[$1] = FNR == NR) { next } { + print $0 (is_local[$1] ? " ✓" : "") + } + ' - $nvm_data/.index | _nvm_list_format (_nvm_current) $argv[2] + case \* + echo "nvm: Unknown command or option: \"$cmd\" (see nvm -h for usage)" >&2 + return 1 + end +end + +function _nvm_find_up --argument-names path file + test -e "$path/$file" && echo $path/$file || begin + test ! -z "$path" || return + _nvm_find_up (string replace --regex -- '/[^/]*$' "" $path) $file + end +end + +function _nvm_version_match --argument-names ver + string replace --regex -- '^v?(\d+|\d+\.\d+)$' 'v$1.' $ver | + string replace --filter --regex -- '^v?(\d+)' 'v$1' | + string escape --style=regex || string lower '\b'$ver'(?:/\w+)?$' +end + +function _nvm_list_format --argument-names current regex + command awk -v current="$current" -v regex="$regex" ' + $0 ~ regex { + aliases[versions[i++] = $1] = $2 " " $3 + pad = (n = length($1)) > pad ? n : pad + } + END { + if (!i) exit 1 + while (i--) + printf((current == versions[i] ? " ▶ " : " ") "%"pad"s %s\n", + versions[i], aliases[versions[i]]) + } + ' +end + +function _nvm_current + command --search --quiet node || return + set --query nvm_current_version && echo $nvm_current_version || echo system +end + +function _nvm_node_info + set --local npm_path (string replace bin/npm-cli.js "" (realpath (command --search npm))) + test -f $npm_path/package.json || set --local npm_version_default (command npm --version) + command node --eval " + console.log(process.version) + console.log('$npm_version_default' ? '$npm_version_default': require('$npm_path/package.json').version) + console.log(process.execPath) + " | string replace -- ~ \~ +end diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 6865d22..9068400 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -48,7 +48,7 @@ set-option -g status-left '#[fg=#282828,bg=#a89984,nobold] #{E:@OS} Mars #S  # status bar right set-option -g status-right-length 150 set-option -g status-right-style none -set-option -g status-right '#[fg=#a89984,bg=#262626]#[fg=#282828,bg=#a89984] #{E:@GIT_BRANCH} #[fg=#a89984,bg=#a89984]#[fg=#3c3836]#[fg=#504945,bg=#3c3836]#[fg=#a89984,bg=#504945] #{E:@CPU}%% #[fg=#3c3836]#[fg=#a89984,bg=#504945]  %a %b %d #[fg=#3c3836] #[fg=#a89984,bg=#504945] %H:%M %p #[fg=#3c3836,bg=#504945]' +set-option -g status-right '#[fg=#a89984,bg=#262626]#[fg=#282828,bg=#a89984] #{E:@GIT_BRANCH} #[fg=#3c3836,bg=#a89984]#[fg=#3c3836]#[fg=#504945,bg=#3c3836]#[fg=#a89984,bg=#504945] #{E:@CPU}%% #[fg=#3c3836]#[fg=#a89984,bg=#504945]  %a %b %d #[fg=#3c3836] #[fg=#a89984,bg=#504945] %H:%M %p #[fg=#3c3836,bg=#504945]' ###{E:@IM} # window bar style @@ -91,7 +91,7 @@ bind l select-pane -R # 定位到右边窗口的快捷键 # 垂直分割窗格 (Control + D) bind-key -n C-d split-window -h -c '#{pane_current_path}' # 水平分割窗格 (Control + Return) -bind-key -n C-F split-window -v -c '#{pane_current_path}' +bind-key -n C-g split-window -v -c '#{pane_current_path}' # 新建选项卡 (Command + T) bind-key -n C-t new-window -c '#{pane_current_path}' # 关闭窗格 (Command + W) diff --git a/.config/vim/vimcolor/solarized-master/.gitmodules b/.config/vim/vimcolor/solarized-master/.gitmodules old mode 100755 new mode 100644 diff --git a/.gitignore b/.gitignore index e43b0f9..5fb3073 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +.tmp*/ diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..50b750c --- /dev/null +++ b/.ssh/config @@ -0,0 +1,20 @@ +# Added by OrbStack: 'orb' SSH host for Linux machines +# This only works if it's at the top of ssh_config (before any Host blocks). +# This won't be added again if you remove it. +Include ~/.orbstack/ssh/config + +Host autops + HostName autops.eagle.local + User root + ServerAliveInterval 30 + +Host portal + HostName portal.eagle.local + User root + ServerAliveInterval 30 + +Host g + HostName git.marsway.red + User ubuntu + ServerAliveInterval 30 + diff --git a/.ssh/id_ed25519 b/.ssh/id_ed25519 new file mode 100644 index 0000000..d2b8b5b --- /dev/null +++ b/.ssh/id_ed25519 @@ -0,0 +1,7 @@ +-----BEGIN OPENSSH PRIVATE KEY----- +b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW +QyNTUxOQAAACCU9Fztl2RXKse50somwLq1s9KXq938EtX+h+zIC1dKZAAAAJAHfRXpB30V +6QAAAAtzc2gtZWQyNTUxOQAAACCU9Fztl2RXKse50somwLq1s9KXq938EtX+h+zIC1dKZA +AAAEA0iNoIY0H9VrWOduuDIbvNw+JD+R8TRlcnED5CS8lajZT0XO2XZFcqx7nSyibAurWz +0per3fwS1f6H7MgLV0pkAAAAC21hcnN3YXlATWFjAQI= +-----END OPENSSH PRIVATE KEY----- diff --git a/.ssh/id_ed25519.pub b/.ssh/id_ed25519.pub new file mode 100644 index 0000000..9bff184 --- /dev/null +++ b/.ssh/id_ed25519.pub @@ -0,0 +1 @@ +ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJT0XO2XZFcqx7nSyibAurWz0per3fwS1f6H7MgLV0pk marsway@Mac diff --git a/.ssh/known_hosts b/.ssh/known_hosts new file mode 100644 index 0000000..96e6cef --- /dev/null +++ b/.ssh/known_hosts @@ -0,0 +1,15 @@ +git.marsway.red ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKPK7TJzKpzuwH39jLPIRWjA6FehyG4x3cQAZjyUm2hz +git.marsway.red ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5/fWtABUpVHzqfRvboua05VDE4qgBJEzdbdk6dwVBvt7wnTXvrUueAVCoNiSZzx4BGbWziuBnXdLQ+70EKhE5/4M+fOe0o+sa6s9BTeDmhf1pwSkkkiBj2Kgo7GgGY7BbNPJ0peq36YEuExV7ns5Vz7bTOQ+K5E80Y20jsjRCrnExmSz4RQnz+QgwzfmLurRjiF8oRI5vIh2bOEQBrHX6IzyJcSUjNhRUxAXzYBCi1SdBT6G0QKM/uTd37W5xVFTma42l6uZhpU/mhqiW+UfymoJdn5uSb2GVYSashCa/a7Lr9IaRnEpNWWaUT4y72KeY/v+Skk8yLbbXl0ooUv1m+D+5SdYAjcl5WzHaKuJXE/Py6rUb8X3etMCR7lETSjSqL16Con7DawkeDrI25Re8paPQGUxl9t6IbFVEFtCskP7vhk3YLK3uhQFEIpTBPBx6tfAvCoPE6+8cbcZKJgb6cd2ipfdkpSFnTsYmYHKKXQooA+x5BIVPvlfekxDjU/k= +git.marsway.red ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB6vVbo5bRNjjLn0j8BUw3J6xd/TPDR4xgBrtZhCuHYvCACB7n3n5wXhAU/s148oVAqdQHEkDjwY+8g5PtG7P8s= +e.coding.net ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHOWdwLpkos2CLli6DFvQ36yQE6Pe/PtFp3XwyirfZCIoGWnedaWI8zkJWVCs0wgOB9/urFepTDfV2wN49KGy1sl2/CCDEH2K/zeoEAZlTcBrhU17bwg1yMHCyJ7IM+zdLzItDEKYjgoWqVdUGK1dXQQlwt7GP4W7HqffelQQoVxOMoZ5N50MzD+nvV4y8iq0KwDQNy62iU4hui9ajCSVUDLu/06ucd5IojSI9keRIYAXvQf52TJ5EbvoBggp9RhjuWNEG8IhnPP6rzPS11Ocmwg/HsP8xOKL28AeDBAh6B6MEBDtlyp5Yfu9cwZJ9CFtU/x5fHFPtANmgIphAfwN1 +192.168.31.150 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGrw1W1hB6yQ1VMbUthNH4b3yfNISDzHHiemAU3S3KlB +192.168.31.150 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFRSuJVjVlLa7tM1diB3xasMWfJbcnUQNY6D8UkUVOYvpFnE6Xka0x5SBivAbc+AvoZoSURoB4Ue6PA4Z8OBG2Y/TpJd22YwSp9iV9G1ormULt6yYVZAT/lgKR/+m3havhlZZKhBGgm7YGEt8R8bON6eH9FCeHcCF8tLsy5GUyO7QGS9HZsJcLTgzlAstdv7IQt6P5gwiVo4w2dr9LawyN06u/phSLGnthuU6cBC3kfL393DEL5m3nuuQp9GNnEVq+9iVi0LvLx0Ra/QPhu7EDnaTaSi/cUruJhfxXsdc2mWhzvU9wPpDsDjjJDPuKmy/+g+h2K4Rll7sjE8ap1LFanI5mVZKHSA4NFaZLYQ3l9Vid6d+42LjcUDB4QuWi7hArZlIakCiMbUXjnoWbVmRKl1ujukGKPUnRlKzjNVd0pNqjRz/Zr2TvhDo+GU8QfPJGqe/wfUaLV5xhfBOHPkOGfQJwUeB4v3JUnHY3sgZ+iNMYztXtiH4Md4AmmUoT7nM= +192.168.31.150 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGRYzFDXKj/O3NadECVmcamUbZOUgGioHRMj09AXlE/qupfhwXEhG5igwFlzNsvoGUh9pU3bv/GS/Lz/VqvExwk= +github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl +api ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICXyXL24LLKF0GAsVOAWqwkjza67AS4x9picZAynvRda +api ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGVxrb/8Sm0BkGjC/Ly/p2Zyao8Y/gTh0+EjyWeEwaiwFgwKDQ8O4j7i4Z07zNPZ/PdJKtwuWg4Rxm9UXqsTnp8= +[127.0.0.1]:32222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICAQkPegrt11dCS0Oy6nL3WaTzmdsUzXZjqytDS6Orig +autops.eagle.local ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICXyXL24LLKF0GAsVOAWqwkjza67AS4x9picZAynvRda +portal.eagle.local ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMYLIIUHcfd2hWVI2VQr1wDzHRgS8F5aRYE87uSn5fAV +portal.eagle.local ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPv25Fr8/XHoRp8cS4p8gvt4xPjwJWT62MhCBvBCP/yfP3h3lbWCAJL8GZqrVxzXnnOqsW9Ggz+OvStmTEv0+v8= +suzgitex.eagle.local ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMYLIIUHcfd2hWVI2VQr1wDzHRgS8F5aRYE87uSn5fAV diff --git a/.ssh/known_hosts.old b/.ssh/known_hosts.old new file mode 100644 index 0000000..4ad4a61 --- /dev/null +++ b/.ssh/known_hosts.old @@ -0,0 +1,13 @@ +git.marsway.red ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKPK7TJzKpzuwH39jLPIRWjA6FehyG4x3cQAZjyUm2hz +git.marsway.red ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC5/fWtABUpVHzqfRvboua05VDE4qgBJEzdbdk6dwVBvt7wnTXvrUueAVCoNiSZzx4BGbWziuBnXdLQ+70EKhE5/4M+fOe0o+sa6s9BTeDmhf1pwSkkkiBj2Kgo7GgGY7BbNPJ0peq36YEuExV7ns5Vz7bTOQ+K5E80Y20jsjRCrnExmSz4RQnz+QgwzfmLurRjiF8oRI5vIh2bOEQBrHX6IzyJcSUjNhRUxAXzYBCi1SdBT6G0QKM/uTd37W5xVFTma42l6uZhpU/mhqiW+UfymoJdn5uSb2GVYSashCa/a7Lr9IaRnEpNWWaUT4y72KeY/v+Skk8yLbbXl0ooUv1m+D+5SdYAjcl5WzHaKuJXE/Py6rUb8X3etMCR7lETSjSqL16Con7DawkeDrI25Re8paPQGUxl9t6IbFVEFtCskP7vhk3YLK3uhQFEIpTBPBx6tfAvCoPE6+8cbcZKJgb6cd2ipfdkpSFnTsYmYHKKXQooA+x5BIVPvlfekxDjU/k= +git.marsway.red ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBB6vVbo5bRNjjLn0j8BUw3J6xd/TPDR4xgBrtZhCuHYvCACB7n3n5wXhAU/s148oVAqdQHEkDjwY+8g5PtG7P8s= +e.coding.net ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHOWdwLpkos2CLli6DFvQ36yQE6Pe/PtFp3XwyirfZCIoGWnedaWI8zkJWVCs0wgOB9/urFepTDfV2wN49KGy1sl2/CCDEH2K/zeoEAZlTcBrhU17bwg1yMHCyJ7IM+zdLzItDEKYjgoWqVdUGK1dXQQlwt7GP4W7HqffelQQoVxOMoZ5N50MzD+nvV4y8iq0KwDQNy62iU4hui9ajCSVUDLu/06ucd5IojSI9keRIYAXvQf52TJ5EbvoBggp9RhjuWNEG8IhnPP6rzPS11Ocmwg/HsP8xOKL28AeDBAh6B6MEBDtlyp5Yfu9cwZJ9CFtU/x5fHFPtANmgIphAfwN1 +192.168.31.150 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGrw1W1hB6yQ1VMbUthNH4b3yfNISDzHHiemAU3S3KlB +192.168.31.150 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFRSuJVjVlLa7tM1diB3xasMWfJbcnUQNY6D8UkUVOYvpFnE6Xka0x5SBivAbc+AvoZoSURoB4Ue6PA4Z8OBG2Y/TpJd22YwSp9iV9G1ormULt6yYVZAT/lgKR/+m3havhlZZKhBGgm7YGEt8R8bON6eH9FCeHcCF8tLsy5GUyO7QGS9HZsJcLTgzlAstdv7IQt6P5gwiVo4w2dr9LawyN06u/phSLGnthuU6cBC3kfL393DEL5m3nuuQp9GNnEVq+9iVi0LvLx0Ra/QPhu7EDnaTaSi/cUruJhfxXsdc2mWhzvU9wPpDsDjjJDPuKmy/+g+h2K4Rll7sjE8ap1LFanI5mVZKHSA4NFaZLYQ3l9Vid6d+42LjcUDB4QuWi7hArZlIakCiMbUXjnoWbVmRKl1ujukGKPUnRlKzjNVd0pNqjRz/Zr2TvhDo+GU8QfPJGqe/wfUaLV5xhfBOHPkOGfQJwUeB4v3JUnHY3sgZ+iNMYztXtiH4Md4AmmUoT7nM= +192.168.31.150 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGRYzFDXKj/O3NadECVmcamUbZOUgGioHRMj09AXlE/qupfhwXEhG5igwFlzNsvoGUh9pU3bv/GS/Lz/VqvExwk= +github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl +api ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICXyXL24LLKF0GAsVOAWqwkjza67AS4x9picZAynvRda +api ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGVxrb/8Sm0BkGjC/Ly/p2Zyao8Y/gTh0+EjyWeEwaiwFgwKDQ8O4j7i4Z07zNPZ/PdJKtwuWg4Rxm9UXqsTnp8= +[127.0.0.1]:32222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICAQkPegrt11dCS0Oy6nL3WaTzmdsUzXZjqytDS6Orig +autops.eagle.local ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICXyXL24LLKF0GAsVOAWqwkjza67AS4x9picZAynvRda +portal.eagle.local ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMYLIIUHcfd2hWVI2VQr1wDzHRgS8F5aRYE87uSn5fAV diff --git a/_gsdata_/2025-0424-180615-Marsway-Air-.vvconfig.log b/_gsdata_/2025-0424-180615-Marsway-Air-.vvconfig.log new file mode 100644 index 0000000..17bd1c0 --- /dev/null +++ b/_gsdata_/2025-0424-180615-Marsway-Air-.vvconfig.log @@ -0,0 +1,73 @@ +2025-04-24 18:06:38: == 同步开始由 User Command +2025-04-24 18:06:40: ConnectCloned connected to file:///Users/marsway/.vvconfig +2025-04-24 18:06:40: ConnectCloned connected to file:///Users/marsway/.vvconfig +2025-04-24 18:06:40: ConnectCloned connected to file:///Users/marsway/.vvconfig +2025-04-24 18:06:40: GsConnectAndSetRoot1 connected to msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig +2025-04-24 18:06:40: GsConnectAndSetRoot1 connected to msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig +2025-04-24 18:06:40: GsConnectAndSetRoot1 connected to msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig +2025-04-24 18:06:41: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install +2025-04-24 18:06:42: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux +2025-04-24 18:06:42: 新建复制 '/Users/marsway/.vvconfig/install.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install.sh' (12) +2025-04-24 18:06:43: 新建复制 '/Users/marsway/.vvconfig/install/brew.fish' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/brew.fish' (40) +2025-04-24 18:06:43: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/clash-linux +2025-04-24 18:06:44: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab +2025-04-24 18:06:45: 新建复制 '/Users/marsway/.vvconfig/linux/init-linux.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/init-linux.sh' (249) +2025-04-24 18:06:46: 新建复制 '/Users/marsway/.vvconfig/linux/crontab/server.crb' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/server.crb' (260) +2025-04-24 18:06:46: 新建复制 '/Users/marsway/.vvconfig/linux/crontab/install-linux-crontab.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/install-linux-crontab.sh' (45) +2025-04-24 18:06:47: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install +2025-04-24 18:06:47: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/scripts +2025-04-24 18:06:48: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/fish +2025-04-24 18:06:49: 新建复制 '/Users/marsway/.vvconfig/linux/scripts/backup_services.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/scripts/backup_services.sh' (744) +2025-04-24 18:06:49: 新建复制 '/Users/marsway/.vvconfig/install/fish/init.fish' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/fish/init.fish' (351) +2025-04-24 18:06:50: 新建复制 '/Users/marsway/.vvconfig/linux/install/install-rclone.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-rclone.sh' (4,734) +2025-04-24 18:06:51: 新建复制 '/Users/marsway/.vvconfig/linux/install/install-services-certs.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-services-certs.sh' (348) +2025-04-24 18:06:51: 新建复制 '/Users/marsway/.vvconfig/install/init-mac.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/init-mac.sh' (470) +2025-04-24 18:06:52: 新建复制 '/Users/marsway/.vvconfig/install/macapps.fish' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/macapps.fish' (270) +2025-04-24 18:06:53: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup +2025-04-24 18:06:53: 新建复制 '/Users/marsway/.vvconfig/install/mas.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/mas.sh' (43) +2025-04-24 18:06:54: 新建复制 '/Users/marsway/.vvconfig/README.md' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/README.md' (136) +2025-04-24 18:06:54: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library +2025-04-24 18:06:54: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts +2025-04-24 18:06:55: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support +2025-04-24 18:06:55: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts +2025-04-24 18:06:56: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev +2025-04-24 18:06:57: 新建复制 '/Users/marsway/.vvconfig/scripts/applescripts/de-activate-alacritty.scpt' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/de-activate-alacritty.scpt' (3,794) +2025-04-24 18:06:58: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/cache.db' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/cache.db' (131,072) +2025-04-24 18:06:58: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge-check.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge-check.yaml' (33,812) +2025-04-24 18:06:59: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge.yaml' (33,812) +2025-04-24 18:07:00: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb' (9,608,392) +2025-04-24 18:07:00: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/config.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/config.yaml' (415) +2025-04-24 18:07:01: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/dns_config.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/dns_config.yaml' (961) +2025-04-24 18:07:02: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat' (3,994,466) +2025-04-24 18:07:02: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat' (18,534,419) +2025-04-24 18:07:02: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb' (9,608,392) +2025-04-24 18:07:04: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles +2025-04-24 18:07:04: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat' (3,994,466) +2025-04-24 18:07:05: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles.yaml' (1,095) +2025-04-24 18:07:06: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/g9n81JmX5NEV.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/g9n81JmX5NEV.yaml' (91) +2025-04-24 18:07:06: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/m2jcm8sRQPvm.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/m2jcm8sRQPvm.yaml' (54) +2025-04-24 18:07:07: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/psk9x7ukgnfn.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/psk9x7ukgnfn.yaml' (92) +2025-04-24 18:07:08: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Merge.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Merge.yaml' (118) +2025-04-24 18:07:08: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/rD6SmDizAwB7.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/rD6SmDizAwB7.yaml' (90) +2025-04-24 18:07:09: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat' (18,534,419) +2025-04-24 18:07:09: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/RoYtUvrMCxF7.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/RoYtUvrMCxF7.yaml' (35,912) +2025-04-24 18:07:10: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/s1cP0zOEBkP5.js' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/s1cP0zOEBkP5.js' (96) +2025-04-24 18:07:10: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Script.js' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Script.js' (96) +2025-04-24 18:07:11: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test +2025-04-24 18:07:11: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/verge.yaml' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/verge.yaml' (4,397) +2025-04-24 18:07:11: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb' (9,608,392) +2025-04-24 18:07:12: 新建复制 '/Users/marsway/.vvconfig/scripts/applescripts/Liwei.bttpreset.bttpreset' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/Liwei.bttpreset.bttpreset' (9,842) +2025-04-24 18:07:12: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat' (18,534,419) +2025-04-24 18:07:14: > 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat' (3,994,466) +2025-04-24 18:07:14: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb' (9,608,392) +2025-04-24 18:07:15: 新建复制 '/Users/marsway/.vvconfig/scripts/backup_forgejo.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/backup_forgejo.sh' (492) +2025-04-24 18:07:16: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack +2025-04-24 18:07:16: 创建文件夹 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Preferences +2025-04-24 18:07:17: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat' (3,994,466) +2025-04-24 18:07:18: 新建复制 '/Users/marsway/.vvconfig/scripts/crack/pd-crack.sh' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/pd-crack.sh' (6,156) +2025-04-24 18:07:19: 新建复制 '/Users/marsway/.vvconfig/scripts/crack/Seblius_2024.3_Trail_Reset.command' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/Seblius_2024.3_Trail_Reset.command' (522) +2025-04-24 18:07:19: < 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat' (18,534,419) +2025-04-24 18:07:20: 新建复制 '/Users/marsway/.vvconfig/mackup/Library/Preferences/com.hegenberg.BetterTouchTool.plist' -> 'msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Preferences/com.hegenberg.BetterTouchTool.plist' (4,432) +2025-04-24 18:07:20: 保持文件状态 /Users/marsway/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-24 18:07:20: 保持文件状态 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-24 18:07:21: == 同步完成. 历时: 00:00:41, 速度: 1.62 MB/s, 完成: 57, 错误: 0 diff --git a/_gsdata_/2025-0430-150729-Marsway-Air-.vvconfig.log b/_gsdata_/2025-0430-150729-Marsway-Air-.vvconfig.log new file mode 100644 index 0000000..7413387 --- /dev/null +++ b/_gsdata_/2025-0430-150729-Marsway-Air-.vvconfig.log @@ -0,0 +1,49 @@ +2025-04-30 15:07:30: Turning Off Copy Attributes, as one of file systems does not support it +2025-04-30 15:07:30: Turning Off Copy/Compare Extended Attributes, as one of file systems does not support it +2025-04-30 15:07:30: Turning Off Copy Symbolic Links, as one of file systems does not support it. You may want to consider using Job -> Options -> Advanced -> Links -> Drill Down, if you need to copy folder to which the link points +2025-04-30 15:07:30: Turning Off Copy Original File System Names option, as one of file systems does not support it +2025-04-30 15:07:30: -- 分析开始 User Command +2025-04-30 15:07:30: 左侧: 正在读取文件状态 /Users/marsway/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-30 15:07:30: 右侧: 正在读取文件状态 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/README.md +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/brew.fish +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/init-mac.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/macapps.fish +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/mas.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/fish/init.fish +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/init-linux.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/install-linux-crontab.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/server.crb +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-rclone.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-services-certs.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/scripts/backup_services.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/cache.db +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge-check.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/config.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/dns_config.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/verge.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/g9n81JmX5NEV.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/m2jcm8sRQPvm.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Merge.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/psk9x7ukgnfn.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/rD6SmDizAwB7.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/RoYtUvrMCxF7.yaml +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/s1cP0zOEBkP5.js +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Script.js +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Preferences/com.hegenberg.BetterTouchTool.plist +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/backup_forgejo.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/de-activate-alacritty.scpt +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/Liwei.bttpreset.bttpreset +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/pd-crack.sh +2025-04-30 15:07:32: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/Seblius_2024.3_Trail_Reset.command +2025-04-30 15:07:33: 变更:0, 冲突:0, 复制时间:0, 复制状态:0, 错误: 0, All: 77 +2025-04-30 15:07:33: -- 分析已结束。历时 00:00:04, 速度: 19 文件/秒 diff --git a/_gsdata_/2025-0430-151500-Marsway-Air-.vvconfig.log b/_gsdata_/2025-0430-151500-Marsway-Air-.vvconfig.log new file mode 100644 index 0000000..5b3d24b --- /dev/null +++ b/_gsdata_/2025-0430-151500-Marsway-Air-.vvconfig.log @@ -0,0 +1,45 @@ +2025-04-30 15:15:01: -- 分析开始 Analyze And Sync Command +2025-04-30 15:15:01: 左侧: 正在读取文件状态 /Users/marsway/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-30 15:15:03: 右侧: 正在读取文件状态 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/_gsdata_/_file_state_v4._gs +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/README.md +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/brew.fish +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/init-mac.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/macapps.fish +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/mas.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/fish/init.fish +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/init-linux.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/install-linux-crontab.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/server.crb +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-rclone.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-services-certs.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/scripts/backup_services.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/cache.db +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge-check.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/config.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/dns_config.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/verge.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/g9n81JmX5NEV.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/m2jcm8sRQPvm.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Merge.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/psk9x7ukgnfn.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/rD6SmDizAwB7.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/RoYtUvrMCxF7.yaml +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/s1cP0zOEBkP5.js +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Script.js +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Preferences/com.hegenberg.BetterTouchTool.plist +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/backup_forgejo.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/de-activate-alacritty.scpt +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/Liwei.bttpreset.bttpreset +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/pd-crack.sh +2025-04-30 15:15:04: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/Seblius_2024.3_Trail_Reset.command +2025-04-30 15:15:05: 变更:0, 冲突:0, 复制时间:0, 复制状态:0, 错误: 0, All: 78 +2025-04-30 15:15:05: -- 分析已结束。历时 00:00:05, 速度: 15 文件/秒 diff --git a/_gsdata_/2025-0506-175217-Marsway-Air-.vvconfig.log b/_gsdata_/2025-0506-175217-Marsway-Air-.vvconfig.log new file mode 100644 index 0000000..33de941 --- /dev/null +++ b/_gsdata_/2025-0506-175217-Marsway-Air-.vvconfig.log @@ -0,0 +1,45 @@ +2025-05-06 17:52:18: -- 分析开始 User Command +2025-05-06 17:52:18: 左侧: 正在读取文件状态 /Users/marsway/.vvconfig/_gsdata_/_file_state_v4._gs +2025-05-06 17:52:18: 右侧: 正在读取文件状态 msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/_gsdata_/_file_state_v4._gs +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/README.md +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/brew.fish +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/init-mac.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/macapps.fish +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/mas.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/install/fish/init.fish +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/init-linux.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/install-linux-crontab.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/crontab/server.crb +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-rclone.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/install/install-services-certs.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/linux/scripts/backup_services.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/cache.db +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge-check.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/clash-verge.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/config.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/Country.mmdb +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/dns_config.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geoip.dat +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/geosite.dat +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/verge.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/g9n81JmX5NEV.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/m2jcm8sRQPvm.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Merge.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/psk9x7ukgnfn.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/rD6SmDizAwB7.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/RoYtUvrMCxF7.yaml +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/s1cP0zOEBkP5.js +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/profiles/Script.js +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/Country.mmdb +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geoip.dat +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Application Support/io.github.clash-verge-rev.clash-verge-rev/test/geosite.dat +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/mackup/Library/Preferences/com.hegenberg.BetterTouchTool.plist +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/backup_forgejo.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/de-activate-alacritty.scpt +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/applescripts/Liwei.bttpreset.bttpreset +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/pd-crack.sh +2025-05-06 17:52:20: File System does not return CheckSum when promised: msgraph://graph.microsoft.com/:drive:DA445CD50DBE653E/.vvconfig/scripts/crack/Seblius_2024.3_Trail_Reset.command +2025-05-06 17:52:21: 变更:0, 冲突:0, 复制时间:0, 复制状态:0, 错误: 0, All: 77 +2025-05-06 17:52:21: -- 分析已结束。历时 00:00:04, 速度: 19 文件/秒 diff --git a/_gsdata_/_file_state_v4._gs b/_gsdata_/_file_state_v4._gs new file mode 100644 index 0000000..0a929ee Binary files /dev/null and b/_gsdata_/_file_state_v4._gs differ diff --git a/_gsdata_/_insync_v4.gsl b/_gsdata_/_insync_v4.gsl new file mode 100644 index 0000000..3e1a1d5 --- /dev/null +++ b/_gsdata_/_insync_v4.gsl @@ -0,0 +1,2 @@ +By: .vvconfig.marsway@Marsway-Air at: 2025.04.30 15:15:01 CST +/Users/marsway/.vvconfig \ No newline at end of file