gitextract_doz3sxqr/ ├── .github/ │ └── workflows/ │ └── wails-build.yaml ├── .gitignore ├── README.md ├── app.go ├── disk-manager.go ├── frontend/ │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .npmrc │ ├── .prettierrc │ ├── index.html │ ├── package.json │ ├── package.json.md5 │ ├── postcss.config.js │ ├── src/ │ │ ├── actions/ │ │ │ ├── app.ts │ │ │ └── modal.ts │ │ ├── components/ │ │ │ ├── app/ │ │ │ │ └── index.tsx │ │ │ ├── disk-monitor/ │ │ │ │ └── index.tsx │ │ │ ├── disk-speed/ │ │ │ │ └── index.tsx │ │ │ ├── footer/ │ │ │ │ └── index.tsx │ │ │ ├── header/ │ │ │ │ └── index.tsx │ │ │ ├── interface-picker/ │ │ │ │ └── index.tsx │ │ │ ├── modals/ │ │ │ │ ├── action-confirmation/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── process-picker/ │ │ │ │ │ └── index.tsx │ │ │ │ └── settings/ │ │ │ │ └── index.tsx │ │ │ ├── monitor-switch/ │ │ │ │ └── index.tsx │ │ │ ├── network-speed/ │ │ │ │ └── index.tsx │ │ │ └── top-right-slot/ │ │ │ └── index.tsx │ │ ├── desktop.ts │ │ ├── helpers/ │ │ │ └── sleep.ts │ │ ├── hooks/ │ │ │ ├── use-disk-speed.ts │ │ │ ├── use-interfaces.ts │ │ │ ├── use-modals-info.ts │ │ │ ├── use-monitor-status-msg.ts │ │ │ ├── use-monitor-status.ts │ │ │ ├── use-network-speed.ts │ │ │ ├── use-selected-mac.ts │ │ │ ├── use-selected-theme.ts │ │ │ ├── use-settings.ts │ │ │ ├── use-system-metrics.ts │ │ │ ├── use-system-monitor.ts │ │ │ ├── use-target-process.ts │ │ │ └── use-theme.ts │ │ ├── main.css │ │ ├── main.tsx │ │ ├── screens/ │ │ │ └── home/ │ │ │ └── index.tsx │ │ ├── selectors/ │ │ │ ├── app.ts │ │ │ └── modals.ts │ │ ├── store/ │ │ │ ├── app-slice.ts │ │ │ ├── index.ts │ │ │ └── modals-slice.ts │ │ ├── types/ │ │ │ └── index.ts │ │ ├── vite-env.d.ts │ │ └── wailsjs/ │ │ ├── go/ │ │ │ ├── main/ │ │ │ │ ├── App.d.ts │ │ │ │ ├── App.js │ │ │ │ ├── DiskManager.d.ts │ │ │ │ ├── DiskManager.js │ │ │ │ ├── NetworkManager.d.ts │ │ │ │ └── NetworkManager.js │ │ │ └── models.ts │ │ └── runtime/ │ │ ├── package.json │ │ ├── runtime.d.ts │ │ └── runtime.js │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── go.mod ├── go.sum ├── main.go ├── network-manager.go └── wails.json