|
80585
|
2129
|
0
|
2026-04-25T14:29:18.612300+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127358612_m1.jpg...
|
Code
|
lets add ability to jump… — screenpipe [SSH: nas]
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G) - 2 pending changes","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update, 1 requires restart","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"3","depth":22,"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: nas]","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: nas]","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: NAS]","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":".gitignore","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"app_settings.json","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"archive.db","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"screenpipe_sync.sh","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"screenpipe.db","depth":27,"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"role_description":"text"},{"role":"AXRadioButton","text":"app_settings.json, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe_sync.sh, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"db.sqlite-shm, preview, Editor Group 1","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":27,"role_description":"text"},{"role":"AXStaticText","text":"The editor could not be opened because the file was not found.","depth":27,"role_description":"text"},{"role":"AXButton","text":"Create File","depth":26,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"lets add ability to jump…, Editor Group 2","depth":28,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"role_description":"text"},{"role":"AXButton","text":"remote SSH: nas","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"SSH: nas","depth":17,"role_description":"text"},{"role":"AXButton","text":"screenpipe (Git) - master*, Checkout Branch/Tag...","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"master*","depth":17,"role_description":"text"},{"role":"AXButton","text":"screenpipe (Git) - Synchronize Changes","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"No Problems","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Signed out","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"role_description":"text"},{"role":"AXStaticText","text":"Signed out","depth":17,"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Downloading VS Code Server...","depth":12,"role_description":"text"},{"role":"AXButton","text":"lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time","depth":19,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":19,"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":19,"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.\n\nSummary:\n1. Primary Request and Intent:\n\nThe user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:\n- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.\n- **Q2**: AND combination search (term1 + term2 must both appear) → Added \"AND also\" input field.\n- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.\n- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.\n- **Q5**: \"still the same\" (container not picking up config) → Explained `up -d` vs `restart`.\n- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.\n- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.\n- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.\n- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.\n\n2. Key Technical Concepts:\n\n- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.\n- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.\n- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.\n- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.\n- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.\n- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.\n- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.\n- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.\n- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.\n- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.\n- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\\#recycle/`.\n\n3. Files and Code Sections:\n\n- **`/volume1/screenpipe/app/main.py`**\n - Added `/api/apps` endpoint (all unique app names from frames table)\n - Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)\n - `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: \"...\"}`\n - Key snippet:\n ```python","depth":26,"role_description":"text"},{"role":"AXButton","text":"@app.get(\"/api/timetable\"","depth":26,"help_text":"Open app.get(\"/api/timetable\"","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":")\n async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):\n ...\n rows = conn.execute(f\"\"\"\n SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,\n f.offset_index, f.snapshot_path,\n vc.file_path AS video_path, vc.fps AS video_fps\n FROM frames f\n JOIN video_chunks vc ON f.video_chunk_id = vc.id\n WHERE f.timestamp >= ? AND f.timestamp < ?\n AND f.video_chunk_id IS NOT NULL {dev_clause}\n ORDER BY f.timestamp\n \"\"\", params).fetchall()\n # seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)\n ```\n\n- **`/volume1/screenpipe/app/docker-compose.yml`**\n - Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`\n - Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`\n - screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`\n\n- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)\n - **Search enhancements**:\n - Added `id=\"sq2\"` \"AND also\" input between search-row1 and search-row2\n - Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id=\"msOnlyApps\"`, `id=\"msSkipApps\"`)\n - Updated `buildUrl()` to combine `q + \" \" + q2` and convert times with `localTimeToUtc()`\n - Added `fmtDateTime(ts)` showing \"Apr 20 14:08\" format\n - Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC\n - Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`\n - **Timetable tab** (new page):\n - Tab button added between Work Report and AI Summary\n - `showPage` array updated: `['activity','search','audio','report','timetable','summary']`\n - `refresh()` calls `loadTimetable()` when on timetable page\n - **Timetable CSS** (key styles):\n ```css\n .tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }\n .tt-inner { position:relative; height:52px; } /* width set dynamically */\n .tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n .tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n .tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }\n .tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }\n ```\n - **Timetable JS state variables**:\n ```javascript\n let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;\n let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;\n const _ttAppColors = {};\n const TT_ZOOMS = [1, 2, 4, 8, 16, 32];\n const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};\n ```\n - **Key JS functions**:\n - `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders\n - `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead\n - `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)\n - `ttOverviewClick(e)` — scrolls timeline + seeks video\n - `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`\n - `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`\n - `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video\n - `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked\n - `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`\n - `_ttShowNow(f)` — updates screenshot thumbnail + now-text div\n - `ttSyncBtn()` — syncs play/pause button text\n - Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom\n\n- **`/volume1/screenpipe/.gitignore`**\n ```\n *.db, *.sqlite, *.sqlite-shm, *.sqlite-wal\n data/, \\#recycle/,","depth":26,"role_description":"text"},{"role":"AXButton","text":"@eaDir/","depth":26,"help_text":"Open eaDir/","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app_settings.json, app/.env\n __pycache__/, *.pyc, .DS_Store\n ```\n\n4. Errors and Fixes:\n\n- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\\#recycle/`. Also had to `git rm --cached \"#recycle/desktop.ini\"` to unstage it.\n- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.\n- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.\n- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.\n- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.\n\n5. Problem Solving:\n\n- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.\n- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.\n- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).\n- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.\n\n6. All User Messages:\n\n- \"do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps.\"\n- \"doi I need to restart?\"\n- \"there is sudo docker compose\"\n- \"no still the same\"\n- \"add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git\"\n- \"just do it\" (re: git push)\n- \"how to make sure data in :8767 are accurate and point to archive.db\"\n- \"I can't see older than 16th there should 21st of april. In http://192.168.0.242:8766/ I can see all but not on sqlite viewer http://192.168.0.242:8767\"\n- \"ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive\"\n- [docker compose output showing orphan container error]\n- \"looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast\"\n- \"lets make the playing speed more than 8x\"\n- \"still playing speed is not showing properly still just in one second. also I want to see in timeline where I am\"\n\n7. Pending Tasks:\n\n- **Playback speed fix** (in progress, partially done):\n - Add `<div class=\"tt-playhead-time\" id=\"ttPlayheadTime\"></div>` inside `ttInner` HTML\n - Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions\n - Update speed select `onchange` to call `ttSetSpeed(+this.value)`\n - Add 64× option to speed select\n - Update `_ttMovePlayhead` to also update `ttPlayheadTime` label\n - Update `ttSyncBtn` to start/stop timer based on play state + speed\n - Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)\n - Rebuild Docker image after changes\n\n8. Current Work:\n\nWorking on fixing two issues with the Timetable tab:\n1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.\n2. **Timeline position indicator**: Playhead not prominent enough. \n\n**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:\n```css\n.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n```\n\nSession was interrupted by summary request after this CSS edit, mid-implementation.\n\n9. Optional Next Step:\n\nContinuing the fix for: \"still playing speed is not showing properly still just in one second. also I want to see in timeline where I am\"\n\nThe next steps in order are:\n1. Add `<div class=\"tt-playhead-time\" id=\"ttPlayheadTime\"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)\n2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`\n3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)\n4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option\n5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer\n6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`\n\nIf you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl\nContinue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with \"I'll continue\" or similar. Pick up the last task as if the break never happened.","depth":26,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find timetable speed and playhead related code","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"tt-playhead\\|ttPlayhead\\|ttInner\\|_ttMovePlayhead\\|ttSetSpeed\\|_ttStartSpeed\\|_ttStopSpeed\\|ttSyncBtn\\|playbackRate\\|speed.*select\\|spdSel\\|ttSpeed\" /volume1/screenpipe/app/static/index.html | head -80","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n580: <div class=\"tt-inner\" id=\"ttInner\" onclick=\"ttTimelineClick(event)\">\n583: <div class=\"tt-playhead\" id=\"ttPlayhead\"></div>\n598: onpause=\"ttSyncBtn()\"\n599: onplay=\"ttSyncBtn()\">\n607: <select id=\"ttSpeed\" onchange=\"document.getElementById('ttVideo').playbackRate=+this.value\">\n1624: document.getElementById('ttInner').style.width = '100%';\n1632: document.getElementById('ttPlayhead').style.display = 'none';\n1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';\n1700: const inner = document.getElementById('ttInner');\n1710: const inner = document.getElementById('ttInner');\n1718: const inner = document.getElementById('ttInner');\n1750: _ttMovePlayhead(new Date(best.ts).getTime());\n1772: _ttMovePlayhead(new Date(best.ts).getTime());\n1791:function _ttMovePlayhead(tsMs) {\n1792: const ph = document.getElementById('ttPlayhead');\n1802: const ph = document.getElementById('ttPlayhead');\n1805: const inner = document.getElementById('ttInner');\n1819:function ttSyncBtn() {","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 576-625)","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1786-1865)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find chunk loading and playhead update functions","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"ttUpdatePlayhead\\|ttNextChunk\\|ttLoadChunk\\|_ttCurChunk\\|_ttChunks\\|_ttFrames\" /volume1/screenpipe/app/static/index.html | head -50","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"596: onended=\"ttNextChunk()\"\n597: ontimeupdate=\"ttUpdatePlayhead()\"\n1569:let _ttFrames = [];\n1570:let _ttChunks = [];\n1571:let _ttCurChunk = -1;\n1607: _ttFrames = data.frames;\n1609: for (const f of _ttFrames) {\n1613: _ttChunks = [...chunkMap.values()];\n1614: _ttCurChunk = -1;\n1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();\n1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();\n1620: for (const f of _ttFrames) _ttColor(f.app);\n1640: for (const f of _ttFrames) {\n1736: if (!_ttFrames.length) return;\n1737: let best = _ttFrames[0], minDiff = Infinity;\n1738: for (const f of _ttFrames) {\n1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);\n1744: _ttCurChunk = ci;\n1753:function ttNextChunk() {\n1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;\n1755: _ttCurChunk++;\n1757: video.src = _ttChunks[_ttCurChunk][0].video_url;\n1762:function ttUpdatePlayhead() {\n1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;\n1765: const chunk = _ttChunks[_ttCurChunk];","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1754-1793)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1701-1760)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1561-1640)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find time formatting functions","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"function fmtTime\\|function fmtDate\\|function _fmt\\|localTimeToUtc\\|fmtDateTime\" /volume1/screenpipe/app/static/index.html | head -20","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;\n1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;\n1153: let meta = `<span style=\"color:var(--muted)\">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;\n1166: meta = `<span style=\"color:var(--muted)\">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class=\"badge ${r.is_input_device?'mic':'sys'}\">${r.is_input_device?'MIC':'SYS'}</span>`;\n1307:function fmtTime(ts) {\n1312:function fmtDateTime(ts) {\n1320:function localTimeToUtc(timeStr) {\n1778:function _fmtSec(s) {\n1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1308-1327)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Now I have everything I need. I'll implement the frame-by-frame timer system that replaces","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"video.playbackRate","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Added 1 line","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":24,"role_description":"text"}]...
|
809945923361858319
|
-6284062775197318938
|
visual_change
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
80582
|
|
80584
|
2130
|
0
|
2026-04-25T14:29:18.274803+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127358274_m2.jpg...
|
Code
|
lets add ability to jump… — screenpipe [SSH: nas]
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
[{"role":"AXRadioButton","text [{"role":"AXRadioButton","text":"Explorer (⇧⌘E)","depth":19,"bounds":{"left":0.0,"top":0.047885075,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.057462092,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXRadioButton","text":"Search (⇧⌘F)","depth":19,"bounds":{"left":0.0,"top":0.08619314,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.09577015,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXRadioButton","text":"Source Control (⌃⇧G) - 2 pending changes","depth":19,"bounds":{"left":0.0,"top":0.1245012,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.13407822,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXStaticText","text":"2","depth":22,"bounds":{"left":0.009640957,"top":0.1452514,"width":0.0019946808,"height":0.008778931},"role_description":"text"},{"role":"AXRadioButton","text":"Run and Debug (⇧⌘D)","depth":19,"bounds":{"left":0.0,"top":0.16280925,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.17238627,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXRadioButton","text":"Remote Explorer","depth":19,"bounds":{"left":0.0,"top":0.20111732,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.21069433,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXRadioButton","text":"Extensions (⇧⌘X) - 2 require update, 1 requires restart","depth":19,"bounds":{"left":0.0,"top":0.23942538,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":22,"bounds":{"left":0.0039893617,"top":0.2490024,"width":0.007978723,"height":0.01915403},"role_description":"text"},{"role":"AXStaticText","text":"3","depth":22,"bounds":{"left":0.00930851,"top":0.2601756,"width":0.0023271276,"height":0.008778931},"role_description":"text"},{"role":"AXRadioButton","text":"Claude Code","depth":19,"bounds":{"left":0.0,"top":0.27773345,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"Containers","depth":19,"bounds":{"left":0.0,"top":0.3160415,"width":0.015957447,"height":0.03830806},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"EXPLORER","depth":17,"bounds":{"left":0.022606382,"top":0.047885075,"width":0.018949468,"height":0.02793296},"role_description":"heading"},{"role":"AXStaticText","text":"EXPLORER","depth":18,"bounds":{"left":0.022606382,"top":0.056664005,"width":0.018949468,"height":0.0103751},"role_description":"text"},{"role":"AXButton","text":"Explorer Section: screenpipe [SSH: nas]","depth":21,"bounds":{"left":0.015957447,"top":0.07581804,"width":0.09940159,"height":0.017557861},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.01662234,"top":0.07821229,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXHeading","text":"Explorer Section: screenpipe [SSH: nas]","depth":22,"bounds":{"left":0.022606382,"top":0.07581804,"width":0.045877658,"height":0.017557861},"role_description":"heading"},{"role":"AXStaticText","text":"SCREENPIPE [SSH: NAS]","depth":23,"bounds":{"left":0.022606382,"top":0.079010375,"width":0.045877658,"height":0.0103751},"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"bounds":{"left":0.019614361,"top":0.09577015,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"#recycle","depth":27,"bounds":{"left":0.025930852,"top":0.09577015,"width":0.017287234,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"bounds":{"left":0.019614361,"top":0.11332801,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"app","depth":27,"bounds":{"left":0.025930852,"top":0.11332801,"width":0.0076462766,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.10605053,"top":0.11412609,"width":0.004654255,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"bounds":{"left":0.019614361,"top":0.13088587,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"data","depth":27,"bounds":{"left":0.025930852,"top":0.13088587,"width":0.008976064,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":26,"bounds":{"left":0.019614361,"top":0.14844373,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"pipes","depth":27,"bounds":{"left":0.025930852,"top":0.14844373,"width":0.010970744,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.16440542,"width":0.0063164895,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":".gitignore","depth":27,"bounds":{"left":0.025930852,"top":0.1660016,"width":0.018949468,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.1819633,"width":0.0063164895,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"app_settings.json","depth":27,"bounds":{"left":0.025930852,"top":0.18355946,"width":0.03557181,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.19952115,"width":0.0076462766,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"archive.db","depth":27,"bounds":{"left":0.025930852,"top":0.20111732,"width":0.020944148,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.21707901,"width":0.0076462766,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"db.sqlite","depth":27,"bounds":{"left":0.025930852,"top":0.21867518,"width":0.017287234,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.23463687,"width":0.0063164895,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"screenpipe_sync.sh","depth":27,"bounds":{"left":0.025930852,"top":0.23623304,"width":0.039893616,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.01861702,"top":0.25219473,"width":0.0076462766,"height":0.015163607},"role_description":"text"},{"role":"AXStaticText","text":"screenpipe.db","depth":27,"bounds":{"left":0.025930852,"top":0.25379092,"width":0.028590426,"height":0.011971269},"role_description":"text"},{"role":"AXButton","text":"Outline Section","depth":21,"bounds":{"left":0.015957447,"top":0.9473264,"width":0.09940159,"height":0.017557861},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.01662234,"top":0.9497207,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXHeading","text":"OUTLINE","depth":22,"bounds":{"left":0.022606382,"top":0.9473264,"width":0.01662234,"height":0.017557861},"role_description":"heading"},{"role":"AXStaticText","text":"OUTLINE","depth":23,"bounds":{"left":0.022606382,"top":0.95131683,"width":0.01662234,"height":0.0103751},"role_description":"text"},{"role":"AXButton","text":"Timeline Section","depth":21,"bounds":{"left":0.015957447,"top":0.9648843,"width":0.09940159,"height":0.017557861},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":23,"bounds":{"left":0.01662234,"top":0.96727854,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXHeading","text":"TIMELINE","depth":22,"bounds":{"left":0.022606382,"top":0.9648843,"width":0.01761968,"height":0.017557861},"role_description":"heading"},{"role":"AXStaticText","text":"TIMELINE","depth":23,"bounds":{"left":0.022606382,"top":0.9688747,"width":0.01761968,"height":0.0103751},"role_description":"text"},{"role":"AXRadioButton","text":"app_settings.json, Editor Group 1","depth":28,"bounds":{"left":0.11569149,"top":0.047885075,"width":0.055851065,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe_sync.sh, Editor Group 1","depth":28,"bounds":{"left":0.17154256,"top":0.047885075,"width":0.06050532,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"db.sqlite-shm, preview, Editor Group 1","depth":28,"bounds":{"left":0.23171543,"top":0.047885075,"width":0.04886968,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXStaticText","text":"","depth":27,"bounds":{"left":0.3287899,"top":0.29608938,"width":0.015957447,"height":0.039106146},"role_description":"text"},{"role":"AXStaticText","text":"The editor could not be opened because the file was not found.","depth":27,"bounds":{"left":0.26861703,"top":0.3463687,"width":0.13630319,"height":0.013567438},"role_description":"text"},{"role":"AXButton","text":"Create File","depth":26,"bounds":{"left":0.3238032,"top":0.3719074,"width":0.026263298,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"lets add ability to jump…, Editor Group 2","depth":28,"bounds":{"left":0.5578458,"top":0.047885075,"width":0.06948138,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":false},{"role":"AXRadioButton","text":"Problems (⇧⌘M)","depth":22,"bounds":{"left":0.118351065,"top":0.59936154,"width":0.027925532,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PROBLEMS","depth":24,"bounds":{"left":0.122340426,"top":0.60814047,"width":0.019946808,"height":0.0103751},"role_description":"text"},{"role":"AXRadioButton","text":"Output (⇧⌘U)","depth":22,"bounds":{"left":0.14594415,"top":0.59936154,"width":0.023603724,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUTPUT","depth":24,"bounds":{"left":0.14993352,"top":0.60814047,"width":0.015625,"height":0.0103751},"role_description":"text"},{"role":"AXRadioButton","text":"Debug Console (⇧⌘Y)","depth":22,"bounds":{"left":0.16921543,"top":0.59936154,"width":0.039893616,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"DEBUG CONSOLE","depth":24,"bounds":{"left":0.1732048,"top":0.60814047,"width":0.031914894,"height":0.0103751},"role_description":"text"},{"role":"AXRadioButton","text":"Terminal (⌃`)","depth":22,"bounds":{"left":0.2087766,"top":0.59936154,"width":0.026595745,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":true,"is_expanded":true},{"role":"AXStaticText","text":"TERMINAL","depth":24,"bounds":{"left":0.21276596,"top":0.60814047,"width":0.01861702,"height":0.0103751},"role_description":"text"},{"role":"AXRadioButton","text":"Ports","depth":22,"bounds":{"left":0.23537233,"top":0.59936154,"width":0.020279255,"height":0.02793296},"role_description":"tab","subrole":"AXTabButton","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"PORTS","depth":24,"bounds":{"left":0.2393617,"top":0.60814047,"width":0.012300532,"height":0.0103751},"role_description":"text"},{"role":"AXButton","text":"remote SSH: nas","depth":16,"bounds":{"left":0.0006648936,"top":0.98244214,"width":0.028590426,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.0033244682,"top":0.9848364,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"SSH: nas","depth":17,"bounds":{"left":0.008643617,"top":0.9856345,"width":0.017952127,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"screenpipe (Git) - master*, Checkout Branch/Tag...","depth":16,"bounds":{"left":0.030917553,"top":0.98244214,"width":0.023271276,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.031914894,"top":0.9848364,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"master*","depth":17,"bounds":{"left":0.03723404,"top":0.9856345,"width":0.015957447,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"screenpipe (Git) - Synchronize Changes","depth":16,"bounds":{"left":0.05418883,"top":0.98244214,"width":0.00731383,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"No Problems","depth":16,"bounds":{"left":0.06416223,"top":0.98244214,"width":0.022606382,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.06582447,"top":0.9848364,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"bounds":{"left":0.07114362,"top":0.9856345,"width":0.004986702,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.07579787,"top":0.9848364,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"bounds":{"left":0.08111702,"top":0.9856345,"width":0.0039893617,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"No Ports Forwarded","depth":16,"bounds":{"left":0.08843085,"top":0.98244214,"width":0.012632979,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.09009308,"top":0.9848364,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"0","depth":17,"bounds":{"left":0.09541223,"top":0.9856345,"width":0.0039893617,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"Notifications","depth":16,"bounds":{"left":0.9886968,"top":0.98244214,"width":0.010638298,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Signed out","depth":16,"bounds":{"left":0.9567819,"top":0.98244214,"width":0.031914894,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"","depth":17,"bounds":{"left":0.9594415,"top":0.9848364,"width":0.005319149,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Signed out","depth":17,"bounds":{"left":0.96476066,"top":0.9856345,"width":0.021276595,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"Screen Reader Optimized","depth":16,"bounds":{"left":0.90359044,"top":0.98244214,"width":0.05319149,"height":0.01755786},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Info: Downloading VS Code Server...","depth":12,"role_description":"text"},{"role":"AXButton","text":"lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time","depth":19,"bounds":{"left":0.56017286,"top":0.08060654,"width":0.099734046,"height":0.022346368},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Session history","depth":19,"bounds":{"left":0.9780585,"top":0.08060654,"width":0.00930851,"height":0.022346368},"help_text":"Session history","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New session","depth":19,"bounds":{"left":0.9886968,"top":0.08060654,"width":0.00930851,"height":0.022346368},"help_text":"New session","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Message actions","depth":24,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.\n\nSummary:\n1. Primary Request and Intent:\n\nThe user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:\n- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.\n- **Q2**: AND combination search (term1 + term2 must both appear) → Added \"AND also\" input field.\n- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.\n- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.\n- **Q5**: \"still the same\" (container not picking up config) → Explained `up -d` vs `restart`.\n- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.\n- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.\n- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.\n- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.\n\n2. Key Technical Concepts:\n\n- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.\n- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.\n- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.\n- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.\n- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.\n- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.\n- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.\n- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.\n- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.\n- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.\n- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\\#recycle/`.\n\n3. Files and Code Sections:\n\n- **`/volume1/screenpipe/app/main.py`**\n - Added `/api/apps` endpoint (all unique app names from frames table)\n - Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)\n - `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: \"...\"}`\n - Key snippet:\n ```python","depth":26,"role_description":"text"},{"role":"AXButton","text":"@app.get(\"/api/timetable\"","depth":26,"help_text":"Open app.get(\"/api/timetable\"","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":")\n async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):\n ...\n rows = conn.execute(f\"\"\"\n SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,\n f.offset_index, f.snapshot_path,\n vc.file_path AS video_path, vc.fps AS video_fps\n FROM frames f\n JOIN video_chunks vc ON f.video_chunk_id = vc.id\n WHERE f.timestamp >= ? AND f.timestamp < ?\n AND f.video_chunk_id IS NOT NULL {dev_clause}\n ORDER BY f.timestamp\n \"\"\", params).fetchall()\n # seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)\n ```\n\n- **`/volume1/screenpipe/app/docker-compose.yml`**\n - Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`\n - Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`\n - screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`\n\n- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)\n - **Search enhancements**:\n - Added `id=\"sq2\"` \"AND also\" input between search-row1 and search-row2\n - Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id=\"msOnlyApps\"`, `id=\"msSkipApps\"`)\n - Updated `buildUrl()` to combine `q + \" \" + q2` and convert times with `localTimeToUtc()`\n - Added `fmtDateTime(ts)` showing \"Apr 20 14:08\" format\n - Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC\n - Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`\n - **Timetable tab** (new page):\n - Tab button added between Work Report and AI Summary\n - `showPage` array updated: `['activity','search','audio','report','timetable','summary']`\n - `refresh()` calls `loadTimetable()` when on timetable page\n - **Timetable CSS** (key styles):\n ```css\n .tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }\n .tt-inner { position:relative; height:52px; } /* width set dynamically */\n .tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n .tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n .tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }\n .tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }\n ```\n - **Timetable JS state variables**:\n ```javascript\n let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;\n let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;\n const _ttAppColors = {};\n const TT_ZOOMS = [1, 2, 4, 8, 16, 32];\n const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};\n ```\n - **Key JS functions**:\n - `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders\n - `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead\n - `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)\n - `ttOverviewClick(e)` — scrolls timeline + seeks video\n - `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`\n - `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`\n - `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video\n - `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked\n - `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`\n - `_ttShowNow(f)` — updates screenshot thumbnail + now-text div\n - `ttSyncBtn()` — syncs play/pause button text\n - Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom\n\n- **`/volume1/screenpipe/.gitignore`**\n ```\n *.db, *.sqlite, *.sqlite-shm, *.sqlite-wal\n data/, \\#recycle/,","depth":26,"role_description":"text"},{"role":"AXButton","text":"@eaDir/","depth":26,"help_text":"Open eaDir/","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"app_settings.json, app/.env\n __pycache__/, *.pyc, .DS_Store\n ```\n\n4. Errors and Fixes:\n\n- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\\#recycle/`. Also had to `git rm --cached \"#recycle/desktop.ini\"` to unstage it.\n- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.\n- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.\n- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.\n- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.\n\n5. Problem Solving:\n\n- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.\n- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.\n- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).\n- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.\n\n6. All User Messages:\n\n- \"do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps.\"\n- \"doi I need to restart?\"\n- \"there is sudo docker compose\"\n- \"no still the same\"\n- \"add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git\"\n- \"just do it\" (re: git push)\n- \"how to make sure data in :8767 are accurate and point to archive.db\"\n- \"I can't see older than 16th there should 21st of april. In http://192.168.0.242:8766/ I can see all but not on sqlite viewer http://192.168.0.242:8767\"\n- \"ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive\"\n- [docker compose output showing orphan container error]\n- \"looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast\"\n- \"lets make the playing speed more than 8x\"\n- \"still playing speed is not showing properly still just in one second. also I want to see in timeline where I am\"\n\n7. Pending Tasks:\n\n- **Playback speed fix** (in progress, partially done):\n - Add `<div class=\"tt-playhead-time\" id=\"ttPlayheadTime\"></div>` inside `ttInner` HTML\n - Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions\n - Update speed select `onchange` to call `ttSetSpeed(+this.value)`\n - Add 64× option to speed select\n - Update `_ttMovePlayhead` to also update `ttPlayheadTime` label\n - Update `ttSyncBtn` to start/stop timer based on play state + speed\n - Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)\n - Rebuild Docker image after changes\n\n8. Current Work:\n\nWorking on fixing two issues with the Timetable tab:\n1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.\n2. **Timeline position indicator**: Playhead not prominent enough. \n\n**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:\n```css\n.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n```\n\nSession was interrupted by summary request after this CSS edit, mid-implementation.\n\n9. Optional Next Step:\n\nContinuing the fix for: \"still playing speed is not showing properly still just in one second. also I want to see in timeline where I am\"\n\nThe next steps in order are:\n1. Add `<div class=\"tt-playhead-time\" id=\"ttPlayheadTime\"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)\n2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`\n3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)\n4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option\n5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer\n6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`\n\nIf you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl\nContinue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with \"I'll continue\" or similar. Pick up the last task as if the break never happened.","depth":26,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find timetable speed and playhead related code","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"tt-playhead\\|ttPlayhead\\|ttInner\\|_ttMovePlayhead\\|ttSetSpeed\\|_ttStartSpeed\\|_ttStopSpeed\\|ttSyncBtn\\|playbackRate\\|speed.*select\\|spdSel\\|ttSpeed\" /volume1/screenpipe/app/static/index.html | head -80","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }\n208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }\n580: <div class=\"tt-inner\" id=\"ttInner\" onclick=\"ttTimelineClick(event)\">\n583: <div class=\"tt-playhead\" id=\"ttPlayhead\"></div>\n598: onpause=\"ttSyncBtn()\"\n599: onplay=\"ttSyncBtn()\">\n607: <select id=\"ttSpeed\" onchange=\"document.getElementById('ttVideo').playbackRate=+this.value\">\n1624: document.getElementById('ttInner').style.width = '100%';\n1632: document.getElementById('ttPlayhead').style.display = 'none';\n1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';\n1700: const inner = document.getElementById('ttInner');\n1710: const inner = document.getElementById('ttInner');\n1718: const inner = document.getElementById('ttInner');\n1750: _ttMovePlayhead(new Date(best.ts).getTime());\n1772: _ttMovePlayhead(new Date(best.ts).getTime());\n1791:function _ttMovePlayhead(tsMs) {\n1792: const ph = document.getElementById('ttPlayhead');\n1802: const ph = document.getElementById('ttPlayhead');\n1805: const inner = document.getElementById('ttInner');\n1819:function ttSyncBtn() {","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 576-625)","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1786-1865)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find chunk loading and playhead update functions","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"ttUpdatePlayhead\\|ttNextChunk\\|ttLoadChunk\\|_ttCurChunk\\|_ttChunks\\|_ttFrames\" /volume1/screenpipe/app/static/index.html | head -50","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"596: onended=\"ttNextChunk()\"\n597: ontimeupdate=\"ttUpdatePlayhead()\"\n1569:let _ttFrames = [];\n1570:let _ttChunks = [];\n1571:let _ttCurChunk = -1;\n1607: _ttFrames = data.frames;\n1609: for (const f of _ttFrames) {\n1613: _ttChunks = [...chunkMap.values()];\n1614: _ttCurChunk = -1;\n1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();\n1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();\n1620: for (const f of _ttFrames) _ttColor(f.app);\n1640: for (const f of _ttFrames) {\n1736: if (!_ttFrames.length) return;\n1737: let best = _ttFrames[0], minDiff = Infinity;\n1738: for (const f of _ttFrames) {\n1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);\n1744: _ttCurChunk = ci;\n1753:function ttNextChunk() {\n1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;\n1755: _ttCurChunk++;\n1757: video.src = _ttChunks[_ttCurChunk][0].video_url;\n1762:function ttUpdatePlayhead() {\n1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;\n1765: const chunk = _ttChunks[_ttCurChunk];","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1754-1793)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1701-1760)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1561-1640)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Bash","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Find time formatting functions","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"IN","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"grep -n \"function fmtTime\\|function fmtDate\\|function _fmt\\|localTimeToUtc\\|fmtDateTime\" /volume1/screenpipe/app/static/index.html | head -20","depth":25,"role_description":"text"},{"role":"AXButton","text":"Copy code to clipboard","depth":24,"help_text":"Copy code","role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"OUT","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;\n1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;\n1153: let meta = `<span style=\"color:var(--muted)\">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;\n1166: meta = `<span style=\"color:var(--muted)\">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class=\"badge ${r.is_input_device?'mic':'sys'}\">${r.is_input_device?'MIC':'SYS'}</span>`;\n1307:function fmtTime(ts) {\n1312:function fmtDateTime(ts) {\n1320:function localTimeToUtc(timeStr) {\n1778:function _fmtSec(s) {\n1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Read","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"(lines 1308-1327)","depth":24,"role_description":"text"},{"role":"AXButton","text":"Thinking","depth":23,"role_description":"disclosure triangle","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Thinking","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Now I have everything I need. I'll implement the frame-by-frame timer system that replaces","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"video.playbackRate","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"","depth":24,"role_description":"text"},{"role":"AXLink","text":"index.html","depth":24,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"index.html","depth":25,"role_description":"text"},{"role":"AXStaticText","text":"Added 1 line","depth":24,"role_description":"text"},{"role":"AXStaticText","text":"Edit","depth":24,"role_description":"text"}]...
|
809945923361858319
|
-6284062775197318938
|
visual_change
|
accessibility
|
NULL
|
Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧ Explorer (⇧⌘E)
Search (⇧⌘F)
Source Control (⌃⇧G) - 2 pending changes
2
Run and Debug (⇧⌘D)
Remote Explorer
Extensions (⇧⌘X) - 2 require update, 1 requires restart
3
Claude Code
Containers
EXPLORER
EXPLORER
Explorer Section: screenpipe [SSH: nas]
Explorer Section: screenpipe [SSH: nas]
SCREENPIPE [SSH: NAS]
#recycle
app
data
pipes
.gitignore
app_settings.json
archive.db
db.sqlite
screenpipe_sync.sh
screenpipe.db
Outline Section
OUTLINE
OUTLINE
Timeline Section
TIMELINE
TIMELINE
app_settings.json, Editor Group 1
screenpipe_sync.sh, Editor Group 1
db.sqlite-shm, preview, Editor Group 1
The editor could not be opened because the file was not found.
Create File
lets add ability to jump…, Editor Group 2
Problems (⇧⌘M)
PROBLEMS
Output (⇧⌘U)
OUTPUT
Debug Console (⇧⌘Y)
DEBUG CONSOLE
Terminal (⌃`)
TERMINAL
Ports
PORTS
remote SSH: nas
SSH: nas
screenpipe (Git) - master*, Checkout Branch/Tag...
master*
screenpipe (Git) - Synchronize Changes
No Problems
0
0
No Ports Forwarded
0
Notifications
Signed out
Signed out
Screen Reader Optimized
Info: Downloading VS Code Server...
lets add ability to jump fro,m search to timeline so we can see the exact screen (also based on monitor and time
Session history
New session
Message actions
This session is being continued from a previous conversation that ran out of context. The summary below covers the earlier portion of the conversation.
Summary:
1. Primary Request and Intent:
The user has been developing a Screenpipe dashboard on a Synology NAS. Requests in chronological order:
- **Q1**: Are db.sqlite-shm and db.sqlite-wal used? → Explained WAL mode; cleaned up files.
- **Q2**: AND combination search (term1 + term2 must both appear) → Added "AND also" input field.
- **Q3**: Explain UTC time issue, show date in results, make Only/Skip apps use multiselect → Implemented all three.
- **Q4**: Point sqlite-web at archive.db, add second sqlite-web for db.sqlite → Updated docker-compose.yml, added two services on ports 8767/8768.
- **Q5**: "still the same" (container not picking up config) → Explained `up -d` vs `restart`.
- **Q6**: Add git, push to gitea.com/lakylak/screenpipe.git → Initialized repo, committed, pushed.
- **Q7**: Add Timetable tab with video playback and timeline → Full implementation with click-to-seek, auto-advancing chunks, legend.
- **Q8**: Add scroll/zoom on timeline, jump to specific time, better awareness → Implemented zoom (1×–32×), scrollable timeline, overview minimap, viewport indicator, Jump-to-time input, screenshot thumbnail.
- **Q9 (most recent)**: Make playing speed more than 8×, fix speed not working, show position on timeline → CSS fix done (wider playhead + time label style), remainder in progress.
2. Key Technical Concepts:
- **SQLite WAL mode**: db.sqlite-shm and db.sqlite-wal are WAL companion files; cleaned with `PRAGMA wal_checkpoint(TRUNCATE)`.
- **SQLite FTS5**: Space-separated terms = AND; `MATCH 'term1 term2'` requires both; OR requires explicit `OR` keyword.
- **FastAPI**: Python backend with route handlers in main.py, consumers pattern for DB queries.
- **Docker Compose**: App image is built (code baked in), not volume-mounted → requires `build` + `up -d` for code changes. `restart` doesn't re-read compose file — need `up -d`.
- **sqlite-web**: Read-only flag `-r`, pre-built image, no rebuild needed for config changes.
- **Video playback**: screenpipe records at 0.1–0.3 fps (timelapse). `seek = offset_index / fps` gives seconds into video chunk. ~245 chunks/day across 2 monitors. Videos may be encoded at standard fps making them very short at native speed.
- **Timeline rendering**: App-colored segments built by merging consecutive frames with same `app_name`. Percentage positions: `((ts - dayStart) / span * 100)%`.
- **Zoom/scroll**: Inner div width = `zoom × 100%`, outer wrapper has `overflow-x:auto`. Playhead position stays as % of inner div, which is correct at all zoom levels.
- **Timer-based speed**: For speed > 2×, browser `playbackRate` is unreliable on low-FPS video; correct approach is `setInterval` advancing `video.currentTime` by `speed * interval_ms / 1000` seconds per tick.
- **UTC vs local time**: Backend treats `time_from`/`time_to` as UTC. Frontend converts with `localTimeToUtc()` before sending.
- **Git**: `#recycle/` in .gitignore treated as comment — must escape as `\#recycle/`.
3. Files and Code Sections:
- **`/volume1/screenpipe/app/main.py`**
- Added `/api/apps` endpoint (all unique app names from frames table)
- Added `/api/timetable` endpoint (frames + video URLs + screenshot URLs per device per date)
- `/api/timetable` response structure: `{frames: [{ts, app, win, video_url, seek, screenshot_url}], devices: [...], device: "..."}`
- Key snippet:
```python
@app.get("/api/timetable"
)
async def timetable_data(d: str | None = Query(None), device: str | None = Query(None)):
...
rows = conn.execute(f"""
SELECT f.timestamp AS ts, f.app_name AS app, f.window_name AS win,
f.offset_index, f.snapshot_path,
vc.file_path AS video_path, vc.fps AS video_fps
FROM frames f
JOIN video_chunks vc ON f.video_chunk_id = vc.id
WHERE f.timestamp >= ? AND f.timestamp < ?
AND f.video_chunk_id IS NOT NULL {dev_clause}
ORDER BY f.timestamp
""", params).fetchall()
# seek = offset_index / fps, screenshot_url from _snapshot_to_url(snapshot_path)
```
- **`/volume1/screenpipe/app/docker-compose.yml`**
- Changed sqlite-web service name to `sqlite-web-archive` → port 8767 → `/data/archive.db`
- Added `sqlite-web-live` → port 8768 → `/data/db.sqlite`
- screenpipe-app: port 8766, `DB_PATH: /data/db.sqlite`, `TZ: Europe/Sofia`
- **`/volume1/screenpipe/app/static/index.html`** (single large file with all CSS/HTML/JS)
- **Search enhancements**:
- Added `id="sq2"` "AND also" input between search-row1 and search-row2
- Replaced `sOnlyApps`/`sSkipApps` text inputs with custom multiselect components (`id="msOnlyApps"`, `id="msSkipApps"`)
- Updated `buildUrl()` to combine `q + " " + q2` and convert times with `localTimeToUtc()`
- Added `fmtDateTime(ts)` showing "Apr 20 14:08" format
- Added `localTimeToUtc(timeStr)` converting local HH:MM to UTC
- Multiselect state: `const _msState = { msOnlyApps: new Set(), msSkipApps: new Set() }`
- **Timetable tab** (new page):
- Tab button added between Work Report and AI Summary
- `showPage` array updated: `['activity','search','audio','report','timetable','summary']`
- `refresh()` calls `loadTimetable()` when on timetable page
- **Timetable CSS** (key styles):
```css
.tt-scroll-wrap { overflow-x:auto; ... scrollbar-width:thin; }
.tt-inner { position:relative; height:52px; } /* width set dynamically */
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
.tt-overview-wrap { position:relative; height:14px; ... cursor:pointer; }
.tt-overview-vp { position:absolute; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.4); }
```
- **Timetable JS state variables**:
```javascript
let _ttFrames = [], _ttChunks = [], _ttCurChunk = -1;
let _ttDayStart = 0, _ttDayEnd = 0, _ttZoom = 1;
const _ttAppColors = {};
const TT_ZOOMS = [1, 2, 4, 8, 16, 32];
const TT_TICK_MIN = {1:30, 2:15, 4:10, 8:5, 16:2, 32:1};
```
- **Key JS functions**:
- `loadTimetable()` — fetches `/api/timetable`, groups chunks, renders
- `ttZoom(dir)` — changes zoom level, updates inner width, re-renders ticks, scrolls to playhead
- `ttTimelineClick(e)` — uses `inner.getBoundingClientRect()` (works correctly when scrolled)
- `ttOverviewClick(e)` — scrolls timeline + seeks video
- `ttUpdateOverviewVp()` — updates white viewport rect using `wrap.scrollLeft / inner.scrollWidth`
- `ttJumpToTime()` — parses time input, converts to ms, calls `ttSeekToMs`
- `ttSeekToMs(tsMs)` — binary-searches nearest frame, loads chunk, seeks video
- `_ttScrollToPlayhead(force)` — scrolls wrap so playhead stays at ~35% from left when Follow is checked
- `_ttMovePlayhead(tsMs)` — sets `ph.style.left` as percentage, calls `_ttScrollToPlayhead`
- `_ttShowNow(f)` — updates screenshot thumbnail + now-text div
- `ttSyncBtn()` — syncs play/pause button text
- Keyboard: Space=play/pause, ←/→=±10s, Ctrl+←/→=±30s, +/-=zoom
- **`/volume1/screenpipe/.gitignore`**
```
*.db, *.sqlite, *.sqlite-shm, *.sqlite-wal
data/, \#recycle/,
@eaDir/
app_settings.json, app/.env
__pycache__/, *.pyc, .DS_Store
```
4. Errors and Fixes:
- **`#recycle/` in .gitignore treated as comment**: `#` starts a comment in .gitignore. Fixed by escaping: `\#recycle/`. Also had to `git rm --cached "#recycle/desktop.ini"` to unstage it.
- **`sudo docker compose restart sqlite-web` didn't apply config change**: `restart` reuses existing container config, doesn't re-read compose file. Fix: `sudo docker compose up -d` recreates containers with new config.
- **Orphan container holding port 8767**: Old `screenpipe-sqlweb` container still running after rename. Fix: `sudo docker compose up -d --remove-orphans`.
- **`sudo docker` not accessible from Claude Code**: Interactive sudo required. User runs commands in NAS terminal.
- **`git config --global --add safe.directory /volume1/screenpipe`**: Required due to dubious ownership of NAS volume directory.
5. Problem Solving:
- **Time zone confusion in search**: Backend uses UTC for time_from/time_to; frontend displays local time. Solved by `localTimeToUtc()` converting before API call, and showing date+time in results.
- **sqlite-web not showing April 17–21 data**: Container was pointing at db.sqlite (old config), not archive.db. Fixed by updating docker-compose.yml + `up -d`.
- **Video playback speed**: Browser `video.playbackRate` is capped (~16× max in Chrome) and performs poorly for very low FPS (0.1–0.3 fps) screenpipe videos. Each chunk may only be 1–2 seconds of wall-clock encoded video, playing through instantly. Solution: implement timer-based frame-jumping for speed > 2× (in progress).
- **Playhead visibility**: White 2px line was hard to see. Fixed CSS to 3px width + stronger box-shadow + added `.tt-playhead-time` overlay label style.
6. All User Messages:
- "do we use db.sqlite-shm and db.sqlite-wal for anything right now? [image of search UI] Lets add ability to search with combination... Explain how does the search work time seems to work in utc maybe display date next to the time in results. Make only apps and skip apps multiselect with all available apps."
- "doi I need to restart?"
- "there is sudo docker compose"
- "no still the same"
- "add git. I have created gitea repo https://gitea.com/lakylak/screenpipe.git"
- "just do it" (re: git push)
- "how to make sure data in :8767 are accurate and point to archive.db"
- "I can't see older than 16th there should 21st of april. In http://[IP_ADDRESS]:8766/ I can see all but not on sqlite viewer http://[IP_ADDRESS]:8767"
- "ok lets add additional port to read db.sqlite, I would like to see the structure of official db that reads db.sqlite db and one for archive"
- [docker compose output showing orphan container error]
- "looks great. I want to have ability to scroll left and right and also to jump to specific time. I want to be more aware to what I see. Still it should be fast"
- "lets make the playing speed more than 8x"
- "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
7. Pending Tasks:
- **Playback speed fix** (in progress, partially done):
- Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` inside `ttInner` HTML
- Implement `_ttStartSpeedTimer(speed)` / `_ttStopSpeedTimer()` / `ttSetSpeed(speed)` functions
- Update speed select `onchange` to call `ttSetSpeed(+this.value)`
- Add 64× option to speed select
- Update `_ttMovePlayhead` to also update `ttPlayheadTime` label
- Update `ttSyncBtn` to start/stop timer based on play state + speed
- Update `ttNextChunk` and `ttSeekToMs` to stop timer (restarted by onplay → ttSyncBtn)
- Rebuild Docker image after changes
8. Current Work:
Working on fixing two issues with the Timetable tab:
1. **Playback speed**: `video.playbackRate` doesn't work well for low-FPS screenpipe videos. The plan is to implement a `setInterval`-based frame-jumper for speed > 2× that advances `video.currentTime` by `speed * intervalMs / 1000` every 100–200ms, bypassing browser playbackRate limits.
2. **Timeline position indicator**: Playhead not prominent enough.
**CSS already changed** in `/volume1/screenpipe/app/static/index.html`:
```css
.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
```
Session was interrupted by summary request after this CSS edit, mid-implementation.
9. Optional Next Step:
Continuing the fix for: "still playing speed is not showing properly still just in one second. also I want to see in timeline where I am"
The next steps in order are:
1. Add `<div class="tt-playhead-time" id="ttPlayheadTime"></div>` to the HTML inside `#ttInner` (after the existing `.tt-playhead` div)
2. Update `_ttMovePlayhead` to set `ttPlayheadTime` position and text content with `fmtTime()`
3. Add timer-based speed system to JS (new functions `_ttStartSpeedTimer`, `_ttStopSpeedTimer`, `ttSetSpeed`)
4. Update speed select's `onchange` to `ttSetSpeed(+this.value)` and add 64× option
5. Update `ttSyncBtn`, `ttNextChunk`, `ttSeekToMs` to integrate with timer
6. Rebuild: `sudo docker compose build screenpipe-app && sudo docker compose up -d screenpipe-app`
If you need specific details from before compaction (like exact code snippets, error messages, or content you generated), read the full transcript at: /home/Adm1n/.claude/projects/-volume1-screenpipe/7777f46e-1e40-4051-b4bb-f43aedd59556.jsonl
Continue the conversation from where it left off without asking the user any further questions. Resume directly — do not acknowledge the summary, do not recap what was happening, do not preface with "I'll continue" or similar. Pick up the last task as if the break never happened.
Thinking
Thinking
Bash
Find timetable speed and playhead related code
IN
grep -n "tt-playhead\|ttPlayhead\|ttInner\|_ttMovePlayhead\|ttSetSpeed\|_ttStartSpeed\|_ttStopSpeed\|ttSyncBtn\|playbackRate\|speed.*select\|spdSel\|ttSpeed" /volume1/screenpipe/app/static/index.html | head -80
Copy code to clipboard
OUT
207:.tt-playhead { position:absolute; top:0; width:3px; height:36px; background:white; box-shadow:0 0 8px rgba(255,255,255,.9); z-index:10; pointer-events:none; display:none; }
208:.tt-playhead-time { position:absolute; top:2px; font-size:9px; font-weight:600; color:white; background:rgba(0,0,0,.75); padding:1px 4px; border-radius:2px; white-space:nowrap; transform:translateX(-50%); z-index:12; pointer-events:none; display:none; }
580: <div class="tt-inner" id="ttInner" onclick="ttTimelineClick(event)">
583: <div class="tt-playhead" id="ttPlayhead"></div>
598: onpause="ttSyncBtn()"
599: onplay="ttSyncBtn()">
607: <select id="ttSpeed" onchange="document.getElementById('ttVideo').playbackRate=+this.value">
1624: document.getElementById('ttInner').style.width = '100%';
1632: document.getElementById('ttPlayhead').style.display = 'none';
1694: document.getElementById('ttInner').style.width = (_ttZoom * 100) + '%';
1700: const inner = document.getElementById('ttInner');
1710: const inner = document.getElementById('ttInner');
1718: const inner = document.getElementById('ttInner');
1750: _ttMovePlayhead(new Date(best.ts).getTime());
1772: _ttMovePlayhead(new Date(best.ts).getTime());
1791:function _ttMovePlayhead(tsMs) {
1792: const ph = document.getElementById('ttPlayhead');
1802: const ph = document.getElementById('ttPlayhead');
1805: const inner = document.getElementById('ttInner');
1819:function ttSyncBtn() {
Read
index.html
index.html
(lines 576-625)
Read
index.html
index.html
(lines 1786-1865)
Thinking
Thinking
Bash
Find chunk loading and playhead update functions
IN
grep -n "ttUpdatePlayhead\|ttNextChunk\|ttLoadChunk\|_ttCurChunk\|_ttChunks\|_ttFrames" /volume1/screenpipe/app/static/index.html | head -50
Copy code to clipboard
OUT
596: onended="ttNextChunk()"
597: ontimeupdate="ttUpdatePlayhead()"
1569:let _ttFrames = [];
1570:let _ttChunks = [];
1571:let _ttCurChunk = -1;
1607: _ttFrames = data.frames;
1609: for (const f of _ttFrames) {
1613: _ttChunks = [...chunkMap.values()];
1614: _ttCurChunk = -1;
1616: _ttDayStart = new Date(_ttFrames[0].ts).getTime();
1617: _ttDayEnd = new Date(_ttFrames[_ttFrames.length - 1].ts).getTime();
1620: for (const f of _ttFrames) _ttColor(f.app);
1640: for (const f of _ttFrames) {
1736: if (!_ttFrames.length) return;
1737: let best = _ttFrames[0], minDiff = Infinity;
1738: for (const f of _ttFrames) {
1742: const ci = _ttChunks.findIndex(ch => ch[0].video_url === best.video_url);
1744: _ttCurChunk = ci;
1753:function ttNextChunk() {
1754: if (_ttCurChunk + 1 >= _ttChunks.length) return;
1755: _ttCurChunk++;
1757: video.src = _ttChunks[_ttCurChunk][0].video_url;
1762:function ttUpdatePlayhead() {
1764: if (_ttCurChunk < 0 || _ttCurChunk >= _ttChunks.length) return;
1765: const chunk = _ttChunks[_ttCurChunk];
Read
index.html
index.html
(lines 1754-1793)
Thinking
Thinking
Read
index.html
index.html
(lines 1701-1760)
Thinking
Thinking
Read
index.html
index.html
(lines 1561-1640)
Thinking
Thinking
Bash
Find time formatting functions
IN
grep -n "function fmtTime\|function fmtDate\|function _fmt\|localTimeToUtc\|fmtDateTime" /volume1/screenpipe/app/static/index.html | head -20
Copy code to clipboard
OUT
1088: if (tf) url += `&time_from=${localTimeToUtc(tf)}`;
1089: if (tt) url += `&time_to=${localTimeToUtc(tt)}`;
1153: let meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge}`;
1166: meta = `<span style="color:var(--muted)">${fmtDateTime(r.timestamp)}</span>${srcBadge} <span class="badge ${r.is_input_device?'mic':'sys'}">${r.is_input_device?'MIC':'SYS'}</span>`;
1307:function fmtTime(ts) {
1312:function fmtDateTime(ts) {
1320:function localTimeToUtc(timeStr) {
1778:function _fmtSec(s) {
1788: `${fmtDateTime(f.ts)} · ${f.app}${f.win ? ' / ' + f.win : ''}`;
Read
index.html
index.html
(lines 1308-1327)
Thinking
Thinking
Now I have everything I need. I'll implement the frame-by-frame timer system that replaces
video.playbackRate
with wall-clock accurate playback, plus add the playhead time label. Let me make the changes:
Edit
index.html
index.html
Added 1 line
Edit...
|
80583
|
|
80583
|
NULL
|
0
|
2026-04-25T14:29:14.629965+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127354629_m2.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠇
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠇ \u0000\u0000\u0000\u0000\u0000\u0000","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠇ \u0000\u0000\u0000\u0000\u0000\u0000","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.50199467,"top":1.0,"width":0.016289894,"height":-0.02394259},"role_description":"text"}]...
|
-7113617021274648422
|
5712261072789929553
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠇
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
NULL
|
|
80582
|
NULL
|
0
|
2026-04-25T14:29:14.629929+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127354629_m1.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠇
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠇ \u0000\u0000\u0000\u0000\u0000\u0000","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠇ \u0000\u0000\u0000\u0000\u0000\u0000","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.48402777,"top":0.033333335,"width":0.034027778,"height":0.017777778},"role_description":"text"}]...
|
-7113617021274648422
|
5712261072789929553
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠇
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
NULL
|
|
80581
|
2127
|
30
|
2026-04-25T14:29:08.663342+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127348663_m1.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠏
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠏","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠏","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.48402777,"top":0.033333335,"width":0.034027778,"height":0.017777778},"role_description":"text"}]...
|
-3324887143542945867
|
5424030696638217809
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠏
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
80578
|
|
80580
|
2128
|
27
|
2026-04-25T14:29:08.603607+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127348603_m2.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠏
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠏","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠏","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.50199467,"top":1.0,"width":0.016289894,"height":-0.02394259},"role_description":"text"}]...
|
-3324887143542945867
|
5424030696638217809
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠏
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
80579
|
|
80579
|
2128
|
26
|
2026-04-25T14:29:06.825609+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127346825_m2.jpg...
|
Claude
|
Claude
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped...
|
[{"role":"AXLink","text":& [{"role":"AXLink","text":"Skip to content","depth":14,"bounds":{"left":0.0023271276,"top":0.025538707,"width":0.0003324468,"height":0.0007980846},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Skip to content","depth":15,"bounds":{"left":0.0023271276,"top":0.025538707,"width":0.037898935,"height":0.0007980846},"role_description":"text"},{"role":"AXStaticText","text":"Click to collapse","depth":16,"bounds":{"left":0.105053194,"top":0.8004789,"width":0.030585106,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"⌘B","depth":16,"bounds":{"left":0.13763298,"top":0.8004789,"width":0.0063164895,"height":0.011971269},"role_description":"text"},{"role":"AXStaticText","text":"Drag to resize","depth":16,"bounds":{"left":0.105053194,"top":0.8124501,"width":0.025930852,"height":0.011971269},"role_description":"text"},{"role":"AXButton","text":"Collapse sidebar","depth":15,"bounds":{"left":0.030585106,"top":0.02952913,"width":0.007978723,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search","depth":15,"bounds":{"left":0.03856383,"top":0.02952913,"width":0.007978723,"height":0.01915403},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chat","depth":16,"bounds":{"left":0.0056515955,"top":0.061452515,"width":0.021941489,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cowork","depth":16,"bounds":{"left":0.02825798,"top":0.061452515,"width":0.00930851,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code","depth":16,"bounds":{"left":0.038231384,"top":0.061452515,"width":0.00930851,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New chat ⌘N","depth":15,"bounds":{"left":0.005319149,"top":0.09177973,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"New chat","depth":16,"bounds":{"left":0.015292553,"top":0.09497207,"width":0.019281914,"height":0.013567438},"role_description":"text"},{"role":"AXStaticText","text":"⌘N","depth":17,"bounds":{"left":0.084109046,"top":0.09577015,"width":0.006981383,"height":0.011971269},"role_description":"text"},{"role":"AXButton","text":"Projects","depth":15,"bounds":{"left":0.005319149,"top":0.112529926,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Artifacts","depth":15,"bounds":{"left":0.005319149,"top":0.13328013,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Customize","depth":15,"bounds":{"left":0.005319149,"top":0.15403032,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Pinned","depth":16,"bounds":{"left":0.00731383,"top":0.19393456,"width":0.08510638,"height":0.012769354},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Bulgarian citizenship application process for EU residents","depth":18,"bounds":{"left":0.005319149,"top":0.21069433,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Bulgarian citizenship application process for EU residents","depth":19,"bounds":{"left":0.08577128,"top":0.21388668,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Dawarich location tracking project","depth":18,"bounds":{"left":0.005319149,"top":0.23224261,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Dawarich location tracking project","depth":19,"bounds":{"left":0.08577128,"top":0.23543495,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Recents","depth":16,"bounds":{"left":0.00731383,"top":0.26256984,"width":0.064494684,"height":0.012769354},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"View all","depth":16,"bounds":{"left":0.0731383,"top":0.26256984,"width":0.019281914,"height":0.012769354},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 What is the best switch I can…","depth":18,"bounds":{"left":0.005319149,"top":0.2793296,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 What is the best switch I can…","depth":19,"bounds":{"left":0.08577128,"top":0.28252193,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Last swimming outing with Dani","depth":18,"bounds":{"left":0.005319149,"top":0.3008779,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Last swimming outing with Dani","depth":19,"bounds":{"left":0.08577128,"top":0.30407023,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 Screen pipe. Is there ability…","depth":18,"bounds":{"left":0.005319149,"top":0.32242617,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 Screen pipe. Is there ability…","depth":19,"bounds":{"left":0.08577128,"top":0.3256185,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Definition of incarcerated","depth":18,"bounds":{"left":0.005319149,"top":0.34397447,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Definition of incarcerated","depth":19,"bounds":{"left":0.08577128,"top":0.3471668,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chromecast remote volume buttons not working","depth":18,"bounds":{"left":0.005319149,"top":0.36552274,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Chromecast remote volume buttons not working","depth":19,"bounds":{"left":0.08577128,"top":0.36871508,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Salesforce API errors with Organization and FieldDefinition queries","depth":18,"bounds":{"left":0.005319149,"top":0.38707104,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Salesforce API errors with Organization and FieldDefinition queries","depth":19,"bounds":{"left":0.08577128,"top":0.39026338,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Daily activity summary from screenpipe data","depth":18,"bounds":{"left":0.005319149,"top":0.4086193,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Daily activity summary from screenpipe data","depth":19,"bounds":{"left":0.08577128,"top":0.41181165,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"MacBook unexpected restarts and kanji screen","depth":18,"bounds":{"left":0.005319149,"top":0.4301676,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for MacBook unexpected restarts and kanji screen","depth":19,"bounds":{"left":0.08577128,"top":0.43335995,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Security patch review and testing guidance","depth":18,"bounds":{"left":0.005319149,"top":0.4517159,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Security patch review and testing guidance","depth":19,"bounds":{"left":0.08577128,"top":0.45490822,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Food calorie values reference","depth":18,"bounds":{"left":0.005319149,"top":0.47326416,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Food calorie values reference","depth":19,"bounds":{"left":0.08577128,"top":0.4764565,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tracking location history from last week","depth":18,"bounds":{"left":0.005319149,"top":0.49481246,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Tracking location history from last week","depth":19,"bounds":{"left":0.08577128,"top":0.4980048,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Screenpipe WAL processing when stopped","depth":18,"bounds":{"left":0.005319149,"top":0.51636076,"width":0.087765954,"height":0.0207502},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Screenpipe WAL processing when stopped","depth":19,"bounds":{"left":0.08577128,"top":0.51955307,"width":0.005984043,"height":0.014365523},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false}]...
|
-8217039337077879886
|
6486832974611340424
|
click
|
hybrid
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped
Claude•• е0, Chat+ New chat& Projects80 Artifacts8 CustomizecalVIeWWindowmeltnefinition of incarceratedli$0100% C.8Sat 25 Apr 17:29:06incarcerated meaningBulgarian citizenship application procesRecentsa What is the best switch Ican..Incarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "T'he incarcerated individuals awaited tral." As a verb (to incarcerate): "Ihecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Screen pipe. Is there ability.Definition of incarceratedChromecast remote volume buttons notSalesforce APl errors with Organization aDaily activity summary from screenpipeMacbook unexpected restarts and KanlSecurity patch review and testing guidarFood calorie values referenceTracking location historv from last weekScreenpipe WAL processing when stoppReviewing recent conversation highlightsMac aliases not recognizedBoosteroid still recording despite ignoreMissing JavaScriot oromise in authorizatLinux SoLite Ul for NASClaude API 500 internal server errorScreenpipe query capabilities and usageeGPU compatibility with Mac mini and StReply..Relaunch to undateCannotAhy0 Inboo VouoilAdd files, connectors, and more/Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
|
80578
|
2127
|
29
|
2026-04-25T14:29:06.521558+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127346521_m1.jpg...
|
Claude
|
Claude
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
More options for Reviewing recent conversation highlights
Mac aliases not recognized
More options for Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
More options for Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
More options for Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
More options for Linux SQLite UI for NAS
Claude API 500 internal server error
More options for Claude API 500 internal server error
Screenpipe query capabilities and usage
More options for Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
More options for eGPU compatibility with Mac mini and Studio
Relaunch to update v1.3883.0
Relaunch to update
v1.3883.0
Lukas Kovalik
Lukas Kovalik
Get apps and extensions
Definition of incarcerated
Definition of incarcerated
More options for Definition of incarcerated
Share chat
Claude finished the response
You said: incarcerated meaning
You said: incarcerated meaning
incarcerated meaning
20:12
Retry
Edit
Copy
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Incarcerated
means being imprisoned or confined in a jail or prison.
As an adjective:
"The incarcerated individuals awaited trial."
As a verb (to incarcerate):
"The court ordered him to be incarcerated for five years."
It comes from the Latin
incarcerare
—
in-
(into) +
carcer
(prison), which also gives us the word "carceral."
It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned" or "jailed."
Copy
Give positive feedback
Give negative feedback
Retry
Reply...
Reply...
Add files, connectors, and more
Model: Sonnet 4.6
Sonnet 4.6
Settings
Press and hold to record
Claude is AI and can make mistakes. Please double-check responses.
Claude is AI and can make mistakes. Please double-check responses.
Add files, connectors, and more
/
Add files, connectors, and more
/...
|
[{"role":"AXLink","text":& [{"role":"AXLink","text":"Skip to content","depth":14,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Skip to content","depth":15,"role_description":"text"},{"role":"AXStaticText","text":"Click to collapse","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"⌘B","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"Drag to resize","depth":16,"role_description":"text"},{"role":"AXButton","text":"Collapse sidebar","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chat","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cowork","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New chat ⌘N","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"New chat","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"⌘N","depth":17,"role_description":"text"},{"role":"AXButton","text":"Projects","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Artifacts","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Customize","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Pinned","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Bulgarian citizenship application process for EU residents","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Bulgarian citizenship application process for EU residents","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Dawarich location tracking project","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Dawarich location tracking project","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Recents","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"View all","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 What is the best switch I can…","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 What is the best switch I can…","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Last swimming outing with Dani","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Last swimming outing with Dani","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 Screen pipe. Is there ability…","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 Screen pipe. Is there ability…","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Definition of incarcerated","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Definition of incarcerated","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chromecast remote volume buttons not working","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Chromecast remote volume buttons not working","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Salesforce API errors with Organization and FieldDefinition queries","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Salesforce API errors with Organization and FieldDefinition queries","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Daily activity summary from screenpipe data","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Daily activity summary from screenpipe data","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"MacBook unexpected restarts and kanji screen","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for MacBook unexpected restarts and kanji screen","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Security patch review and testing guidance","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Security patch review and testing guidance","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Food calorie values reference","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Food calorie values reference","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tracking location history from last week","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Tracking location history from last week","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Screenpipe WAL processing when stopped","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Screenpipe WAL processing when stopped","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reviewing recent conversation highlights","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Reviewing recent conversation highlights","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Mac aliases not recognized","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Mac aliases not recognized","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Boosteroid still recording despite ignored windows setting","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Boosteroid still recording despite ignored windows setting","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Missing JavaScript promise in authorization response","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Missing JavaScript promise in authorization response","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Linux SQLite UI for NAS","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Linux SQLite UI for NAS","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Claude API 500 internal server error","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Claude API 500 internal server error","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Screenpipe query capabilities and usage","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Screenpipe query capabilities and usage","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"eGPU compatibility with Mac mini and Studio","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for eGPU compatibility with Mac mini and Studio","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Relaunch to update v1.3883.0","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Relaunch to update","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"v1.3883.0","depth":16,"role_description":"text"},{"role":"AXPopUpButton","text":"Lukas Kovalik","depth":16,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Lukas Kovalik","depth":17,"role_description":"text"},{"role":"AXButton","text":"Get apps and extensions","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Definition of incarcerated","depth":19,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Definition of incarcerated","depth":21,"role_description":"text"},{"role":"AXPopUpButton","text":"More options for Definition of incarcerated","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share chat","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Claude finished the response","depth":20,"role_description":"text"},{"role":"AXHeading","text":"You said: incarcerated meaning","depth":19,"role_description":"heading"},{"role":"AXStaticText","text":"You said: incarcerated meaning","depth":20,"role_description":"text"},{"role":"AXStaticText","text":"incarcerated meaning","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"20:12","depth":21,"role_description":"text"},{"role":"AXButton","text":"Retry","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Edit","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Copy","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.","depth":20,"role_description":"heading"},{"role":"AXStaticText","text":"Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Incarcerated","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"means being imprisoned or confined in a jail or prison.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"As an adjective:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"\"The incarcerated individuals awaited trial.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"As a verb (to incarcerate):","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"\"The court ordered him to be incarcerated for five years.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"It comes from the Latin","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"incarcerare","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"—","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"in-","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"(into) +","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"carcer","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"(prison), which also gives us the word \"carceral.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"It's often used in formal, legal, or policy contexts as a more neutral alternative to \"imprisoned\" or \"jailed.\"","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Give positive feedback","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Give negative feedback","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Retry","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Reply...","depth":24,"value":"Reply...","role_description":"text entry area","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Reply...","depth":27,"role_description":"text"},{"role":"AXPopUpButton","text":"Add files, connectors, and more","depth":26,"bounds":{"left":0.32777777,"top":0.0,"width":0.022222223,"height":0.035555556},"role_description":"pop-up button","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"Model: Sonnet 4.6","depth":26,"bounds":{"left":0.74027777,"top":0.0,"width":0.072222225,"height":0.035555556},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Sonnet 4.6","depth":28,"bounds":{"left":0.74722224,"top":0.0,"width":0.048611112,"height":0.018888889},"role_description":"text"},{"role":"AXPopUpButton","text":"Settings","depth":25,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Press and hold to record","depth":24,"bounds":{"left":0.81805557,"top":0.0,"width":0.022222223,"height":0.031111112},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Claude is AI and can make mistakes. Please double-check responses.","depth":21,"bounds":{"left":0.4486111,"top":0.0,"width":0.26805556,"height":0.016666668},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Claude is AI and can make mistakes. Please double-check responses.","depth":22,"bounds":{"left":0.4486111,"top":0.0,"width":0.26805556,"height":0.016666668},"role_description":"text"},{"role":"AXStaticText","text":"Add files, connectors, and more","depth":12,"bounds":{"left":0.2736111,"top":0.0,"width":0.12361111,"height":0.016666668},"role_description":"text"},{"role":"AXStaticText","text":"/","depth":12,"bounds":{"left":0.40138888,"top":0.0,"width":0.0027777778,"height":0.016666668},"role_description":"text"},{"role":"AXStaticText","text":"Add files, connectors, and more","depth":13,"bounds":{"left":0.40347221,"top":0.0,"width":0.00069444446,"height":0.0011111111},"role_description":"text"},{"role":"AXStaticText","text":"/","depth":13,"bounds":{"left":0.40347221,"top":0.0,"width":0.00069444446,"height":0.0011111111},"role_description":"text"}]...
|
-3705380121658117940
|
5911994006522289342
|
visual_change
|
hybrid
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
More options for Reviewing recent conversation highlights
Mac aliases not recognized
More options for Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
More options for Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
More options for Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
More options for Linux SQLite UI for NAS
Claude API 500 internal server error
More options for Claude API 500 internal server error
Screenpipe query capabilities and usage
More options for Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
More options for eGPU compatibility with Mac mini and Studio
Relaunch to update v1.3883.0
Relaunch to update
v1.3883.0
Lukas Kovalik
Lukas Kovalik
Get apps and extensions
Definition of incarcerated
Definition of incarcerated
More options for Definition of incarcerated
Share chat
Claude finished the response
You said: incarcerated meaning
You said: incarcerated meaning
incarcerated meaning
20:12
Retry
Edit
Copy
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Incarcerated
means being imprisoned or confined in a jail or prison.
As an adjective:
"The incarcerated individuals awaited trial."
As a verb (to incarcerate):
"The court ordered him to be incarcerated for five years."
It comes from the Latin
incarcerare
—
in-
(into) +
carcer
(prison), which also gives us the word "carceral."
It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned" or "jailed."
Copy
Give positive feedback
Give negative feedback
Retry
Reply...
Reply...
Add files, connectors, and more
Model: Sonnet 4.6
Sonnet 4.6
Settings
Press and hold to record
Claude is AI and can make mistakes. Please double-check responses.
Claude is AI and can make mistakes. Please double-check responses.
Add files, connectors, and more
/
Add files, connectors, and more
/
BoosteroidDOCKER• ₴1DEV (-zsh)-rw-r--r-rW-r--n-rw-r--r-rw-r--r-rw-r--r-rw-r--rBOJOSTEROID (Beta-rw-r--r-rw-r--r-rw-r--r-rw-r--rAukas@Lu[2026-04[2026-04[2026-04[+00m00s[2026-04Lukaselu[2026-04[2026-04[2026-04[+00m00s[+00m01sDYSON SPHERE PROGRHARNESS THE PODESIGN A GIPLAYMY GAMESLIBRARYINSTALL$82sqlite3APP (-zsh)83screenpipe"Search for..What's newHere's a quick look at the latest improvements and fixes[1.11.9] - 2026.04.20Fixed an issue with microphoneFixed an issue with gamepad connectivity in certain casesFixed an issue with touchpad scrolling behaviorFixed an issue with selecting the audio output deviceFixed an issue with mouse sensitivity settingsMinor Ul improvementsThanks to everyone who reports bugs and helps improve the client[1.11.8] - 2026.04.09Fixed: an issue with mouse accelerationImproved several translationsMinor Ul improvementsrmsOKDELUXE BUSE[+00m01sAGEON SALE RESLicense Required[+00mO2s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)ON SALELicense RequiredATARISOTHE ANNIVERSARY CELEBRATIONLicense RequiredLicense Required/ 0m08s25100% <78Sat 25 Apr 17:29:06O ₴4sqlite3181*5Lukás KoválikRecent -Rolle CastenYCOONDelixeLicense Required...
|
NULL
|
|
80577
|
2127
|
28
|
2026-04-25T14:28:53.295368+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127333295_m1.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 7 Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 78%
LakyLak bose qc35 II
M720 Triathlon
Magic Keyboard
Magic Keyboard with Numeric Keypad
soundcore AeroClip
Soundcore Life Dot 2 NC
Bluetooth Settings…...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Bluetooth","depth":2,"bounds":{"left":0.7895833,"top":0.04777778,"width":0.042708334,"height":0.017777778},"automation_id":"bluetooth-header","role_description":"text"},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.9527778,"top":0.044444446,"width":0.02638889,"height":0.024444444},"automation_id":"bluetooth-header","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXHeading","text":"Devices","depth":3,"bounds":{"left":0.7895833,"top":0.090555556,"width":0.032291666,"height":0.016666668},"role_description":"heading"},{"role":"AXCheckBox","text":"Lukas’s Magic Mouse, 78%","depth":3,"bounds":{"left":0.78333336,"top":0.11111111,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-Lukas’s Magic Mouse","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"LakyLak bose qc35 II","depth":3,"bounds":{"left":0.78333336,"top":0.14666666,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-LakyLak bose qc35 II","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"M720 Triathlon","depth":3,"bounds":{"left":0.78333336,"top":0.18222222,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-M720 Triathlon","role_description":"toggle button","subrole":"AXToggle","is_enabled":false},{"role":"AXCheckBox","text":"Magic Keyboard","depth":3,"bounds":{"left":0.78333336,"top":0.21777777,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-Magic Keyboard","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Magic Keyboard with Numeric Keypad","depth":3,"bounds":{"left":0.78333336,"top":0.25333333,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-Magic Keyboard with Numeric Keypad","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"soundcore AeroClip","depth":3,"bounds":{"left":0.78333336,"top":0.2888889,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-soundcore AeroClip","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Soundcore Life Dot 2 NC","depth":3,"bounds":{"left":0.78333336,"top":0.32444444,"width":0.20208333,"height":0.035555556},"automation_id":"bluetooth-device-Soundcore Life Dot 2 NC","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Bluetooth Settings…","depth":2,"bounds":{"left":0.78333336,"top":0.37555555,"width":0.09791667,"height":0.017777778},"role_description":"button","is_enabled":true,"is_focused":false}]...
|
-2517098654734419445
|
-8884494675170373931
|
click
|
hybrid
|
NULL
|
Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 7 Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 78%
LakyLak bose qc35 II
M720 Triathlon
Magic Keyboard
Magic Keyboard with Numeric Keypad
soundcore AeroClip
Soundcore Life Dot 2 NC
Bluetooth Settings…
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpsqlite3DOCKER• 881DEV (-zsh)-$82APP (-zsh)*3-rw-r--r--1lukasstaff18574925Apr17:26lukasstaff-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff2517:261777127176106_m1.jpg154999Apr1777127176816_ml.jpg10361725Apr17:261777127177994_m2.jpglukasstaff35484125Apr17:26lukasstaff14828425Apr17:261777127183656_m1.jpglukasstaff19624825Apr1777127185903_m1.jpg17:26lukasstaff103136251777127188928_m1.JpgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:26-rw-r--r--lukasstaff22072025Apr17:271777127204173_m1.jpglukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--24970625Apr17:271777127225353_m1.jpg-rw-r--r--lukasstaff1031901777127231085_m2.jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44]====[2026-04-2517:27:44]Screenpipe sync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J========================================[2026-04-2517:28:17JScreenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00s• 0m01s• 0m00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08s‹$0screenpipe"(25100% CSat 25 Apr 17:28:53BluetoothDevicesLukas's Magic Mouse78%•LakyLak bose qc35 llM720 TriathlonMagic KeyboardMagic Keyboard with Numeric Keypadsoundcorp AeroClipSoundcore Life Dot 2 NCBluetooth Settings......
|
80574
|
|
80576
|
2128
|
25
|
2026-04-25T14:28:53.295363+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127333295_m2.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 7 Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 78%
LakyLak bose qc35 II
M720 Triathlon
Magic Keyboard
Magic Keyboard with Numeric Keypad
soundcore AeroClip
Soundcore Life Dot 2 NC
Bluetooth Settings…...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Bluetooth","depth":2,"bounds":{"left":0.64827126,"top":1.0,"width":0.02044548,"height":-0.034317613},"automation_id":"bluetooth-header","role_description":"text"},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.72639626,"top":1.0,"width":0.012632979,"height":-0.031923413},"automation_id":"bluetooth-header","role_description":"toggle button","subrole":"AXToggle","is_enabled":true,"is_focused":false},{"role":"AXHeading","text":"Devices","depth":3,"bounds":{"left":0.64827126,"top":1.0,"width":0.015458777,"height":-0.065043926},"role_description":"heading"},{"role":"AXCheckBox","text":"Lukas’s Magic Mouse, 78%","depth":3,"bounds":{"left":0.6452792,"top":1.0,"width":0.09674202,"height":-0.07980847},"automation_id":"bluetooth-device-Lukas’s Magic Mouse","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"LakyLak bose qc35 II","depth":3,"automation_id":"bluetooth-device-LakyLak bose qc35 II","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"M720 Triathlon","depth":3,"automation_id":"bluetooth-device-M720 Triathlon","role_description":"toggle button","subrole":"AXToggle","is_enabled":false},{"role":"AXCheckBox","text":"Magic Keyboard","depth":3,"automation_id":"bluetooth-device-Magic Keyboard","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Magic Keyboard with Numeric Keypad","depth":3,"automation_id":"bluetooth-device-Magic Keyboard with Numeric Keypad","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"soundcore AeroClip","depth":3,"automation_id":"bluetooth-device-soundcore AeroClip","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Soundcore Life Dot 2 NC","depth":3,"automation_id":"bluetooth-device-Soundcore Life Dot 2 NC","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Bluetooth Settings…","depth":2,"role_description":"button","is_enabled":true,"is_focused":false}]...
|
-2517098654734419445
|
-8884494675170373931
|
click
|
hybrid
|
NULL
|
Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 7 Bluetooth
Bluetooth
Devices
Lukas’s Magic Mouse, 78%
LakyLak bose qc35 II
M720 Triathlon
Magic Keyboard
Magic Keyboard with Numeric Keypad
soundcore AeroClip
Soundcore Life Dot 2 NC
Bluetooth Settings…
incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
80575
|
|
80575
|
2128
|
24
|
2026-04-25T14:28:50.875891+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127330875_m2.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next...
|
[{"role":"AXCheckBox","text [{"role":"AXCheckBox","text":"Wi‑Fi","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.04454787,"height":-0.037110925},"automation_id":"controlcenter-wifi","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Focus","depth":2,"bounds":{"left":0.69913566,"top":1.0,"width":0.04454787,"height":-0.031923413},"automation_id":"controlcenter-focus-modes","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.04454787,"height":-0.06903434},"automation_id":"controlcenter-bluetooth","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"AirDrop","depth":2,"automation_id":"controlcenter-airdrop","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Stage Manager","depth":2,"bounds":{"left":0.702377,"top":1.0,"width":0.01412899,"height":-0.09696722},"automation_id":"controlcenter-stagemanager","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Screen Mirroring","depth":2,"bounds":{"left":0.7230718,"top":1.0,"width":0.020611702,"height":-0.08938551},"automation_id":"controlcenter-screen-mirroring","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Display","depth":3,"role_description":"text"},{"role":"AXStaticText","text":"Sound","depth":2,"automation_id":"controlcenter-volume","role_description":"text"},{"role":"AXCheckBox","text":"Airplay Audio","depth":2,"automation_id":"controlcenter-airplay","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Music.app","depth":2,"role_description":"text"},{"role":"AXButton","text":"play","depth":2,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"next","depth":2,"role_description":"button","is_enabled":false}]...
|
-8871609275972961978
|
9172942166022350908
|
click
|
hybrid
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next
incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
|
80574
|
2127
|
27
|
2026-04-25T14:28:50.804211+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127330804_m1.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next...
|
[{"role":"AXCheckBox","text [{"role":"AXCheckBox","text":"Wi‑Fi","depth":2,"bounds":{"left":0.79583335,"top":0.051666666,"width":0.093055554,"height":0.045555554},"automation_id":"controlcenter-wifi","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Focus","depth":2,"bounds":{"left":0.8958333,"top":0.044444446,"width":0.093055554,"height":0.06888889},"automation_id":"controlcenter-focus-modes","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.79583335,"top":0.09611111,"width":0.093055554,"height":0.045555554},"automation_id":"controlcenter-bluetooth","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"AirDrop","depth":2,"bounds":{"left":0.79583335,"top":0.14055556,"width":0.093055554,"height":0.045555554},"automation_id":"controlcenter-airdrop","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Stage Manager","depth":2,"bounds":{"left":0.90260416,"top":0.135,"width":0.029513888,"height":0.050555557},"automation_id":"controlcenter-stagemanager","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Screen Mirroring","depth":2,"bounds":{"left":0.9458333,"top":0.12444445,"width":0.043055557,"height":0.06888889},"automation_id":"controlcenter-screen-mirroring","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Display","depth":3,"bounds":{"left":0.80277777,"top":0.21166667,"width":0.029513888,"height":0.016666668},"role_description":"text"},{"role":"AXStaticText","text":"Sound","depth":2,"bounds":{"left":0.80277777,"top":0.29166666,"width":0.025694445,"height":0.016666668},"automation_id":"controlcenter-volume","role_description":"text"},{"role":"AXCheckBox","text":"Airplay Audio","depth":2,"bounds":{"left":0.9638889,"top":0.31333333,"width":0.018055556,"height":0.028888889},"automation_id":"controlcenter-airplay","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Music.app","depth":2,"bounds":{"left":0.8375,"top":0.39055556,"width":0.041666668,"height":0.016666668},"role_description":"text"},{"role":"AXButton","text":"play","depth":2,"bounds":{"left":0.9458333,"top":0.38444445,"width":0.018055556,"height":0.028888889},"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"next","depth":2,"bounds":{"left":0.9638889,"top":0.38444445,"width":0.018055556,"height":0.028888889},"role_description":"button","is_enabled":false}]...
|
-8871609275972961978
|
9172942166022350908
|
click
|
hybrid
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpsqlite3DOCKER• 881DEV (-zsh)-$82APP (-zsh)*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:26lukasstaff-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff2517:261777127176106_m1.jpg154999Apr1777127176816_ml.jpg10361725Apr17:261777127177994_m2.jpglukasstaff35484125Apr17:26lukasstaff14828425Apr17:261777127183656_m1.jpglukasstaff19624825Apr1777127185903_m1.jpg17:26lukasstaff103136251777127188928_m1.JPgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:26-rw-r--r--lukasstaff22072025Apr17:271777127204173_m1.jpglukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--24970625Apr17:271777127225353_m1.jpg-rw-r--r--lukasstaff1031901777127231085_m2.jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44]====[2026-04-2517:27:44]Screenpipe sync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J========================================[2026-04-2517:28:17JScreenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.90)/Volumes/Test/screenpipeexistsOK(6.0G)(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00sOm01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)1085(25100% <47O ₴4sqlite3Sat 25 Apr 17:28:50T81*5...
|
NULL
|
|
80573
|
2127
|
26
|
2026-04-25T14:28:50.443298+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127330443_m1.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠙
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠙","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ✓ 0m08s\n frames (5183 rows) ⠙","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.48402777,"top":0.033333335,"width":0.034027778,"height":0.017777778},"role_description":"text"}]...
|
-3583320597754472881
|
5424030696638217809
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ✓ 0m08s
frames (5183 rows) ⠙
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
80571
|
|
80572
|
2128
|
23
|
2026-04-25T14:28:49.740885+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127329740_m2.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
incarcerated meaningIncarcerared means vemo morson incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
-3152648525959532762
|
NULL
|
click
|
ocr
|
NULL
|
incarcerated meaningIncarcerared means vemo morson incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
80570
|
|
80570
|
2128
|
22
|
2026-04-25T14:28:48.392944+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127328392_m2.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next...
|
[{"role":"AXCheckBox","text [{"role":"AXCheckBox","text":"Wi‑Fi","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.04454787,"height":-0.037110925},"automation_id":"controlcenter-wifi","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Focus","depth":2,"bounds":{"left":0.69913566,"top":1.0,"width":0.04454787,"height":-0.031923413},"automation_id":"controlcenter-focus-modes","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.04454787,"height":-0.06903434},"automation_id":"controlcenter-bluetooth","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"AirDrop","depth":2,"automation_id":"controlcenter-airdrop","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Stage Manager","depth":2,"bounds":{"left":0.702377,"top":1.0,"width":0.01412899,"height":-0.09696722},"automation_id":"controlcenter-stagemanager","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Screen Mirroring","depth":2,"bounds":{"left":0.7230718,"top":1.0,"width":0.020611702,"height":-0.08938551},"automation_id":"controlcenter-screen-mirroring","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Display","depth":3,"role_description":"text"},{"role":"AXStaticText","text":"Sound","depth":2,"automation_id":"controlcenter-volume","role_description":"text"},{"role":"AXCheckBox","text":"Airplay Audio","depth":2,"automation_id":"controlcenter-airplay","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Music.app","depth":2,"role_description":"text"},{"role":"AXButton","text":"play","depth":2,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"next","depth":2,"role_description":"button","is_enabled":false}]...
|
-8871609275972961978
|
9172942166022350908
|
click
|
hybrid
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next
incarcerated meaning"carceral."or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
|
80571
|
2127
|
25
|
2026-04-25T14:28:47.393117+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127327393_m1.jpg...
|
PhpStorm
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp‹$0(25sqlite3APP (-zsh)DOCKER• 881DEV (-zsh)-$82*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:261777127176106_m1.Jpglukasstaff154999-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff25Apr17:261777127176816_ml.jpg10361725Apr17:26lukasstaff354841251777127177994_m2.jpgApr17:261777127183656_m1.jpglukasstaff14828425Apr17:261777127185903_m1. jpglukasstaff19624825Apr17:26lukasstaff103136251777127188928_m1.JPgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:26-rw-r--r--lukasstaff22072025Apr17:271777127204173_m1.jpglukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--24970625Apr17:271777127225353_m1.jpg-rw-r--r--lukasstaff1031901777127231085_m2.Jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny'.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44]====[2026-04-2517:27:44]Screenpipesync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSourceDB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J========================================[2026-04-2517:28:17JScreenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00s• 0m01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08s÷ UO ₴4100% <8Sat 25 Apr 17:28:47sqlite3T81*5...
|
NULL
|
5077521845943189152
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp‹$0(25sqlite3APP (-zsh)DOCKER• 881DEV (-zsh)-$82*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:261777127176106_m1.Jpglukasstaff154999-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff25Apr17:261777127176816_ml.jpg10361725Apr17:26lukasstaff354841251777127177994_m2.jpgApr17:261777127183656_m1.jpglukasstaff14828425Apr17:261777127185903_m1. jpglukasstaff19624825Apr17:26lukasstaff103136251777127188928_m1.JPgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:26-rw-r--r--lukasstaff22072025Apr17:271777127204173_m1.jpglukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--24970625Apr17:271777127225353_m1.jpg-rw-r--r--lukasstaff1031901777127231085_m2.Jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny'.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44]====[2026-04-2517:27:44]Screenpipesync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSourceDB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J========================================[2026-04-2517:28:17JScreenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00s• 0m01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08s÷ UO ₴4100% <8Sat 25 Apr 17:28:47sqlite3T81*5...
|
NULL
|
|
80569
|
2127
|
24
|
2026-04-25T14:28:44.360633+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127324360_m1.jpg...
|
Claude
|
Claude
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
More options for Reviewing recent conversation highlights
Mac aliases not recognized
More options for Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
More options for Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
More options for Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
More options for Linux SQLite UI for NAS
Claude API 500 internal server error
More options for Claude API 500 internal server error
Screenpipe query capabilities and usage
More options for Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
More options for eGPU compatibility with Mac mini and Studio
Relaunch to update v1.3883.0
Relaunch to update
v1.3883.0
Lukas Kovalik
Lukas Kovalik
Get apps and extensions
Definition of incarcerated
Definition of incarcerated
More options for Definition of incarcerated
Share chat
Claude finished the response
You said: incarcerated meaning
You said: incarcerated meaning
incarcerated meaning
20:12
Retry
Edit
Copy
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Incarcerated
means being imprisoned or confined in a jail or prison.
As an adjective:
"The incarcerated individuals awaited trial."
As a verb (to incarcerate):
"The court ordered him to be incarcerated for five years."
It comes from the Latin
incarcerare
—
in-
(into) +
carcer
(prison), which also gives us the word "carceral."
It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned" or "jailed."
Copy
Give positive feedback
Give negative feedback
Retry
Reply...
Reply...
Add files, connectors, and more
Model: Sonnet 4.6
Sonnet 4.6
Settings
Press and hold to record
Claude is AI and can make mistakes. Please double-check responses.
Claude is AI and can make mistakes. Please double-check responses....
|
[{"role":"AXLink","text":& [{"role":"AXLink","text":"Skip to content","depth":14,"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Skip to content","depth":15,"role_description":"text"},{"role":"AXStaticText","text":"Click to collapse","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"⌘B","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"Drag to resize","depth":16,"role_description":"text"},{"role":"AXButton","text":"Collapse sidebar","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Search","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chat","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Cowork","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Code","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"New chat ⌘N","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"New chat","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"⌘N","depth":17,"role_description":"text"},{"role":"AXButton","text":"Projects","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Artifacts","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Customize","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Pinned","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"Bulgarian citizenship application process for EU residents","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Bulgarian citizenship application process for EU residents","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Dawarich location tracking project","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Dawarich location tracking project","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Recents","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":true},{"role":"AXButton","text":"View all","depth":16,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 What is the best switch I can…","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 What is the best switch I can…","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Last swimming outing with Dani","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Last swimming outing with Dani","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"💬 Screen pipe. Is there ability…","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for 💬 Screen pipe. Is there ability…","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Definition of incarcerated","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Definition of incarcerated","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Chromecast remote volume buttons not working","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Chromecast remote volume buttons not working","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Salesforce API errors with Organization and FieldDefinition queries","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Salesforce API errors with Organization and FieldDefinition queries","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Daily activity summary from screenpipe data","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Daily activity summary from screenpipe data","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"MacBook unexpected restarts and kanji screen","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for MacBook unexpected restarts and kanji screen","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Security patch review and testing guidance","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Security patch review and testing guidance","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Food calorie values reference","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Food calorie values reference","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Tracking location history from last week","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Tracking location history from last week","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Screenpipe WAL processing when stopped","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Screenpipe WAL processing when stopped","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Reviewing recent conversation highlights","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Reviewing recent conversation highlights","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Mac aliases not recognized","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Mac aliases not recognized","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Boosteroid still recording despite ignored windows setting","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Boosteroid still recording despite ignored windows setting","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Missing JavaScript promise in authorization response","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Missing JavaScript promise in authorization response","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Linux SQLite UI for NAS","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Linux SQLite UI for NAS","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Claude API 500 internal server error","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Claude API 500 internal server error","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Screenpipe query capabilities and usage","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for Screenpipe query capabilities and usage","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"eGPU compatibility with Mac mini and Studio","depth":18,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"More options for eGPU compatibility with Mac mini and Studio","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Relaunch to update v1.3883.0","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Relaunch to update","depth":16,"role_description":"text"},{"role":"AXStaticText","text":"v1.3883.0","depth":16,"role_description":"text"},{"role":"AXPopUpButton","text":"Lukas Kovalik","depth":16,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Lukas Kovalik","depth":17,"role_description":"text"},{"role":"AXButton","text":"Get apps and extensions","depth":15,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Definition of incarcerated","depth":19,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Definition of incarcerated","depth":21,"role_description":"text"},{"role":"AXPopUpButton","text":"More options for Definition of incarcerated","depth":19,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Share chat","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Claude finished the response","depth":20,"role_description":"text"},{"role":"AXHeading","text":"You said: incarcerated meaning","depth":19,"role_description":"heading"},{"role":"AXStaticText","text":"You said: incarcerated meaning","depth":20,"role_description":"text"},{"role":"AXStaticText","text":"incarcerated meaning","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"20:12","depth":21,"role_description":"text"},{"role":"AXButton","text":"Retry","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Edit","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Copy","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXHeading","text":"Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.","depth":20,"role_description":"heading"},{"role":"AXStaticText","text":"Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.","depth":21,"role_description":"text"},{"role":"AXStaticText","text":"Incarcerated","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"means being imprisoned or confined in a jail or prison.","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"As an adjective:","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"\"The incarcerated individuals awaited trial.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"As a verb (to incarcerate):","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"\"The court ordered him to be incarcerated for five years.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"It comes from the Latin","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"incarcerare","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"—","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"in-","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"(into) +","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"carcer","depth":23,"role_description":"text"},{"role":"AXStaticText","text":"(prison), which also gives us the word \"carceral.\"","depth":22,"role_description":"text"},{"role":"AXStaticText","text":"It's often used in formal, legal, or policy contexts as a more neutral alternative to \"imprisoned\" or \"jailed.\"","depth":22,"role_description":"text"},{"role":"AXButton","text":"Copy","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Give positive feedback","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Give negative feedback","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Retry","depth":21,"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXTextArea","text":"Reply...","depth":24,"value":"Reply...","role_description":"text entry area","is_enabled":true,"is_focused":true,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Reply...","depth":27,"role_description":"text"},{"role":"AXPopUpButton","text":"Add files, connectors, and more","depth":26,"bounds":{"left":0.32777777,"top":0.0,"width":0.022222223,"height":0.035555556},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXPopUpButton","text":"Model: Sonnet 4.6","depth":26,"bounds":{"left":0.74027777,"top":0.0,"width":0.072222225,"height":0.035555556},"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Sonnet 4.6","depth":28,"bounds":{"left":0.74722224,"top":0.0,"width":0.048611112,"height":0.018888889},"role_description":"text"},{"role":"AXPopUpButton","text":"Settings","depth":25,"role_description":"pop-up button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Press and hold to record","depth":24,"bounds":{"left":0.81805557,"top":0.0,"width":0.022222223,"height":0.031111112},"role_description":"button","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXLink","text":"Claude is AI and can make mistakes. Please double-check responses.","depth":21,"bounds":{"left":0.4486111,"top":0.0,"width":0.26805556,"height":0.016666668},"role_description":"link","is_enabled":true,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"Claude is AI and can make mistakes. Please double-check responses.","depth":22,"bounds":{"left":0.4486111,"top":0.0,"width":0.26805556,"height":0.016666668},"role_description":"text"}]...
|
1610205116358932008
|
-3311380366794711878
|
visual_change
|
hybrid
|
NULL
|
Skip to content
Skip to content
Click to collapse
Skip to content
Skip to content
Click to collapse
⌘B
Drag to resize
Collapse sidebar
Search
Chat
Cowork
Code
New chat ⌘N
New chat
⌘N
Projects
Artifacts
Customize
Pinned
Bulgarian citizenship application process for EU residents
More options for Bulgarian citizenship application process for EU residents
Dawarich location tracking project
More options for Dawarich location tracking project
Recents
View all
💬 What is the best switch I can…
More options for 💬 What is the best switch I can…
Last swimming outing with Dani
More options for Last swimming outing with Dani
💬 Screen pipe. Is there ability…
More options for 💬 Screen pipe. Is there ability…
Definition of incarcerated
More options for Definition of incarcerated
Chromecast remote volume buttons not working
More options for Chromecast remote volume buttons not working
Salesforce API errors with Organization and FieldDefinition queries
More options for Salesforce API errors with Organization and FieldDefinition queries
Daily activity summary from screenpipe data
More options for Daily activity summary from screenpipe data
MacBook unexpected restarts and kanji screen
More options for MacBook unexpected restarts and kanji screen
Security patch review and testing guidance
More options for Security patch review and testing guidance
Food calorie values reference
More options for Food calorie values reference
Tracking location history from last week
More options for Tracking location history from last week
Screenpipe WAL processing when stopped
More options for Screenpipe WAL processing when stopped
Reviewing recent conversation highlights
More options for Reviewing recent conversation highlights
Mac aliases not recognized
More options for Mac aliases not recognized
Boosteroid still recording despite ignored windows setting
More options for Boosteroid still recording despite ignored windows setting
Missing JavaScript promise in authorization response
More options for Missing JavaScript promise in authorization response
Linux SQLite UI for NAS
More options for Linux SQLite UI for NAS
Claude API 500 internal server error
More options for Claude API 500 internal server error
Screenpipe query capabilities and usage
More options for Screenpipe query capabilities and usage
eGPU compatibility with Mac mini and Studio
More options for eGPU compatibility with Mac mini and Studio
Relaunch to update v1.3883.0
Relaunch to update
v1.3883.0
Lukas Kovalik
Lukas Kovalik
Get apps and extensions
Definition of incarcerated
Definition of incarcerated
More options for Definition of incarcerated
Share chat
Claude finished the response
You said: incarcerated meaning
You said: incarcerated meaning
incarcerated meaning
20:12
Retry
Edit
Copy
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Claude responded: Incarcerated means being imprisoned or confined in a jail or prison.
Incarcerated
means being imprisoned or confined in a jail or prison.
As an adjective:
"The incarcerated individuals awaited trial."
As a verb (to incarcerate):
"The court ordered him to be incarcerated for five years."
It comes from the Latin
incarcerare
—
in-
(into) +
carcer
(prison), which also gives us the word "carceral."
It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned" or "jailed."
Copy
Give positive feedback
Give negative feedback
Retry
Reply...
Reply...
Add files, connectors, and more
Model: Sonnet 4.6
Sonnet 4.6
Settings
Press and hold to record
Claude is AI and can make mistakes. Please double-check responses.
Claude is AI and can make mistakes. Please double-check responses.
iTerm2ShellEditViewSessionScriptsProfilesWindowHelp25sqlite3APP (-zsh)DOCKER• 881DEV (-zsh)-$82*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:261777127176106_m1.Jpglukasstaff154999-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff25Apr17:261777127176816_ml.jpg10361725Apr17:26lukasstaff354841251777127177994_m2.jpgApr17:261777127183656_m1.jpglukasstaff14828425Apr17:261777127185903_m1. jpglukasstaff19624825Apr17:26lukasstaff103136251777127188928_m1.JpgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:26-rw-r--r--lukasstaff22072025Apr17:271777127204173_m1.jpglukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--24970625Apr17:271777127225353_m1.jpg-rw-r--r--lukasstaff1031901777127231085_m2.jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny'.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44]====[2026-04-2517:27:44]Screenpipesync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSourceDB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J========================================[2026-04-2517:28:17JScreenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00s• 0m01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08s0 84100% <78Sat 25 Apr 17:28:44Bluetoothsqlite3DevicesLukas's Magic Mouse78% •LakyLak bose dcso llM720 TriathlonMagic KeyboardMagic Keyboard with Numeric Keypadsoundcore AeroClipSoundcore Life Dot 2 NCBluetooth Settings......
|
80567
|
|
80568
|
2128
|
21
|
2026-04-25T14:28:43.639820+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127323639_m2.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
incarcerated meaningIncarcerared means vemo morson incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
-3152648525959532762
|
NULL
|
click
|
ocr
|
NULL
|
incarcerated meaningIncarcerared means vemo morson incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
80566
|
|
80567
|
2127
|
23
|
2026-04-25T14:28:43.298251+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127323298_m1.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next...
|
[{"role":"AXCheckBox","text [{"role":"AXCheckBox","text":"Wi‑Fi","depth":2,"bounds":{"left":0.79583335,"top":0.051666666,"width":0.093055554,"height":0.045555554},"automation_id":"controlcenter-wifi","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Focus","depth":2,"bounds":{"left":0.8958333,"top":0.044444446,"width":0.093055554,"height":0.06888889},"automation_id":"controlcenter-focus-modes","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.79583335,"top":0.09611111,"width":0.0875,"height":0.045555554},"automation_id":"controlcenter-bluetooth","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"AirDrop","depth":2,"bounds":{"left":0.79583335,"top":0.14055556,"width":0.093055554,"height":0.045555554},"automation_id":"controlcenter-airdrop","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Stage Manager","depth":2,"bounds":{"left":0.90260416,"top":0.135,"width":0.029513888,"height":0.050555557},"automation_id":"controlcenter-stagemanager","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Screen Mirroring","depth":2,"bounds":{"left":0.9458333,"top":0.12444445,"width":0.043055557,"height":0.06888889},"automation_id":"controlcenter-screen-mirroring","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Display","depth":3,"bounds":{"left":0.80277777,"top":0.21166667,"width":0.029513888,"height":0.016666668},"role_description":"text"},{"role":"AXStaticText","text":"Sound","depth":2,"bounds":{"left":0.80277777,"top":0.29166666,"width":0.025694445,"height":0.016666668},"automation_id":"controlcenter-volume","role_description":"text"},{"role":"AXCheckBox","text":"Airplay Audio","depth":2,"bounds":{"left":0.9638889,"top":0.31333333,"width":0.018055556,"height":0.028888889},"automation_id":"controlcenter-airplay","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Music.app","depth":2,"bounds":{"left":0.8375,"top":0.39055556,"width":0.041666668,"height":0.016666668},"role_description":"text"},{"role":"AXButton","text":"play","depth":2,"bounds":{"left":0.9458333,"top":0.38444445,"width":0.018055556,"height":0.028888889},"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"next","depth":2,"bounds":{"left":0.9638889,"top":0.38444445,"width":0.018055556,"height":0.028888889},"role_description":"button","is_enabled":false}]...
|
-8871609275972961978
|
9172942166022350908
|
click
|
hybrid
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next
BoosteroidDOCKER• ₴1DEV (-zsh)-rw-r--r-rW-r--n-rw-r--r-rw-r--r-rw-r--r-rw-r--r-rw-r--r-rw-r--r-rw-r--r-rw-r--r-rw-r--rlukas@Lu[2026-04[2026-04[2026-04BOJOSTEROID BetaUPDATE[+00m00s[2026-04Lukas@Lu[2026-04[2026-04[2026-04[+00m00s[+00m01s[+00m01sSTELLARACCESSDEULTRA PRO 4 MONENTER A NELEARN MOREMY GAMESLIBRARYINSTALLAGEON SALE RESLicense Required[+00mO2s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)• 0m08s$82sqlite3APP (-zsh)83Search for..screenpipe"xUpdate availableGet the latest improvements for better performance.What's new[1.11.9] - 2026.04.20Fixed an issue with microphoneFixed an issue with gamepad connectivity in certain casesFixed an issue with touchpad scrolling behaviorFixed an issue with selecting the audio output deviceFixed an issue with mouse sensitivity settingsMinor Ul improvementsThanks to everyone who reports bugs and helps improve the client-ON SALELicense RequiredUpdating, please waitATARISOTHE ANNIVERSARY CELEBRATIONLicense RequiredLicense Required(25O $4100% CWi-FiMartinaBluetoothOnAirDropContacts OnlyDisplaySoundSat 25 Apr 17:28:43FocusStageManagerScreenMirroringMusic.apprmsRecentRolls COa5t9nYCOONDelixeLicense Required...
|
NULL
|
|
80566
|
2128
|
20
|
2026-04-25T14:28:42.865676+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127322865_m2.jpg...
|
Control Centre
|
Control Centre
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next...
|
[{"role":"AXCheckBox","text [{"role":"AXCheckBox","text":"Wi‑Fi","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.04454787,"height":-0.037110925},"automation_id":"controlcenter-wifi","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Focus","depth":2,"bounds":{"left":0.69913566,"top":1.0,"width":0.04454787,"height":-0.031923413},"automation_id":"controlcenter-focus-modes","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"Bluetooth","depth":2,"bounds":{"left":0.6512633,"top":1.0,"width":0.041888297,"height":-0.06903434},"automation_id":"controlcenter-bluetooth","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXCheckBox","text":"AirDrop","depth":2,"automation_id":"controlcenter-airdrop","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Stage Manager","depth":2,"bounds":{"left":0.702377,"top":1.0,"width":0.01412899,"height":-0.09696722},"automation_id":"controlcenter-stagemanager","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXButton","text":"Screen Mirroring","depth":2,"bounds":{"left":0.7230718,"top":1.0,"width":0.020611702,"height":-0.08938551},"automation_id":"controlcenter-screen-mirroring","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Display","depth":3,"role_description":"text"},{"role":"AXStaticText","text":"Sound","depth":2,"automation_id":"controlcenter-volume","role_description":"text"},{"role":"AXCheckBox","text":"Airplay Audio","depth":2,"automation_id":"controlcenter-airplay","role_description":"toggle button","subrole":"AXToggle","is_enabled":true},{"role":"AXStaticText","text":"Music.app","depth":2,"role_description":"text"},{"role":"AXButton","text":"play","depth":2,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"next","depth":2,"role_description":"button","is_enabled":false}]...
|
-8871609275972961978
|
9172942166022350908
|
click
|
hybrid
|
NULL
|
Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Wi‑Fi
Focus
Bluetooth
AirDrop
Stage Manager
Screen Mirroring
Display
Sound
Airplay Audio
Music.app
play
next
incarcerated meaningIncarcerared means vemo morsoned or connnee n alal or ouison.As an adjective: "The incarcerated individuals awaited trial." As a verb (to incarcerate): "Thecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
NULL
|
|
80565
|
2127
|
22
|
2026-04-25T14:28:29.200424+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127309200_m1.jpg...
|
PhpStorm
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
ClaudeFileEditViewWindowHelp(25100% Csqlite3APP (- ClaudeFileEditViewWindowHelp(25100% Csqlite3APP (-zsh)DOCKER• 881DEV (-zsh)$82*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:261777127176106_m1.Jpglukasstaff154999-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff25Apr17:261777127176816_ml.jpg10361725Apr17:26lukasstaff1777127177994_m2.jpg35484125Apr17:26lukasstaff14828425Apr17:261777127183656_m1.jpg1777127185903_m1. jpglukasstaff19624825Apr17:26lukasstaff103136251777127188928_m1.jpgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:261777127204173_m1.jpg-rw-r--r--lukasstaff22072025Apr17:27lukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--2497061777127225353_m1.jpg-rw-r--r--lukasstaff10319025Apr 17:271777127231085_m2.jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44]Screenpipesync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J=======================z================|[2026-04-2517:28:17]Screenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00sOm01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08sO ₴4sqlite3Sat 25 Apr 17:28:291881*5...
|
NULL
|
-6959126926942475653
|
NULL
|
visual_change
|
ocr
|
NULL
|
ClaudeFileEditViewWindowHelp(25100% Csqlite3APP (- ClaudeFileEditViewWindowHelp(25100% Csqlite3APP (-zsh)DOCKER• 881DEV (-zsh)$82*3screenpipe"-rw-r--r--1lukasstaff18574925Apr17:261777127176106_m1.Jpglukasstaff154999-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff25Apr17:261777127176816_ml.jpg10361725Apr17:26lukasstaff1777127177994_m2.jpg35484125Apr17:26lukasstaff14828425Apr17:261777127183656_m1.jpg1777127185903_m1. jpglukasstaff19624825Apr17:26lukasstaff103136251777127188928_m1.jpgApr17:26-rw-r--r--lukasstaff26534425Apr1777127200868_m2.jpg17:261777127204173_m1.jpg-rw-r--r--lukasstaff22072025Apr17:27lukasstaff25Apr17:271777127222352_m1.jpg-rw-r--r--2497061777127225353_m1.jpg-rw-r--r--lukasstaff10319025Apr 17:271777127231085_m2.jpglukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44]Screenpipesync startingfor: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted at /Volumes/Test/screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-25 17:28:17J=======================z================|[2026-04-2517:28:17]Screenpipe sync starting for: 2026-04-24(2026-04-2517:28:17J====[+00m00s] • Preflight checksSource DB:NAS mount:Archive DB:Data dir:OKOK(7.9G)/Volumes/Test/screenpipeexists(6.0G)OK(250 files, 143M)[+00m01s] • Counting source rows for 2026-04-24frames:elements:ui_events:ocr_text:meetings:5183297071611615082[+00m01s] • Initialising tables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00sOm01s• Om00s[+00m02s] • Syncing data for 2026-04-24video_chunksframes (5183 rows)/ 0m08sO ₴4sqlite3Sat 25 Apr 17:28:291881*5...
|
80564
|
|
80564
|
2127
|
21
|
2026-04-25T14:28:26.131219+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127306131_m1.jpg...
|
Alfred
|
Alfred
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
vb
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"vb","depth":1,"bounds":{"left":0.26180556,"top":0.16777778,"width":0.4763889,"height":0.05888889},"value":"vb","help_text":"Alfred Search","role_description":"text field","is_enabled":true,"is_focused":true}]...
|
226991890077601213
|
226991890077601213
|
visual_change
|
hybrid
|
NULL
|
vb
ClaudeFileEditViewWindowHelpsqlite3APP (-zsh)(2 vb
ClaudeFileEditViewWindowHelpsqlite3APP (-zsh)(25O $4100% CSat 25 Apr 17:28:26181DOCKER• 881DEV (-zsh)₴2-rw-r--r--1lukasstaff6548625Apr17:26Apr1777127171385_m2.jpglukasstaff1857492517:261777127176106_m1.jpg-rw-r--r---rw-r--r---rw-r--r---rw-r--r-lukasstaff15499925Apr17:26lukasstaff10361725Apr1777127176816_m1.jpg17•261777127177001 ml inalukasstaff35484125Apr11lukasstaff14828425Apr17lukasstaff19624825vboApr17-rw-r--r--lukasstaff10313625Apr-W-r--r-=1lukasstaff26534425Apr1-rw-r-lukasstaff22072025Apr-rw-r--r--lukasstaff17views-/jiminny/app/storage/framework/views24970625Apr17-rw-r--r--lukasstaff10319025Apr17lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny[2026-04-2517:27:44][2026-04-2517:27:44]Screenpipe sync startirvendor~/jiminny/app/vendor[2026-04-2517:27:44]*3screenpipe"[+00m00s]PreflightchecksSource DB:OK[2026-04-25 17:27:44](7.9G)ERROR: NAS not mounted.ukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/..[2026-04-2517:28:17][2026-04-2517:28:17]Screenpipe sync startir[2026-04-25 17:28:17][+00m00s]• Preflight checksSource DB:NAS mount:Archive DB:Data dir:OK(7.9G)OK/Volumes/exists(6.0G)OK(250 file:[+00m01s] • Counting source rowsfor 2026-04-24frames:elements:ui_events:ocr_text:meetings:51832970716116150820030400001ieW4VIAU.png~/jiminny/app/storage/app/6473c918-d8db-4ded-a52b-4febfd7b/c02/avatars/0030400001ieW4VIAU.png282StaleRecord ValidatorTest.php-/jiminny/app/tests/Unit/Services/Crm/CrmObjects/Validators/StaleRecordValidatorTest.phpValidators-/jiminny/app/tests/Unit/Services/Crm/CrmObjects/ValidatorsuseRecentlyVisited.js-/jiminny/app/front-end/src/components/layout/Sidebar/QuickSearch/useRecentlyVisited.jsStaleRecordValidator.php~/jiminny/app/app/Services/Crm/CrmObjects/Validators/StaleRecordValidator.phpValidators~/jiminny/app/app/Services/Crm/CrmObjects/Validatorsvuex.esm-bundler-DqfufJ2-.js~/jiminny/app/public/vue-assets/assets/vuex.esm-bundler-DqfufJ2-.js[+00m01s] • Initialisingtables, indexes, FTScreating tablescreating indexescreating FTS tables• Om00s• 0m01s• OmOOs[+00mO2s] • Syncing data for 2026-04-24video_chunks283₴84*5₴6$87888sqlite3...
|
NULL
|
|
80563
|
2128
|
19
|
2026-04-25T14:28:25.030600+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127305030_m2.jpg...
|
Alfred
|
Alfred
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Alfred Search Field
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Alfred Search Field","depth":1,"help_text":"Alfred Search","role_description":"text field","is_enabled":true,"is_focused":true}]...
|
7926243118367575
|
7570943109877468232
|
visual_change
|
hybrid
|
NULL
|
Alfred Search Field
incarcerated meaningIncarcerar Alfred Search Field
incarcerated meaningIncarcerared means veme morsoned or connnee n a lal or orison.As an adiective: "he Incarcerated individuas awaited tral" As a verb (to incarcerate : "hecourt ordered him to be incarcerated for five years."It comes from the Latin incarcerare — in- (into) + carcer (prison), which also gives us the word"carceral."It's often used in formal, legal, or policy contexts as a more neutral alternative to "imprisoned"or "jailed."Reply…..Sonnet 4.6Claude is Al and can make mistakes. Please double-check responses....
|
80561
|
|
80562
|
2127
|
20
|
2026-04-25T14:28:23.079214+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127303079_m1.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠧
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠧","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠧","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.48402777,"top":0.033333335,"width":0.034027778,"height":0.017777778},"role_description":"text"}]...
|
-1514406787683930169
|
5424030696638217809
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠧
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
80560
|
|
80560
|
2127
|
19
|
2026-04-25T14:28:20.030250+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127300030_m1.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠸
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠸","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠸","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.48402777,"top":0.033333335,"width":0.034027778,"height":0.017777778},"role_description":"text"}]...
|
-1619348462462123901
|
5712261072789929553
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠸
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
NULL
|
|
80561
|
2128
|
18
|
2026-04-25T14:28:19.987427+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127299987_m2.jpg...
|
iTerm2
|
sqlite3
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠸
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠸","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:28:17] ========================================\n[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:28:17] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n NAS mount: OK /Volumes/Test/screenpipe\n Archive DB: exists (6.0G)\n Data dir: OK (250 files, 143M)\n\n[+00m01s] ▶ Counting source rows for 2026-04-24\n frames: 5183\n elements: 297071\n ui_events: 6116\n ocr_text: 1508\n meetings: 2\n\n[+00m01s] ▶ Initialising tables, indexes, FTS\n creating tables ✓ 0m00s\n creating indexes ✓ 0m01s\n creating FTS tables ✓ 0m00s\n\n[+00m02s] ▶ Syncing data for 2026-04-24\n video_chunks ⠸","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"sqlite3","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"sqlite3","depth":1,"bounds":{"left":0.50199467,"top":1.0,"width":0.016289894,"height":-0.02394259},"role_description":"text"}]...
|
-1619348462462123901
|
5712261072789929553
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:28:17] ========================================
[2026-04-25 17:28:17] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:28:17] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
NAS mount: OK /Volumes/Test/screenpipe
Archive DB: exists (6.0G)
Data dir: OK (250 files, 143M)
[+00m01s] ▶ Counting source rows for 2026-04-24
frames: 5183
elements: 297071
ui_events: 6116
ocr_text: 1508
meetings: 2
[+00m01s] ▶ Initialising tables, indexes, FTS
creating tables ✓ 0m00s
creating indexes ✓ 0m01s
creating FTS tables ✓ 0m00s
[+00m02s] ▶ Syncing data for 2026-04-24
video_chunks ⠸
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
sqlite3
Close Tab
⌥⌘1
sqlite3...
|
NULL
|
|
80559
|
2127
|
18
|
2026-04-25T14:28:17.063352+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127297063_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-3998809946574928421
|
5712261622545677905
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80558
|
|
80558
|
2127
|
17
|
2026-04-25T14:28:15.721047+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127295721_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24\n[2026-04-25 17:27:44] ========================================\n[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24\n[2026-04-25 17:27:44] ========================================\n\n[+00m00s] ▶ Preflight checks\n Source DB: OK (7.9G)\n[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
4966622403227329016
|
5712261622545677905
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24
[2026-04-25 17:27:44] ========================================
[2026-04-25 17:27:44] Screenpipe sync starting for: 2026-04-24
[2026-04-25 17:27:44] ========================================
[+00m00s] ▶ Preflight checks
Source DB: OK (7.9G)
[2026-04-25 17:27:44] ERROR: NAS not mounted at /Volumes/Test/screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
NULL
|
|
80557
|
2127
|
16
|
2026-04-25T14:28:13.471581+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127293471_m1.jpg...
|
Finder
|
screenpipe
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
app
Yesterday at 20:24
186 KB
Folder
#recycle
Yesterday at 12:14
37,46 GB
Folder
data
Yesterday at 12:07
6,18 GB
Folder
2026-04-22
Yesterday at 12:08
265,5 MB
Folder
2026-04-23
Yesterday at 12:07
171,8 MB
Folder
2026-04-20
22 Apr 2026 at 18:44
525,4 MB
Folder
2026-04-21
22 Apr 2026 at 9:16
450,8 MB
Folder
2026-04-17
18 Apr 2026 at 13:35
699,6 MB
Folder
2026-04-16
17 Apr 2026 at 8:57
837,2 MB
Folder
2026-04-15
16 Apr 2026 at 9:13
2,15 GB
Folder
2026-04-14
15 Apr 2026 at 9:59
1,09 GB
Folder
archive.db
Yesterday at 9:35
6,48 GB
Document
db.sqlite
22 Apr 2026 at 20:35
6,64 GB
Document
screenpipe_sync.sh
18 Apr 2026 at 18:35
15 KB
Terminal scripts
app_settings.json
18 Apr 2026 at 17:42
31 bytes
JSON...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"role_description":"text"},{"role":"AXButton","text":"Eject","depth":6,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Network","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"role_description":"text"},{"role":"AXTextField","text":"app","depth":7,"value":"app","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 20:24","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"186 KB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"#recycle","depth":7,"value":"#recycle","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:14","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"37,46 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"data","depth":7,"value":"data","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:07","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,18 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-22","depth":7,"value":"2026-04-22","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:08","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"265,5 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-23","depth":7,"value":"2026-04-23","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:07","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"171,8 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-20","depth":7,"value":"2026-04-20","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 18:44","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"525,4 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-21","depth":7,"value":"2026-04-21","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 9:16","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"450,8 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-17","depth":7,"value":"2026-04-17","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 13:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"699,6 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-16","depth":7,"value":"2026-04-16","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"17 Apr 2026 at 8:57","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"837,2 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-15","depth":7,"value":"2026-04-15","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 Apr 2026 at 9:13","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"2,15 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-14","depth":7,"value":"2026-04-14","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 Apr 2026 at 9:59","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"1,09 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"archive.db","depth":7,"value":"archive.db","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 9:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,48 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Document","depth":7,"role_description":"text"},{"role":"AXTextField","text":"db.sqlite","depth":7,"value":"db.sqlite","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 20:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,64 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Document","depth":7,"role_description":"text"},{"role":"AXTextField","text":"screenpipe_sync.sh","depth":7,"value":"screenpipe_sync.sh","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 18:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"15 KB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Terminal scripts","depth":7,"role_description":"text"},{"role":"AXTextField","text":"app_settings.json","depth":7,"value":"app_settings.json","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 17:42","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"31 bytes","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"JSON","depth":7,"role_description":"text"}]...
|
5255368364231135135
|
-2638387574133686333
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
app
Yesterday at 20:24
186 KB
Folder
#recycle
Yesterday at 12:14
37,46 GB
Folder
data
Yesterday at 12:07
6,18 GB
Folder
2026-04-22
Yesterday at 12:08
265,5 MB
Folder
2026-04-23
Yesterday at 12:07
171,8 MB
Folder
2026-04-20
22 Apr 2026 at 18:44
525,4 MB
Folder
2026-04-21
22 Apr 2026 at 9:16
450,8 MB
Folder
2026-04-17
18 Apr 2026 at 13:35
699,6 MB
Folder
2026-04-16
17 Apr 2026 at 8:57
837,2 MB
Folder
2026-04-15
16 Apr 2026 at 9:13
2,15 GB
Folder
2026-04-14
15 Apr 2026 at 9:59
1,09 GB
Folder
archive.db
Yesterday at 9:35
6,48 GB
Document
db.sqlite
22 Apr 2026 at 20:35
6,64 GB
Document
screenpipe_sync.sh
18 Apr 2026 at 18:35
15 KB
Terminal scripts
app_settings.json
18 Apr 2026 at 17:42
31 bytes
JSON...
|
80556
|
|
80556
|
2127
|
15
|
2026-04-25T14:28:13.077474+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127293077_m1.jpg...
|
Finder
|
screenpipe
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
app
Yesterday at 20:24
186 KB
Folder
#recycle
Yesterday at 12:14
37,46 GB
Folder
data
Yesterday at 12:07
6,18 GB
Folder
2026-04-22
Yesterday at 12:08
265,5 MB
Folder
2026-04-23
Yesterday at 12:07
171,8 MB
Folder
2026-04-20
22 Apr 2026 at 18:44
525,4 MB
Folder
2026-04-21
22 Apr 2026 at 9:16
450,8 MB
Folder
2026-04-17
18 Apr 2026 at 13:35
699,6 MB
Folder
2026-04-16
17 Apr 2026 at 8:57
837,2 MB
Folder
2026-04-15
16 Apr 2026 at 9:13
2,15 GB
Folder
2026-04-14
15 Apr 2026 at 9:59
1,09 GB
Folder
archive.db
Yesterday at 9:35
6,48 GB
Document
db.sqlite
22 Apr 2026 at 20:35
6,64 GB
Document
screenpipe_sync.sh
18 Apr 2026 at 18:35
15 KB
Terminal scripts
app_settings.json
18 Apr 2026 at 17:42
31 bytes
JSON
screenpipe.db
13 Apr 2026 at 17:21
Zero bytes
Document
pipes
11 Apr 2026 at 16:51
13 KB
Folder
Name
Date Modified
Size
Kind
17 items, 1,99 TB available
screenpipe...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"role_description":"text"},{"role":"AXButton","text":"Eject","depth":6,"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Network","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"role_description":"text"},{"role":"AXTextField","text":"app","depth":7,"value":"app","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 20:24","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"186 KB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"#recycle","depth":7,"value":"#recycle","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:14","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"37,46 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"data","depth":7,"value":"data","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:07","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,18 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-22","depth":7,"value":"2026-04-22","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:08","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"265,5 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-23","depth":7,"value":"2026-04-23","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 12:07","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"171,8 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-20","depth":7,"value":"2026-04-20","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 18:44","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"525,4 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-21","depth":7,"value":"2026-04-21","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 9:16","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"450,8 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-17","depth":7,"value":"2026-04-17","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 13:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"699,6 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-16","depth":7,"value":"2026-04-16","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"17 Apr 2026 at 8:57","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"837,2 MB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-15","depth":7,"value":"2026-04-15","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"16 Apr 2026 at 9:13","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"2,15 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"2026-04-14","depth":7,"value":"2026-04-14","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"15 Apr 2026 at 9:59","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"1,09 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXTextField","text":"archive.db","depth":7,"value":"archive.db","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"Yesterday at 9:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,48 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Document","depth":7,"role_description":"text"},{"role":"AXTextField","text":"db.sqlite","depth":7,"value":"db.sqlite","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"22 Apr 2026 at 20:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"6,64 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Document","depth":7,"role_description":"text"},{"role":"AXTextField","text":"screenpipe_sync.sh","depth":7,"value":"screenpipe_sync.sh","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 18:35","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"15 KB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Terminal scripts","depth":7,"role_description":"text"},{"role":"AXTextField","text":"app_settings.json","depth":7,"value":"app_settings.json","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"18 Apr 2026 at 17:42","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"31 bytes","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"JSON","depth":7,"role_description":"text"},{"role":"AXTextField","text":"screenpipe.db","depth":7,"value":"screenpipe.db","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"13 Apr 2026 at 17:21","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Zero bytes","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Document","depth":7,"role_description":"text"},{"role":"AXTextField","text":"pipes","depth":7,"value":"pipes","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"11 Apr 2026 at 16:51","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"13 KB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Folder","depth":7,"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"17 items, 1,99 TB available","depth":2,"automation_id":"_NS:34","role_description":"text"},{"role":"AXStaticText","text":"screenpipe","depth":1,"role_description":"text"}]...
|
1207514645042145127
|
-3214848464949280893
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
app
Yesterday at 20:24
186 KB
Folder
#recycle
Yesterday at 12:14
37,46 GB
Folder
data
Yesterday at 12:07
6,18 GB
Folder
2026-04-22
Yesterday at 12:08
265,5 MB
Folder
2026-04-23
Yesterday at 12:07
171,8 MB
Folder
2026-04-20
22 Apr 2026 at 18:44
525,4 MB
Folder
2026-04-21
22 Apr 2026 at 9:16
450,8 MB
Folder
2026-04-17
18 Apr 2026 at 13:35
699,6 MB
Folder
2026-04-16
17 Apr 2026 at 8:57
837,2 MB
Folder
2026-04-15
16 Apr 2026 at 9:13
2,15 GB
Folder
2026-04-14
15 Apr 2026 at 9:59
1,09 GB
Folder
archive.db
Yesterday at 9:35
6,48 GB
Document
db.sqlite
22 Apr 2026 at 20:35
6,64 GB
Document
screenpipe_sync.sh
18 Apr 2026 at 18:35
15 KB
Terminal scripts
app_settings.json
18 Apr 2026 at 17:42
31 bytes
JSON
screenpipe.db
13 Apr 2026 at 17:21
Zero bytes
Document
pipes
11 Apr 2026 at 16:51
13 KB
Folder
Name
Date Modified
Size
Kind
17 items, 1,99 TB available
screenpipe...
|
NULL
|
|
80555
|
2128
|
17
|
2026-04-25T14:28:05.908546+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127285908_m2.jpg...
|
Finder
|
DXP4800PLUS-B5F
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Youtube
--
--
Sharepoint
Work
--
--
Sharepoint
Test
eject
--
--
Sharepoint
screenpipe
--
--
Sharepoint
personal_folder
--
--
Sharepoint
Music
--
--
Sharepoint
Movies
--
--
Sharepoint
Media
--
--
Sharepoint
Marti
--
--
Sharepoint
Google
--
--
Sharepoint
games
--
--
Sharepoint
Family tree documents
--
--
Sharepoint
ebooks
--
--
Sharepoint
Documents
--
--
Sharepoint
docker
--
--
Sharepoint
BT
--
--
Sharepoint
bookdrop
--
--
Sharepoint
Backup
--
--
Sharepoint
Audiobooks
--
--
Sharepoint
Apps
--
--
Sharepoint
Name
Date Modified
Size
Kind
Connected as: Adm1n
Disconnect...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"bounds":{"left":0.07446808,"top":0.1452514,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"bounds":{"left":0.082446806,"top":0.16520351,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"bounds":{"left":0.082446806,"top":0.18754987,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"bounds":{"left":0.082446806,"top":0.20989625,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"bounds":{"left":0.082446806,"top":0.23224261,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"bounds":{"left":0.082446806,"top":0.254589,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"bounds":{"left":0.082446806,"top":0.27693537,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"bounds":{"left":0.082446806,"top":0.29928172,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"bounds":{"left":0.07446808,"top":0.3272147,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"bounds":{"left":0.082446806,"top":0.3471668,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"bounds":{"left":0.082446806,"top":0.36951315,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"bounds":{"left":0.07446808,"top":0.39744613,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"bounds":{"left":0.082446806,"top":0.41739824,"width":0.043218084,"height":0.012769354},"role_description":"text"},{"role":"AXButton","text":"Eject","depth":6,"bounds":{"left":0.1263298,"top":0.41899443,"width":0.0043218085,"height":0.009577015},"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Network","depth":6,"bounds":{"left":0.082446806,"top":0.43974462,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"bounds":{"left":0.07446808,"top":0.46767756,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"bounds":{"left":0.082446806,"top":0.48762968,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"bounds":{"left":0.082446806,"top":0.509976,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"bounds":{"left":0.082446806,"top":0.5323224,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"bounds":{"left":0.082446806,"top":0.5546688,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"bounds":{"left":0.082446806,"top":0.57701516,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"bounds":{"left":0.082446806,"top":0.59936154,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"bounds":{"left":0.082446806,"top":0.6217079,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"bounds":{"left":0.082446806,"top":0.6440543,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"bounds":{"left":0.15259309,"top":0.17238627,"width":0.011968086,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"bounds":{"left":0.24634309,"top":0.17238627,"width":0.025930852,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"bounds":{"left":0.30651596,"top":0.17238627,"width":0.008976064,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"bounds":{"left":0.3387633,"top":0.17238627,"width":0.00930851,"height":0.011173184},"role_description":"text"},{"role":"AXTextField","text":"Youtube","depth":7,"bounds":{"left":0.15259309,"top":0.19553073,"width":0.019281914,"height":0.012769354},"value":"Youtube","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.19553073,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.19553073,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.19553073,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Work","depth":7,"bounds":{"left":0.15259309,"top":0.21149242,"width":0.013297873,"height":0.012769354},"value":"Work","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.21149242,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.21149242,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.21149242,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Test","depth":7,"bounds":{"left":0.15259309,"top":0.22745411,"width":0.011303191,"height":0.012769354},"value":"Test","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXButton","text":"eject","depth":7,"bounds":{"left":0.23803191,"top":0.22745411,"width":0.004488032,"height":0.011971269},"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.22745411,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.22745411,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.22745411,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"screenpipe","depth":7,"bounds":{"left":0.15259309,"top":0.2434158,"width":0.025265958,"height":0.012769354},"value":"screenpipe","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":true},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.2434158,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.2434158,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.2434158,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"personal_folder","depth":7,"bounds":{"left":0.15259309,"top":0.25937748,"width":0.034242023,"height":0.012769354},"value":"personal_folder","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.25937748,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.25937748,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.25937748,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Music","depth":7,"bounds":{"left":0.15259309,"top":0.2753392,"width":0.01462766,"height":0.012769354},"value":"Music","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.2753392,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.2753392,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.2753392,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Movies","depth":7,"bounds":{"left":0.15259309,"top":0.29130086,"width":0.016954787,"height":0.012769354},"value":"Movies","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.29130086,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.29130086,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.29130086,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Media","depth":7,"bounds":{"left":0.15259309,"top":0.30726257,"width":0.014960106,"height":0.012769354},"value":"Media","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.30726257,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.30726257,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.30726257,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Marti","depth":7,"bounds":{"left":0.15259309,"top":0.32322428,"width":0.013297873,"height":0.012769354},"value":"Marti","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.32322428,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.32322428,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.32322428,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Google","depth":7,"bounds":{"left":0.15259309,"top":0.33918595,"width":0.017287234,"height":0.012769354},"value":"Google","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.33918595,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.33918595,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.33918595,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"games","depth":7,"bounds":{"left":0.15259309,"top":0.35514766,"width":0.016289894,"height":0.012769354},"value":"games","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.35514766,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.35514766,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.35514766,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Family tree documents","depth":7,"bounds":{"left":0.15259309,"top":0.37110934,"width":0.048537236,"height":0.012769354},"value":"Family tree documents","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.37110934,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.37110934,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.37110934,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"ebooks","depth":7,"bounds":{"left":0.15259309,"top":0.38707104,"width":0.017287234,"height":0.012769354},"value":"ebooks","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.38707104,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.38707104,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.38707104,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Documents","depth":7,"bounds":{"left":0.15259309,"top":0.40303272,"width":0.025930852,"height":0.012769354},"value":"Documents","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.40303272,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.40303272,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.40303272,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"docker","depth":7,"bounds":{"left":0.15259309,"top":0.41899443,"width":0.01662234,"height":0.012769354},"value":"docker","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.41899443,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.41899443,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.41899443,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"BT","depth":7,"bounds":{"left":0.15259309,"top":0.4349561,"width":0.00831117,"height":0.012769354},"value":"BT","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4349561,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4349561,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4349561,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"bookdrop","depth":7,"bounds":{"left":0.15259309,"top":0.4509178,"width":0.021941489,"height":0.012769354},"value":"bookdrop","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4509178,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4509178,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4509178,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Backup","depth":7,"bounds":{"left":0.15259309,"top":0.4668795,"width":0.017952127,"height":0.012769354},"value":"Backup","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4668795,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4668795,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4668795,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Audiobooks","depth":7,"bounds":{"left":0.15259309,"top":0.4828412,"width":0.026595745,"height":0.012769354},"value":"Audiobooks","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4828412,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4828412,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4828412,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Apps","depth":7,"bounds":{"left":0.15259309,"top":0.49880287,"width":0.013297873,"height":0.012769354},"value":"Apps","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.49880287,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.49880287,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.49880287,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"bounds":{"left":0.14095744,"top":0.16759777,"width":0.10372341,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"bounds":{"left":0.24468085,"top":0.16759777,"width":0.06017287,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"bounds":{"left":0.30485374,"top":0.16759777,"width":0.032247342,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"bounds":{"left":0.33710107,"top":0.16759777,"width":0.040226065,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Connected as: Adm1n","depth":2,"bounds":{"left":0.140625,"top":0.15003991,"width":0.04488032,"height":0.011971269},"automation_id":"_NS:10","role_description":"text"},{"role":"AXButton","text":"Disconnect","depth":2,"bounds":{"left":0.35239363,"top":0.14924182,"width":0.024601065,"height":0.015163607},"automation_id":"_NS:38","role_description":"button","is_enabled":true,"is_focused":false}]...
|
-8275287973409826210
|
-7739245053010592025
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Youtube
--
--
Sharepoint
Work
--
--
Sharepoint
Test
eject
--
--
Sharepoint
screenpipe
--
--
Sharepoint
personal_folder
--
--
Sharepoint
Music
--
--
Sharepoint
Movies
--
--
Sharepoint
Media
--
--
Sharepoint
Marti
--
--
Sharepoint
Google
--
--
Sharepoint
games
--
--
Sharepoint
Family tree documents
--
--
Sharepoint
ebooks
--
--
Sharepoint
Documents
--
--
Sharepoint
docker
--
--
Sharepoint
BT
--
--
Sharepoint
bookdrop
--
--
Sharepoint
Backup
--
--
Sharepoint
Audiobooks
--
--
Sharepoint
Apps
--
--
Sharepoint
Name
Date Modified
Size
Kind
Connected as: Adm1n
Disconnect...
|
80554
|
|
80554
|
2128
|
16
|
2026-04-25T14:28:03.732124+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127283732_m2.jpg...
|
Finder
|
DXP4800PLUS-B5F
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Name
Date Modified
Size
Kind
Connecting…
Connect As…
0 items
DXP4800PLUS-B5F...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"bounds":{"left":0.07446808,"top":0.1452514,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"bounds":{"left":0.082446806,"top":0.16520351,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"bounds":{"left":0.082446806,"top":0.18754987,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"bounds":{"left":0.082446806,"top":0.20989625,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"bounds":{"left":0.082446806,"top":0.23224261,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"bounds":{"left":0.082446806,"top":0.254589,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"bounds":{"left":0.082446806,"top":0.27693537,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"bounds":{"left":0.082446806,"top":0.29928172,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"bounds":{"left":0.07446808,"top":0.3272147,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"bounds":{"left":0.082446806,"top":0.3471668,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"bounds":{"left":0.082446806,"top":0.36951315,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"bounds":{"left":0.07446808,"top":0.39744613,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"bounds":{"left":0.082446806,"top":0.41739824,"width":0.043218084,"height":0.012769354},"role_description":"text"},{"role":"AXButton","text":"Eject","depth":6,"bounds":{"left":0.1263298,"top":0.41899443,"width":0.0043218085,"height":0.009577015},"role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Network","depth":6,"bounds":{"left":0.082446806,"top":0.43974462,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"bounds":{"left":0.07446808,"top":0.46767756,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"bounds":{"left":0.082446806,"top":0.48762968,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"bounds":{"left":0.082446806,"top":0.509976,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"bounds":{"left":0.082446806,"top":0.5323224,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"bounds":{"left":0.082446806,"top":0.5546688,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"bounds":{"left":0.082446806,"top":0.57701516,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"bounds":{"left":0.082446806,"top":0.59936154,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"bounds":{"left":0.082446806,"top":0.6217079,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"bounds":{"left":0.082446806,"top":0.6440543,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"bounds":{"left":0.15259309,"top":0.17238627,"width":0.011968086,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"bounds":{"left":0.24634309,"top":0.17238627,"width":0.025930852,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"bounds":{"left":0.30651596,"top":0.17238627,"width":0.008976064,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"bounds":{"left":0.3387633,"top":0.17238627,"width":0.00930851,"height":0.011173184},"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"bounds":{"left":0.14095744,"top":0.16759777,"width":0.10372341,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"bounds":{"left":0.24468085,"top":0.16759777,"width":0.06017287,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"bounds":{"left":0.30485374,"top":0.16759777,"width":0.032247342,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"bounds":{"left":0.33710107,"top":0.16759777,"width":0.040226065,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Connecting…","depth":2,"bounds":{"left":0.140625,"top":0.15003991,"width":0.02825798,"height":0.011971269},"automation_id":"_NS:10","role_description":"text"},{"role":"AXButton","text":"Connect As…","depth":2,"bounds":{"left":0.34906915,"top":0.14924182,"width":0.027925532,"height":0.015163607},"automation_id":"_NS:38","role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"0 items","depth":2,"bounds":{"left":0.24900267,"top":0.79090184,"width":0.016954787,"height":0.011173184},"automation_id":"_NS:34","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":1,"bounds":{"left":0.16555852,"top":0.103751,"width":0.08610372,"height":0.0415004},"role_description":"text"}]...
|
9078953297810257490
|
-1839682751016964195
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Eject
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Name
Date Modified
Size
Kind
Connecting…
Connect As…
0 items
DXP4800PLUS-B5F...
|
NULL
|
|
80553
|
2128
|
15
|
2026-04-25T14:28:00.507772+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127280507_m2.jpg...
|
Finder
|
DXP4800PLUS-B5F
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Youtube
--
--
Sharepoint
Work
--
--
Sharepoint
Test
--
--
Sharepoint
screenpipe
--
--
Sharepoint
personal_folder
--
--
Sharepoint
Music
--
--
Sharepoint
Movies
--
--
Sharepoint
Media
--
--
Sharepoint
Marti
--
--
Sharepoint
Google
--
--
Sharepoint
games
--
--
Sharepoint
Family tree documents
--
--
Sharepoint
ebooks
--
--
Sharepoint
Documents
--
--
Sharepoint
docker
--
--
Sharepoint
BT
--
--
Sharepoint
bookdrop
--
--
Sharepoint
Backup
--
--
Sharepoint
Audiobooks
--
--
Sharepoint
Apps
--
--
Sharepoint
Name
Date Modified
Size
Kind
Connected as: Adm1n
Disconnect
20 items
DXP4800PLUS-B5F...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"bounds":{"left":0.07446808,"top":0.1452514,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"bounds":{"left":0.082446806,"top":0.16520351,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"bounds":{"left":0.082446806,"top":0.18754987,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"bounds":{"left":0.082446806,"top":0.20989625,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"bounds":{"left":0.082446806,"top":0.23224261,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"bounds":{"left":0.082446806,"top":0.254589,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"bounds":{"left":0.082446806,"top":0.27693537,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"bounds":{"left":0.082446806,"top":0.29928172,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"bounds":{"left":0.07446808,"top":0.3272147,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"bounds":{"left":0.082446806,"top":0.3471668,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"bounds":{"left":0.082446806,"top":0.36951315,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"bounds":{"left":0.07446808,"top":0.39744613,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"bounds":{"left":0.082446806,"top":0.41739824,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Network","depth":6,"bounds":{"left":0.082446806,"top":0.43974462,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"bounds":{"left":0.07446808,"top":0.46767756,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"bounds":{"left":0.082446806,"top":0.48762968,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"bounds":{"left":0.082446806,"top":0.509976,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"bounds":{"left":0.082446806,"top":0.5323224,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"bounds":{"left":0.082446806,"top":0.5546688,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"bounds":{"left":0.082446806,"top":0.57701516,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"bounds":{"left":0.082446806,"top":0.59936154,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"bounds":{"left":0.082446806,"top":0.6217079,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"bounds":{"left":0.082446806,"top":0.6440543,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"bounds":{"left":0.15259309,"top":0.17238627,"width":0.011968086,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"bounds":{"left":0.24634309,"top":0.17238627,"width":0.025930852,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"bounds":{"left":0.30651596,"top":0.17238627,"width":0.008976064,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"bounds":{"left":0.3387633,"top":0.17238627,"width":0.00930851,"height":0.011173184},"role_description":"text"},{"role":"AXTextField","text":"Youtube","depth":7,"bounds":{"left":0.15259309,"top":0.19553073,"width":0.019281914,"height":0.012769354},"value":"Youtube","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.19553073,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.19553073,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.19553073,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Work","depth":7,"bounds":{"left":0.15259309,"top":0.21149242,"width":0.013297873,"height":0.012769354},"value":"Work","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.21149242,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.21149242,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.21149242,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Test","depth":7,"bounds":{"left":0.15259309,"top":0.22745411,"width":0.011303191,"height":0.012769354},"value":"Test","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.22745411,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.22745411,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.22745411,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"screenpipe","depth":7,"bounds":{"left":0.15259309,"top":0.2434158,"width":0.025265958,"height":0.012769354},"value":"screenpipe","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.2434158,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.2434158,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.2434158,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"personal_folder","depth":7,"bounds":{"left":0.15259309,"top":0.25937748,"width":0.034242023,"height":0.012769354},"value":"personal_folder","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.25937748,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.25937748,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.25937748,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Music","depth":7,"bounds":{"left":0.15259309,"top":0.2753392,"width":0.01462766,"height":0.012769354},"value":"Music","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.2753392,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.2753392,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.2753392,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Movies","depth":7,"bounds":{"left":0.15259309,"top":0.29130086,"width":0.016954787,"height":0.012769354},"value":"Movies","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.29130086,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.29130086,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.29130086,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Media","depth":7,"bounds":{"left":0.15259309,"top":0.30726257,"width":0.014960106,"height":0.012769354},"value":"Media","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.30726257,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.30726257,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.30726257,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Marti","depth":7,"bounds":{"left":0.15259309,"top":0.32322428,"width":0.013297873,"height":0.012769354},"value":"Marti","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.32322428,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.32322428,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.32322428,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Google","depth":7,"bounds":{"left":0.15259309,"top":0.33918595,"width":0.017287234,"height":0.012769354},"value":"Google","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.33918595,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.33918595,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.33918595,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"games","depth":7,"bounds":{"left":0.15259309,"top":0.35514766,"width":0.016289894,"height":0.012769354},"value":"games","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.35514766,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.35514766,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.35514766,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Family tree documents","depth":7,"bounds":{"left":0.15259309,"top":0.37110934,"width":0.048537236,"height":0.012769354},"value":"Family tree documents","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.37110934,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.37110934,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.37110934,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"ebooks","depth":7,"bounds":{"left":0.15259309,"top":0.38707104,"width":0.017287234,"height":0.012769354},"value":"ebooks","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.38707104,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.38707104,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.38707104,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Documents","depth":7,"bounds":{"left":0.15259309,"top":0.40303272,"width":0.025930852,"height":0.012769354},"value":"Documents","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.40303272,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.40303272,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.40303272,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"docker","depth":7,"bounds":{"left":0.15259309,"top":0.41899443,"width":0.01662234,"height":0.012769354},"value":"docker","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.41899443,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.41899443,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.41899443,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"BT","depth":7,"bounds":{"left":0.15259309,"top":0.4349561,"width":0.00831117,"height":0.012769354},"value":"BT","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4349561,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4349561,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4349561,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"bookdrop","depth":7,"bounds":{"left":0.15259309,"top":0.4509178,"width":0.021941489,"height":0.012769354},"value":"bookdrop","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4509178,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4509178,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4509178,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Backup","depth":7,"bounds":{"left":0.15259309,"top":0.4668795,"width":0.017952127,"height":0.012769354},"value":"Backup","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4668795,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4668795,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4668795,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Audiobooks","depth":7,"bounds":{"left":0.15259309,"top":0.4828412,"width":0.026595745,"height":0.012769354},"value":"Audiobooks","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.4828412,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.4828412,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.4828412,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Apps","depth":7,"bounds":{"left":0.15259309,"top":0.49880287,"width":0.013297873,"height":0.012769354},"value":"Apps","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.49880287,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.49880287,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sharepoint","depth":7,"bounds":{"left":0.3387633,"top":0.49880287,"width":0.023271276,"height":0.012769354},"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"bounds":{"left":0.14095744,"top":0.16759777,"width":0.10372341,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"bounds":{"left":0.24468085,"top":0.16759777,"width":0.06017287,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"bounds":{"left":0.30485374,"top":0.16759777,"width":0.032247342,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"bounds":{"left":0.33710107,"top":0.16759777,"width":0.040226065,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"Connected as: Adm1n","depth":2,"bounds":{"left":0.140625,"top":0.15003991,"width":0.04488032,"height":0.011971269},"automation_id":"_NS:10","role_description":"text"},{"role":"AXButton","text":"Disconnect","depth":2,"bounds":{"left":0.35239363,"top":0.14924182,"width":0.024601065,"height":0.015163607},"automation_id":"_NS:38","role_description":"button","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"20 items","depth":2,"bounds":{"left":0.24767287,"top":0.79090184,"width":0.019281914,"height":0.011173184},"automation_id":"_NS:34","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":1,"bounds":{"left":0.16555852,"top":0.103751,"width":0.08610372,"height":0.0415004},"role_description":"text"}]...
|
-8225140425134796296
|
-7739245053010591769
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Youtube
--
--
Sharepoint
Work
--
--
Sharepoint
Test
--
--
Sharepoint
screenpipe
--
--
Sharepoint
personal_folder
--
--
Sharepoint
Music
--
--
Sharepoint
Movies
--
--
Sharepoint
Media
--
--
Sharepoint
Marti
--
--
Sharepoint
Google
--
--
Sharepoint
games
--
--
Sharepoint
Family tree documents
--
--
Sharepoint
ebooks
--
--
Sharepoint
Documents
--
--
Sharepoint
docker
--
--
Sharepoint
BT
--
--
Sharepoint
bookdrop
--
--
Sharepoint
Backup
--
--
Sharepoint
Audiobooks
--
--
Sharepoint
Apps
--
--
Sharepoint
Name
Date Modified
Size
Kind
Connected as: Adm1n
Disconnect
20 items
DXP4800PLUS-B5F...
|
80552
|
|
80551
|
2127
|
14
|
2026-04-25T14:27:58.005445+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127278005_m1.jpg...
|
Finder
|
DXP4800PLUS-B5F
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Network","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"role_description":"text"}]...
|
-167213810577143665
|
-6380714462525687854
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow...
|
80549
|
|
80552
|
2128
|
14
|
2026-04-25T14:27:58.005440+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127278005_m2.jpg...
|
Finder
|
Lukas Kovalik's MacBook Pro (Jiminny)
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"bounds":{"left":0.07446808,"top":0.1452514,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"bounds":{"left":0.082446806,"top":0.16520351,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"bounds":{"left":0.082446806,"top":0.18754987,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"bounds":{"left":0.082446806,"top":0.20989625,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"bounds":{"left":0.082446806,"top":0.23224261,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"bounds":{"left":0.082446806,"top":0.254589,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"bounds":{"left":0.082446806,"top":0.27693537,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"bounds":{"left":0.082446806,"top":0.29928172,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"bounds":{"left":0.07446808,"top":0.3272147,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"bounds":{"left":0.082446806,"top":0.3471668,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"bounds":{"left":0.082446806,"top":0.36951315,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"bounds":{"left":0.07446808,"top":0.39744613,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"bounds":{"left":0.082446806,"top":0.41739824,"width":0.049534574,"height":0.012769354},"role_description":"text"}]...
|
-2841000380519229267
|
-5225543012465117222
|
click
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F...
|
NULL
|
|
80550
|
2128
|
13
|
2026-04-25T14:27:54.258488+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127274258_m2.jpg...
|
Finder
|
Lukas Kovalik's MacBook Pro (Jiminny)
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Macintosh HD
4 Aug 2024 at 13:31
222,19 GB
Startup Volume
Network
--
--
Neighbourhood
Name
Date Modified
Size
Kind
2 items
Lukas Kovalik's MacBook Pro (Jiminny)...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"bounds":{"left":0.07446808,"top":0.1452514,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"bounds":{"left":0.082446806,"top":0.16520351,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"bounds":{"left":0.082446806,"top":0.18754987,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"bounds":{"left":0.082446806,"top":0.20989625,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"bounds":{"left":0.082446806,"top":0.23224261,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"bounds":{"left":0.082446806,"top":0.254589,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"bounds":{"left":0.082446806,"top":0.27693537,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"bounds":{"left":0.082446806,"top":0.29928172,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"bounds":{"left":0.07446808,"top":0.3272147,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"bounds":{"left":0.082446806,"top":0.3471668,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"bounds":{"left":0.082446806,"top":0.36951315,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"bounds":{"left":0.07446808,"top":0.39744613,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"bounds":{"left":0.082446806,"top":0.41739824,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Network","depth":6,"bounds":{"left":0.082446806,"top":0.43974462,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"bounds":{"left":0.07446808,"top":0.46767756,"width":0.06216755,"height":0.015163607},"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"bounds":{"left":0.082446806,"top":0.48762968,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"bounds":{"left":0.082446806,"top":0.509976,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"bounds":{"left":0.082446806,"top":0.5323224,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"bounds":{"left":0.082446806,"top":0.5546688,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"bounds":{"left":0.082446806,"top":0.57701516,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"bounds":{"left":0.082446806,"top":0.59936154,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"bounds":{"left":0.082446806,"top":0.6217079,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"bounds":{"left":0.082446806,"top":0.6440543,"width":0.049534574,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"bounds":{"left":0.15259309,"top":0.15003991,"width":0.011968086,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"bounds":{"left":0.24634309,"top":0.15003991,"width":0.025930852,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"bounds":{"left":0.30651596,"top":0.15003991,"width":0.008976064,"height":0.011173184},"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"bounds":{"left":0.3387633,"top":0.15003991,"width":0.00930851,"height":0.011173184},"role_description":"text"},{"role":"AXTextField","text":"Macintosh HD","depth":7,"bounds":{"left":0.15259309,"top":0.17318435,"width":0.03125,"height":0.012769354},"value":"Macintosh HD","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"4 Aug 2024 at 13:31","depth":7,"bounds":{"left":0.24634309,"top":0.17318435,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"222,19 GB","depth":7,"bounds":{"left":0.31216756,"top":0.17318435,"width":0.023603724,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Startup Volume","depth":7,"bounds":{"left":0.3387633,"top":0.17318435,"width":0.033909574,"height":0.012769354},"role_description":"text"},{"role":"AXTextField","text":"Network","depth":7,"bounds":{"left":0.15259309,"top":0.18914606,"width":0.019614361,"height":0.012769354},"value":"Network","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.24634309,"top":0.18914606,"width":0.056848403,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"bounds":{"left":0.33011967,"top":0.18914606,"width":0.0056515955,"height":0.012769354},"role_description":"text"},{"role":"AXStaticText","text":"Neighbourhood","depth":7,"bounds":{"left":0.3387633,"top":0.18914606,"width":0.032912236,"height":0.012769354},"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"bounds":{"left":0.14095744,"top":0.1452514,"width":0.10372341,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"bounds":{"left":0.24468085,"top":0.1452514,"width":0.06017287,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"bounds":{"left":0.30485374,"top":0.1452514,"width":0.032247342,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"bounds":{"left":0.33710107,"top":0.1452514,"width":0.040226065,"height":0.022346368},"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"2 items","depth":2,"bounds":{"left":0.24900267,"top":0.79090184,"width":0.016954787,"height":0.011173184},"automation_id":"_NS:34","role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik's MacBook Pro (Jiminny)","depth":1,"bounds":{"left":0.16555852,"top":0.103751,"width":0.08610372,"height":0.0415004},"role_description":"text"}]...
|
5023461225383551906
|
7095458598569217940
|
visual_change
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Macintosh HD
4 Aug 2024 at 13:31
222,19 GB
Startup Volume
Network
--
--
Neighbourhood
Name
Date Modified
Size
Kind
2 items
Lukas Kovalik's MacBook Pro (Jiminny)...
|
80548
|
|
80549
|
2127
|
13
|
2026-04-25T14:27:54.145626+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127274145_m1.jpg...
|
Finder
|
Lukas Kovalik's MacBook Pro (Jiminny)
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Macintosh HD
4 Aug 2024 at 13:31
222,19 GB
Startup Volume
Network
--
--
Neighbourhood
Name
Date Modified
Size
Kind
2 items
Lukas Kovalik's MacBook Pro (Jiminny)...
|
[{"role":"AXStaticText","text& [{"role":"AXStaticText","text":"Favourites","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"jiminny","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"AirDrop","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Recents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Applications","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Documents","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Downloads","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"lukas","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"iCloud","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"iCloud Drive","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Sync folder","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Locations","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"DXP4800PLUS-B5F","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Network","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Tags","depth":6,"automation_id":"xSidebarHeader","role_description":"text"},{"role":"AXStaticText","text":"CRM","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Orange","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Red","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Yellow","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Green","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Blue","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Purple","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"All Tags…","depth":6,"role_description":"text"},{"role":"AXStaticText","text":"Name","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Date Modified","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Size","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Kind","depth":7,"role_description":"text"},{"role":"AXTextField","text":"Macintosh HD","depth":7,"value":"Macintosh HD","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"4 Aug 2024 at 13:31","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"222,19 GB","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Startup Volume","depth":7,"role_description":"text"},{"role":"AXTextField","text":"Network","depth":7,"value":"Network","role_description":"text field","is_enabled":true,"is_focused":false,"is_selected":false},{"role":"AXStaticText","text":"--","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"--","depth":7,"role_description":"text"},{"role":"AXStaticText","text":"Neighbourhood","depth":7,"role_description":"text"},{"role":"AXButton","text":"Name","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Date Modified","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Size","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXButton","text":"Kind","depth":6,"role_description":"sort button","subrole":"AXSortButton","is_enabled":true,"is_focused":false},{"role":"AXStaticText","text":"2 items","depth":2,"automation_id":"_NS:34","role_description":"text"},{"role":"AXStaticText","text":"Lukas Kovalik's MacBook Pro (Jiminny)","depth":1,"role_description":"text"}]...
|
5023461225383551906
|
7095458598569217940
|
visual_change
|
accessibility
|
NULL
|
Favourites
jiminny
AirDrop
Recents
Applications
Do Favourites
jiminny
AirDrop
Recents
Applications
Documents
Downloads
lukas
iCloud
iCloud Drive
Sync folder
Locations
DXP4800PLUS-B5F
Network
Tags
CRM
Orange
Red
Yellow
Green
Blue
Purple
All Tags…
Name
Date Modified
Size
Kind
Macintosh HD
4 Aug 2024 at 13:31
222,19 GB
Startup Volume
Network
--
--
Neighbourhood
Name
Date Modified
Size
Kind
2 items
Lukas Kovalik's MacBook Pro (Jiminny)...
|
NULL
|
|
80547
|
2127
|
12
|
2026-04-25T14:27:53.273813+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127273273_m1.jpg...
|
PhpStorm
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp-zsh(25A₴4100% C8Sat 25 Apr 17:27:53-zshT81*5DOCKER• 881DEV (-zsh)-$82APP (-zsh)-rw-r--r--1 lukasstaff47560124 Apr21:55compact_monitor_2_1777056946056.mp4lukasstaff107094424 Apr22:00-rw-r--r---rw-r--r---rw-r--r---rw-r--r--1lukasstaffcompact_monitor_2_1777057248209.mp416209224 Apr22:05compact_monitor_2_1777057550619.mp4lukasstaff11490924 Apr 22:10compact_monitor_2_1777057853837.mp4lukasstaff68673124 Apr22:20lukasstaffcompact_monitor_2_1777058454984.mp424642524 Apr22:25compact_monitor_2_1777058756865.mp41 lukasstaff18996424 Apr 22:30compact_monitor_2_1777059058337.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $dzsh: command not found:dlukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ cd~/.screenpipe/data/data $ cd2026-04-25~/.screenpipe/data/data/2026-04-25 $ 11total6808drwxr-xr-xdrwxr-xr-x-rw-r--r--23 lukas18lukas1lukasstaffstaffstaff73625Apr17:2757625Apr17:2510505225 Apr 17:25 1777127146346_m2.jpg*3screenpipe"$I31NSequel Ace-rw-r-rW-r-rw-r--r---rw-r--r---rw-r--rw-r-1lukasstaff18574925Apr17:26lukasstaff1777127176106_m1.jpg15499925 Apr17:261lukasstaff10361725Apr1777127176816_m1.jpg17:26Lukas1777127177994_m2.jpgstaff35484125 Apr17:26staff14828425 Apr17:261777127183656_m1.jpgLukas25Apr17:261777127185903_m1.jpglukasstaff196248177188928_m1.jpglukasstaff10313625Apr17:26177lukas25Apr17:2627200868_m2.jpg-rw-r--r--staff265344-rw-r--r--lukasstaff1777127204173_m1.jpg22072025 Apr17:271777127222352_m1.jpg-rw-r--r--1lukasstaff24970625Apr17:27-rw-r--r--1lukasstaff10319025Apr1777127225353_m1.jpg17:27lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny1777127231085_m2.JPg~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44]Screenpipe sync starting for: 2026-04-24[2026-04-2517:27:44][+00m00s]• PreflightchecksSource DB:OK(7.9G)[2026-04-25 17:27:44]ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $I...
|
NULL
|
-5277038732617092475
|
NULL
|
click
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp-zsh(25A₴4100% C8Sat 25 Apr 17:27:53-zshT81*5DOCKER• 881DEV (-zsh)-$82APP (-zsh)-rw-r--r--1 lukasstaff47560124 Apr21:55compact_monitor_2_1777056946056.mp4lukasstaff107094424 Apr22:00-rw-r--r---rw-r--r---rw-r--r---rw-r--r--1lukasstaffcompact_monitor_2_1777057248209.mp416209224 Apr22:05compact_monitor_2_1777057550619.mp4lukasstaff11490924 Apr 22:10compact_monitor_2_1777057853837.mp4lukasstaff68673124 Apr22:20lukasstaffcompact_monitor_2_1777058454984.mp424642524 Apr22:25compact_monitor_2_1777058756865.mp41 lukasstaff18996424 Apr 22:30compact_monitor_2_1777059058337.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $dzsh: command not found:dlukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ cd~/.screenpipe/data/data $ cd2026-04-25~/.screenpipe/data/data/2026-04-25 $ 11total6808drwxr-xr-xdrwxr-xr-x-rw-r--r--23 lukas18lukas1lukasstaffstaffstaff73625Apr17:2757625Apr17:2510505225 Apr 17:25 1777127146346_m2.jpg*3screenpipe"$I31NSequel Ace-rw-r-rW-r-rw-r--r---rw-r--r---rw-r--rw-r-1lukasstaff18574925Apr17:26lukasstaff1777127176106_m1.jpg15499925 Apr17:261lukasstaff10361725Apr1777127176816_m1.jpg17:26Lukas1777127177994_m2.jpgstaff35484125 Apr17:26staff14828425 Apr17:261777127183656_m1.jpgLukas25Apr17:261777127185903_m1.jpglukasstaff196248177188928_m1.jpglukasstaff10313625Apr17:26177lukas25Apr17:2627200868_m2.jpg-rw-r--r--staff265344-rw-r--r--lukasstaff1777127204173_m1.jpg22072025 Apr17:271777127222352_m1.jpg-rw-r--r--1lukasstaff24970625Apr17:27-rw-r--r--1lukasstaff10319025Apr1777127225353_m1.jpg17:27lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny1777127231085_m2.JPg~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44]Screenpipe sync starting for: 2026-04-24[2026-04-2517:27:44][+00m00s]• PreflightchecksSource DB:OK(7.9G)[2026-04-25 17:27:44]ERROR: NAS not mounted at /Volumes/Test/screenpipeLukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $I...
|
80546
|
|
80548
|
2128
|
12
|
2026-04-25T14:27:53.225710+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127273225_m2.jpg...
|
PhpStorm
|
NULL
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Notion CalendarcaltVIewWindowHelp=do.salite-shmV S Notion CalendarcaltVIewWindowHelp=do.salite-shmV SCREENPIPE [SSH: NAS]> #recycle> app>datapipes• gitignore() app_settings.json=archive.dbE db.salitesscreenpipe_sync.sh= screenpipe.dE db.sqlite-shmlets add ability to jump... — screenpipe SSH:oo00Q0April 2026 Week17Mon 20Chloe Cross (Parental Leave - 256 days)Andrea Llatanova (Parental Leave - To9 days)Tue 211o0 Daily - Platform 09:45Ihe editor coula not be openea because the file was not tound.Create FilePreipeatin for 1l support Pea),Support Dally 15:00PROBLEMSOUTPUTDEBUG CONSOLFAdm1nadxP4800PLUS-R5F8:/vollumer/screennines117:2720:00l21:00Sõ3OUTIINGTIMELINE>SSH: nas 8 master* @@0д0023:00Daily - Platform 09:45Support Dally 15:00ThuzeDaily - Platform 09:4Support Dally 15:00100% Lzsat Zo Aor 1/:2/103Week vTodayFr124Sat 25Sun 26Stelivan Georgiey (PTO - 1 day)Daily - Platform 09:45Lukas/Stefka 1211 Support Daily 15:00...
|
NULL
|
87677280570285298
|
NULL
|
click
|
ocr
|
NULL
|
Notion CalendarcaltVIewWindowHelp=do.salite-shmV S Notion CalendarcaltVIewWindowHelp=do.salite-shmV SCREENPIPE [SSH: NAS]> #recycle> app>datapipes• gitignore() app_settings.json=archive.dbE db.salitesscreenpipe_sync.sh= screenpipe.dE db.sqlite-shmlets add ability to jump... — screenpipe SSH:oo00Q0April 2026 Week17Mon 20Chloe Cross (Parental Leave - 256 days)Andrea Llatanova (Parental Leave - To9 days)Tue 211o0 Daily - Platform 09:45Ihe editor coula not be openea because the file was not tound.Create FilePreipeatin for 1l support Pea),Support Dally 15:00PROBLEMSOUTPUTDEBUG CONSOLFAdm1nadxP4800PLUS-R5F8:/vollumer/screennines117:2720:00l21:00Sõ3OUTIINGTIMELINE>SSH: nas 8 master* @@0д0023:00Daily - Platform 09:45Support Dally 15:00ThuzeDaily - Platform 09:4Support Dally 15:00100% Lzsat Zo Aor 1/:2/103Week vTodayFr124Sat 25Sun 26Stelivan Georgiey (PTO - 1 day)Daily - Platform 09:45Lukas/Stefka 1211 Support Daily 15:00...
|
NULL
|
|
80546
|
2127
|
11
|
2026-04-25T14:27:51.100830+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127271100_m1.jpg...
|
PhpStorm
|
NULL
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp-zshDOCKER• 881DEV (-zsh)$82APP (-zsh)-rw-r--r--1 lukasstaff47560124Apr21:55compact_monitor_2_1777056946056.mp4lukasstaff107094424Apr22:00-rw-r--r--lukasstaff16209224compact_monitor_2_1777057248209.mp4Apr22:05compact_monitor_2_1777057550619.mp4-rw-r--r--lukasstaff11490924 Apr22:10compact_monitor_2_1777057853837.mp4-rw-r--r--lukasstaff68673124 Apr22:20-rw-r--r--lukasstaff24642524Apr22:25compact_monitor_2_1777058454984.mp4compact_monitor_2_1777058756865.mp4-rw-r--r--lukasstaff18996424 Apr22:30compact_monitor_2_1777059058337.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ d ..zsh: command not found:dlukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ cd./.screenpipe/data/data $ cd2026-04-25~/.screenpipe/data/data/2026-04-25 $ 11total6808drwxr-xr-xdrwxr-xr-x-rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r--*323 lukasstaff73625Apr17:2718lukasstaff57625Apr17:25lukasstaff10505225Apr17:25lukasstaff141502251777127146346_m2.jpgApr17:251777127155648_m2.jpglukasstaff14644125Apr17:251777127156460_m2.jpglukasstaff14698425Apr 17:251lukasstaff14796525Apr17:261777127157630_m2.jpglukasstaff10420125Apr1777127161190_m2.jpg17:261777127168009_m2.jpglukasstaff14031825 Apr17:261777127168853_m2.jpg-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff18293325Apr17:261lukasstaff1777127169731_m1.jpg18404425Apr17:26lukasstaff6548625Apr1777127171385_m1.jpg17:261777121lukasstaff185749257171385_m2.jpgApr17:26lukasstaff154999251777127176106_m1.jpgApr17:26-rw-r--r---rw-r--r---rw-r--rw-r--r--lukasstaff10361725Apr1777127176816_m1.jpg17:26lukasstaff35484125Apr17:261777127177994_m2.jpglukasstaff14828425Apr1777127183656_m1.jpg17:261777127185903_m1. jpglukasstaff19624825Apr17:261777188928_m1.jpglukasstaff10313625Apr17:261777127200868_m2. jpg-rw-r--r---rw-r--r--lukasstaff26534425Apr17:26lukasstaff1777127204173_m1.jpg22072025Apr17:271777127222352_m1.jpg1lukasstaff24970625Apr17:27-rw-r--r--1lukasstaff103190251777127225353_m1.jpgApr17:27lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny1777127231085_m2.JPg~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44JScreenpipe sync starting for: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK(7.9G)[2026-04-25 17:27:44]ERROR: NAS not mounted at /Volumes/Test/screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ D‹$0screenpipe"(25884100% C8Sat 25 Apr 17:27:51-zshT81*5...
|
NULL
|
6274415112167546235
|
NULL
|
visual_change
|
ocr
|
NULL
|
iTerm2ShellEditViewSessionScriptsProfilesWindowHel iTerm2ShellEditViewSessionScriptsProfilesWindowHelp-zshDOCKER• 881DEV (-zsh)$82APP (-zsh)-rw-r--r--1 lukasstaff47560124Apr21:55compact_monitor_2_1777056946056.mp4lukasstaff107094424Apr22:00-rw-r--r--lukasstaff16209224compact_monitor_2_1777057248209.mp4Apr22:05compact_monitor_2_1777057550619.mp4-rw-r--r--lukasstaff11490924 Apr22:10compact_monitor_2_1777057853837.mp4-rw-r--r--lukasstaff68673124 Apr22:20-rw-r--r--lukasstaff24642524Apr22:25compact_monitor_2_1777058454984.mp4compact_monitor_2_1777058756865.mp4-rw-r--r--lukasstaff18996424 Apr22:30compact_monitor_2_1777059058337.mp4lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ d ..zsh: command not found:dlukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-24 $ cd./.screenpipe/data/data $ cd2026-04-25~/.screenpipe/data/data/2026-04-25 $ 11total6808drwxr-xr-xdrwxr-xr-x-rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r--*323 lukasstaff73625Apr17:2718lukasstaff57625Apr17:25lukasstaff10505225Apr17:25lukasstaff141502251777127146346_m2.jpgApr17:251777127155648_m2.jpglukasstaff14644125Apr17:251777127156460_m2.jpglukasstaff14698425Apr 17:251lukasstaff14796525Apr17:261777127157630_m2.jpglukasstaff10420125Apr1777127161190_m2.jpg17:261777127168009_m2.jpglukasstaff14031825 Apr17:261777127168853_m2.jpg-rw-r--r---rw-r--r---rw-r--r---rw-r--r--lukasstaff18293325Apr17:261lukasstaff1777127169731_m1.jpg18404425Apr17:26lukasstaff6548625Apr1777127171385_m1.jpg17:261777121lukasstaff185749257171385_m2.jpgApr17:26lukasstaff154999251777127176106_m1.jpgApr17:26-rw-r--r---rw-r--r---rw-r--rw-r--r--lukasstaff10361725Apr1777127176816_m1.jpg17:26lukasstaff35484125Apr17:261777127177994_m2.jpglukasstaff14828425Apr1777127183656_m1.jpg17:261777127185903_m1. jpglukasstaff19624825Apr17:261777188928_m1.jpglukasstaff10313625Apr17:261777127200868_m2. jpg-rw-r--r---rw-r--r--lukasstaff26534425Apr17:26lukasstaff1777127204173_m1.jpg22072025Apr17:271777127222352_m1.jpg1lukasstaff24970625Apr17:27-rw-r--r--1lukasstaff103190251777127225353_m1.jpgApr17:27lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny1777127231085_m2.JPg~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04-24[2026-04-2517:27:44][2026-04-2517:27:44JScreenpipe sync starting for: 2026-04-24[2026-04-2517:27:44][+00m00s]PreflightchecksSource DB:OK(7.9G)[2026-04-25 17:27:44]ERROR: NAS not mounted at /Volumes/Test/screenpipelukas@Lukas-Kovaliks-MacBook-Pro-Jiminny~/.screenpipe/data/data/2026-04-25 $ D‹$0screenpipe"(25884100% C8Sat 25 Apr 17:27:51-zshT81*5...
|
NULL
|
|
80545
|
2128
|
11
|
2026-04-25T14:27:41.319895+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127261319_m2.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.5046542,"top":1.0,"width":0.010970744,"height":-0.02394259},"role_description":"text"}]...
|
3738322542744791374
|
5712261622545677889
|
idle
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh 2026-04
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80543
|
|
80544
|
2127
|
10
|
2026-04-25T14:27:35.514012+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127255514_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll\ntotal 6808\ndrwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg\n-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg\n-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg\n-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg\n-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg\n-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg\n-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg\n-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg\n-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg\n-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg\n-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg\n-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg\n-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg\n-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg\n-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg\n-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg\n-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg\n-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg\n-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg\n-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg\n-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-1353538032915691712
|
5712261622545677905
|
idle
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd ..
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ll
total 6808
drwxr-xr-x 23 lukas staff 736 25 Apr 17:27 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 105052 25 Apr 17:25 1777127146346_m2.jpg
-rw-r--r-- 1 lukas staff 141502 25 Apr 17:25 1777127155648_m2.jpg
-rw-r--r-- 1 lukas staff 146441 25 Apr 17:25 1777127156460_m2.jpg
-rw-r--r-- 1 lukas staff 146984 25 Apr 17:25 1777127157630_m2.jpg
-rw-r--r-- 1 lukas staff 147965 25 Apr 17:26 1777127161190_m2.jpg
-rw-r--r-- 1 lukas staff 104201 25 Apr 17:26 1777127168009_m2.jpg
-rw-r--r-- 1 lukas staff 140318 25 Apr 17:26 1777127168853_m2.jpg
-rw-r--r-- 1 lukas staff 182933 25 Apr 17:26 1777127169731_m1.jpg
-rw-r--r-- 1 lukas staff 184044 25 Apr 17:26 1777127171385_m1.jpg
-rw-r--r-- 1 lukas staff 65486 25 Apr 17:26 1777127171385_m2.jpg
-rw-r--r-- 1 lukas staff 185749 25 Apr 17:26 1777127176106_m1.jpg
-rw-r--r-- 1 lukas staff 154999 25 Apr 17:26 1777127176816_m1.jpg
-rw-r--r-- 1 lukas staff 103617 25 Apr 17:26 1777127177994_m2.jpg
-rw-r--r-- 1 lukas staff 354841 25 Apr 17:26 1777127183656_m1.jpg
-rw-r--r-- 1 lukas staff 148284 25 Apr 17:26 1777127185903_m1.jpg
-rw-r--r-- 1 lukas staff 196248 25 Apr 17:26 1777127188928_m1.jpg
-rw-r--r-- 1 lukas staff 103136 25 Apr 17:26 1777127200868_m2.jpg
-rw-r--r-- 1 lukas staff 265344 25 Apr 17:26 1777127204173_m1.jpg
-rw-r--r-- 1 lukas staff 220720 25 Apr 17:27 1777127222352_m1.jpg
-rw-r--r-- 1 lukas staff 249706 25 Apr 17:27 1777127225353_m1.jpg
-rw-r--r-- 1 lukas staff 103190 25 Apr 17:27 1777127231085_m2.jpg
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-25 $ ~/.screenpipe/screenpipe_sync.sh
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80542
|
|
80543
|
2128
|
10
|
2026-04-25T14:27:11.085160+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127231085_m2.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..\nzsh: command not found: d\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.5046542,"top":1.0,"width":0.010970744,"height":-0.02394259},"role_description":"text"}]...
|
-8094472243618029599
|
5352026428914171457
|
idle
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ d ..
zsh: command not found: d
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ cd
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
NULL
|
|
80542
|
2127
|
9
|
2026-04-25T14:27:05.353328+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127225353_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-8514339572498810023
|
5352026428914171457
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
NULL
|
|
80541
|
2127
|
8
|
2026-04-25T14:27:02.352992+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127222352_m1.jpg...
|
Alfred
|
Alfred
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Alfred Search Field
|
[{"role":"AXTextField","text [{"role":"AXTextField","text":"Alfred Search Field","depth":1,"bounds":{"left":0.26180556,"top":0.16777778,"width":0.4763889,"height":0.05888889},"help_text":"Alfred Search","role_description":"text field","is_enabled":true,"is_focused":true}]...
|
7926243118367575
|
7570943109877468232
|
visual_change
|
hybrid
|
NULL
|
Alfred Search Field
iTerm2ShellEditViewSessionScri Alfred Search Field
iTerm2ShellEditViewSessionScriptsProfilesWindowHelpDEV (-zsh)2026-04-212026-04-222026-04-232026 A1 21$2(25-zshDOCKER• 881drwxr-xr-x248 lukasstaff793622Apr09:16drwxr-xr-x224lukasstaff7168drwxr-xr-x106lukasstaff23Apr09:14339224Apr09:20drwxr-xr-x252lukasstaff806424 Apr 22•20drwxr-xr-x16lukasstaff51225Apr11lukas@Lukas-Kovaliks-MacBook-Pro-Jiminnylukas@Lukas-Kovaliks-MacBook-Pro-Jiminnytotal 292176drwxr-xr-xdrwxr-xr-x-rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---ГW-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r---rw-r--r--252 lukas18 lukas1lukaslukas1lukaslukaslukaslukaslukaslukas1lukas1lukaslukaslukas1lukas• lukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukaslukas1lukaslukaslukasstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaffstaff806424 AprA.57625Apr163883124 Apr139118024 Apr298916224 Apr405389624 Apr210833124 Apr315814724 Apr22486324 Apr22458724 Apr22320724 Apr22486324 Apr22348324 Apr22279324 Apr22472524 Aрг22582924 Apr22583024 Apr22831324Apr22776324 Apr22348324 Apr22306924 Apr22444924Apr22527724 Apr22624324 Apr11:1922665924 Apr11:2522748624 Apr11:3022500124 Apr11:3522652024Apr11:4022375924Apr11:4522279324 Apr11:5022279324 Apr11:5522721024 Apr12:0123024724 Apr12:0622928124 Apr2274862412:11Apr22486312:1624 Apr12:2122279324 Apr12:27APP (-zsh)83screenpipe"884100% CSat 25 Apr 17:27:01T81-zsh85Clear Laravel logNotion Calendar.app/Applications/Notion Calendar.appClaude.app/Applications/Claude.appVisual Studio Code.app/Applications/Visual Studio Code.appCleanShot X.app/Applications/CleanShot X.appMonitorControlLite.app/Applications/MonitorControlLite.appCalendar.app/Applications/Calendar.appCalculator.app/Applications/Calculator.appiCloud DriveOpen iCloud Drive in Findercompact_monitor_1_1777018786981.mp4compact_monitor_1_1777019099556.mp4compact_monitor_1_1777019413061.mp4compact_monitor_1_1777019726395.mp4compact_monitor_1_1777020029531.mp4compact_monitor_1_1777020336492.mp4compact_monitor_1_1777020646184.mp4compact_monitor_1_1777020957673.mp4compact_monitor_1_1777021268422.mp4compact_monitor_1_1777021581300.mp4compact_monitor_1_1777021897044.mp4compact_monitor_1_1777022205733.mp4compact_monitor_1_1777022515833.mp4compact_monitor_1_1777022827784.mp4282283₴84*5₴6$87888...
|
80540
|
|
80540
|
2127
|
7
|
2026-04-25T14:26:44.173796+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127204173_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $","depth":4,"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll\ntotal 292176\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..\n-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4\n-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4\n-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4\n-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4\n-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4\n-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4\n-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4\n-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4\n-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4\n-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4\n-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4\n-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4\n-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4\n-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4\n-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4\n-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4\n-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4\n-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4\n-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4\n-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4\n-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4\n-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4\n-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4\n-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4\n-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4\n-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4\n-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4\n-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4\n-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4\n-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4\n-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4\n-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4\n-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4\n-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4\n-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4\n-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4\n-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4\n-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4\n-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4\n-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4\n-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4\n-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4\n-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4\n-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4\n-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4\n-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4\n-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4\n-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4\n-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4\n-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4\n-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4\n-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4\n-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4\n-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4\n-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4\n-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4\n-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4\n-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4\n-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4\n-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4\n-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4\n-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4\n-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4\n-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4\n-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4\n-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4\n-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4\n-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4\n-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4\n-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4\n-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4\n-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4\n-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4\n-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4\n-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4\n-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4\n-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4\n-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4\n-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4\n-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4\n-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4\n-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4\n-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4\n-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4\n-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4\n-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4\n-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4\n-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4\n-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4\n-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4\n-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4\n-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4\n-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4\n-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4\n-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4\n-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4\n-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4\n-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4\n-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4\n-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4\n-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4\n-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4\n-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4\n-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4\n-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4\n-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4\n-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4\n-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4\n-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4\n-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4\n-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4\n-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4\n-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4\n-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4\n-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4\n-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4\n-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4\n-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4\n-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4\n-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4\n-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4\n-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4\n-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4\n-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4\n-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4\n-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4\n-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4\n-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4\n-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4\n-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4\n-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4\n-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4\n-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4\n-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4\n-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4\n-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4\n-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4\n-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4\n-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4\n-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4\n-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4\n-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4\n-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4\n-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4\n-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4\n-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4\n-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4\n-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4\n-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4\n-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4\n-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4\n-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4\n-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4\n-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4\n-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4\n-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4\n-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4\n-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4\n-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4\n-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4\n-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4\n-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4\n-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4\n-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4\n-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4\n-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4\n-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4\n-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4\n-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4\n-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4\n-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4\n-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4\n-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4\n-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4\n-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4\n-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4\n-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4\n-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4\n-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4\n-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4\n-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4\n-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4\n-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4\n-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4\n-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4\n-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4\n-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4\n-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4\n-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4\n-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4\n-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4\n-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4\n-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4\n-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4\n-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4\n-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4\n-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4\n-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4\n-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4\n-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4\n-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4\n-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4\n-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4\n-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4\n-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4\n-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4\n-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4\n-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4\n-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4\n-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4\n-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4\n-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4\n-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4\n-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4\n-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4\n-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4\n-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4\n-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-8514339572498810023
|
5352026428914171457
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $ ll
total 292176
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 .
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 ..
-rw-r--r-- 1 lukas staff 1638831 24 Apr 09:31 compact_monitor_1_1777012261836.mp4
-rw-r--r-- 1 lukas staff 1391180 24 Apr 09:36 compact_monitor_1_1777012574636.mp4
-rw-r--r-- 1 lukas staff 2989162 24 Apr 09:41 compact_monitor_1_1777012889540.mp4
-rw-r--r-- 1 lukas staff 4053896 24 Apr 09:46 compact_monitor_1_1777013205196.mp4
-rw-r--r-- 1 lukas staff 2108331 24 Apr 09:51 compact_monitor_1_1777013517721.mp4
-rw-r--r-- 1 lukas staff 3158147 24 Apr 09:57 compact_monitor_1_1777013833236.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:02 compact_monitor_1_1777014148462.mp4
-rw-r--r-- 1 lukas staff 224587 24 Apr 10:07 compact_monitor_1_1777014455847.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 10:12 compact_monitor_1_1777014761287.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 10:17 compact_monitor_1_1777015066130.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:22 compact_monitor_1_1777015372226.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 10:28 compact_monitor_1_1777015681605.mp4
-rw-r--r-- 1 lukas staff 224725 24 Apr 10:33 compact_monitor_1_1777015992029.mp4
-rw-r--r-- 1 lukas staff 225829 24 Apr 10:38 compact_monitor_1_1777016303248.mp4
-rw-r--r-- 1 lukas staff 225830 24 Apr 10:43 compact_monitor_1_1777016610979.mp4
-rw-r--r-- 1 lukas staff 228313 24 Apr 10:48 compact_monitor_1_1777016922353.mp4
-rw-r--r-- 1 lukas staff 227763 24 Apr 10:53 compact_monitor_1_1777017228818.mp4
-rw-r--r-- 1 lukas staff 223483 24 Apr 10:58 compact_monitor_1_1777017535961.mp4
-rw-r--r-- 1 lukas staff 223069 24 Apr 11:04 compact_monitor_1_1777017848118.mp4
-rw-r--r-- 1 lukas staff 224449 24 Apr 11:09 compact_monitor_1_1777018160122.mp4
-rw-r--r-- 1 lukas staff 225277 24 Apr 11:14 compact_monitor_1_1777018473585.mp4
-rw-r--r-- 1 lukas staff 226243 24 Apr 11:19 compact_monitor_1_1777018786981.mp4
-rw-r--r-- 1 lukas staff 226659 24 Apr 11:25 compact_monitor_1_1777019099556.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 11:30 compact_monitor_1_1777019413061.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 11:35 compact_monitor_1_1777019726395.mp4
-rw-r--r-- 1 lukas staff 226520 24 Apr 11:40 compact_monitor_1_1777020029531.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 11:45 compact_monitor_1_1777020336492.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:50 compact_monitor_1_1777020646184.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 11:55 compact_monitor_1_1777020957673.mp4
-rw-r--r-- 1 lukas staff 227210 24 Apr 12:01 compact_monitor_1_1777021268422.mp4
-rw-r--r-- 1 lukas staff 230247 24 Apr 12:06 compact_monitor_1_1777021581300.mp4
-rw-r--r-- 1 lukas staff 229281 24 Apr 12:11 compact_monitor_1_1777021897044.mp4
-rw-r--r-- 1 lukas staff 227486 24 Apr 12:16 compact_monitor_1_1777022205733.mp4
-rw-r--r-- 1 lukas staff 224863 24 Apr 12:21 compact_monitor_1_1777022515833.mp4
-rw-r--r-- 1 lukas staff 222793 24 Apr 12:27 compact_monitor_1_1777022827784.mp4
-rw-r--r-- 1 lukas staff 225001 24 Apr 12:32 compact_monitor_1_1777023130468.mp4
-rw-r--r-- 1 lukas staff 223759 24 Apr 12:37 compact_monitor_1_1777023438384.mp4
-rw-r--r-- 1 lukas staff 223207 24 Apr 12:42 compact_monitor_1_1777023742059.mp4
-rw-r--r-- 1 lukas staff 223345 24 Apr 12:47 compact_monitor_1_1777024048142.mp4
-rw-r--r-- 1 lukas staff 223621 24 Apr 12:52 compact_monitor_1_1777024357357.mp4
-rw-r--r-- 1 lukas staff 226795 24 Apr 13:25 compact_monitor_1_1777026334121.mp4
-rw-r--r-- 1 lukas staff 74262 24 Apr 13:36 compact_monitor_1_1777026960071.mp4
-rw-r--r-- 1 lukas staff 75007 24 Apr 13:41 compact_monitor_1_1777027271559.mp4
-rw-r--r-- 1 lukas staff 66030 24 Apr 13:46 compact_monitor_1_1777027588021.mp4
-rw-r--r-- 1 lukas staff 206995 24 Apr 13:51 compact_monitor_1_1777027891692.mp4
-rw-r--r-- 1 lukas staff 1470509 24 Apr 13:56 compact_monitor_1_1777028193924.mp4
-rw-r--r-- 1 lukas staff 63562 24 Apr 14:01 compact_monitor_1_1777028500650.mp4
-rw-r--r-- 1 lukas staff 63177 24 Apr 14:06 compact_monitor_1_1777028811691.mp4
-rw-r--r-- 1 lukas staff 65865 24 Apr 14:11 compact_monitor_1_1777029114984.mp4
-rw-r--r-- 1 lukas staff 62921 24 Apr 14:17 compact_monitor_1_1777029426109.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 14:22 compact_monitor_1_1777029733317.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:27 compact_monitor_1_1777030036330.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:32 compact_monitor_1_1777030338771.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:37 compact_monitor_1_1777030647353.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 14:42 compact_monitor_1_1777030956098.mp4
-rw-r--r-- 1 lukas staff 60873 24 Apr 14:47 compact_monitor_1_1777031264764.mp4
-rw-r--r-- 1 lukas staff 65995 24 Apr 14:52 compact_monitor_1_1777031573441.mp4
-rw-r--r-- 1 lukas staff 62793 24 Apr 14:58 compact_monitor_1_1777031879569.mp4
-rw-r--r-- 1 lukas staff 61513 24 Apr 15:03 compact_monitor_1_1777032188612.mp4
-rw-r--r-- 1 lukas staff 61129 24 Apr 15:08 compact_monitor_1_1777032494307.mp4
-rw-r--r-- 1 lukas staff 62025 24 Apr 15:13 compact_monitor_1_1777032798963.mp4
-rw-r--r-- 1 lukas staff 61897 24 Apr 15:18 compact_monitor_1_1777033108532.mp4
-rw-r--r-- 1 lukas staff 61001 24 Apr 15:23 compact_monitor_1_1777033411928.mp4
-rw-r--r-- 1 lukas staff 57493 24 Apr 15:28 compact_monitor_1_1777033714810.mp4
-rw-r--r-- 1 lukas staff 372372 24 Apr 16:29 compact_monitor_1_1777037355438.mp4
-rw-r--r-- 1 lukas staff 411247 24 Apr 16:34 compact_monitor_1_1777037663371.mp4
-rw-r--r-- 1 lukas staff 616103 24 Apr 16:39 compact_monitor_1_1777037967552.mp4
-rw-r--r-- 1 lukas staff 338030 24 Apr 16:44 compact_monitor_1_1777038278174.mp4
-rw-r--r-- 1 lukas staff 336601 24 Apr 16:49 compact_monitor_1_1777038589136.mp4
-rw-r--r-- 1 lukas staff 1198645 24 Apr 16:55 compact_monitor_1_1777038901569.mp4
-rw-r--r-- 1 lukas staff 573966 24 Apr 17:00 compact_monitor_1_1777039221027.mp4
-rw-r--r-- 1 lukas staff 501809 24 Apr 17:05 compact_monitor_1_1777039538961.mp4
-rw-r--r-- 1 lukas staff 343102 24 Apr 17:10 compact_monitor_1_1777039845665.mp4
-rw-r--r-- 1 lukas staff 339201 24 Apr 17:15 compact_monitor_1_1777040154006.mp4
-rw-r--r-- 1 lukas staff 336696 24 Apr 17:20 compact_monitor_1_1777040458288.mp4
-rw-r--r-- 1 lukas staff 336768 24 Apr 17:26 compact_monitor_1_1777040767579.mp4
-rw-r--r-- 1 lukas staff 336733 24 Apr 17:31 compact_monitor_1_1777041080182.mp4
-rw-r--r-- 1 lukas staff 336774 24 Apr 17:36 compact_monitor_1_1777041388935.mp4
-rw-r--r-- 1 lukas staff 1041183 24 Apr 17:41 compact_monitor_1_1777041693870.mp4
-rw-r--r-- 1 lukas staff 209140 24 Apr 17:46 compact_monitor_1_1777042002848.mp4
-rw-r--r-- 1 lukas staff 208555 24 Apr 17:51 compact_monitor_1_1777042306433.mp4
-rw-r--r-- 1 lukas staff 353704 24 Apr 18:42 compact_monitor_1_1777045344500.mp4
-rw-r--r-- 1 lukas staff 209852 24 Apr 18:47 compact_monitor_1_1777045659150.mp4
-rw-r--r-- 1 lukas staff 761800 24 Apr 18:52 compact_monitor_1_1777045973244.mp4
-rw-r--r-- 1 lukas staff 511983 24 Apr 18:58 compact_monitor_1_1777046302568.mp4
-rw-r--r-- 1 lukas staff 376881 24 Apr 19:03 compact_monitor_1_1777046622649.mp4
-rw-r--r-- 1 lukas staff 2135572 24 Apr 19:09 compact_monitor_1_1777046942527.mp4
-rw-r--r-- 1 lukas staff 2067005 24 Apr 19:14 compact_monitor_1_1777047252013.mp4
-rw-r--r-- 1 lukas staff 325852 24 Apr 19:19 compact_monitor_1_1777047554283.mp4
-rw-r--r-- 1 lukas staff 1326420 24 Apr 19:24 compact_monitor_1_1777047857184.mp4
-rw-r--r-- 1 lukas staff 281500 24 Apr 19:29 compact_monitor_1_1777048160060.mp4
-rw-r--r-- 1 lukas staff 375074 24 Apr 19:34 compact_monitor_1_1777048463034.mp4
-rw-r--r-- 1 lukas staff 443180 24 Apr 19:39 compact_monitor_1_1777048765957.mp4
-rw-r--r-- 1 lukas staff 284143 24 Apr 19:44 compact_monitor_1_1777049071027.mp4
-rw-r--r-- 1 lukas staff 370030 24 Apr 19:49 compact_monitor_1_1777049375483.mp4
-rw-r--r-- 1 lukas staff 282964 24 Apr 19:54 compact_monitor_1_1777049679741.mp4
-rw-r--r-- 1 lukas staff 284261 24 Apr 19:59 compact_monitor_1_1777049981944.mp4
-rw-r--r-- 1 lukas staff 283679 24 Apr 20:04 compact_monitor_1_1777050284761.mp4
-rw-r--r-- 1 lukas staff 459716 24 Apr 20:09 compact_monitor_1_1777050586972.mp4
-rw-r--r-- 1 lukas staff 282329 24 Apr 20:14 compact_monitor_1_1777050889084.mp4
-rw-r--r-- 1 lukas staff 284125 24 Apr 20:19 compact_monitor_1_1777051190676.mp4
-rw-r--r-- 1 lukas staff 285974 24 Apr 20:24 compact_monitor_1_1777051493257.mp4
-rw-r--r-- 1 lukas staff 388518 24 Apr 20:29 compact_monitor_1_1777051796486.mp4
-rw-r--r-- 1 lukas staff 281872 24 Apr 20:35 compact_monitor_1_1777052102980.mp4
-rw-r--r-- 1 lukas staff 378553 24 Apr 20:40 compact_monitor_1_1777052404622.mp4
-rw-r--r-- 1 lukas staff 286022 24 Apr 20:45 compact_monitor_1_1777052707340.mp4
-rw-r--r-- 1 lukas staff 281962 24 Apr 20:50 compact_monitor_1_1777053011638.mp4
-rw-r--r-- 1 lukas staff 266081 24 Apr 20:55 compact_monitor_1_1777053316848.mp4
-rw-r--r-- 1 lukas staff 280935 24 Apr 21:05 compact_monitor_1_1777053917985.mp4
-rw-r--r-- 1 lukas staff 382542 24 Apr 21:10 compact_monitor_1_1777054219554.mp4
-rw-r--r-- 1 lukas staff 284199 24 Apr 21:15 compact_monitor_1_1777054523505.mp4
-rw-r--r-- 1 lukas staff 283100 24 Apr 21:20 compact_monitor_1_1777054827421.mp4
-rw-r--r-- 1 lukas staff 281910 24 Apr 21:25 compact_monitor_1_1777055133913.mp4
-rw-r--r-- 1 lukas staff 282076 24 Apr 21:30 compact_monitor_1_1777055435796.mp4
-rw-r--r-- 1 lukas staff 281620 24 Apr 21:35 compact_monitor_1_1777055737420.mp4
-rw-r--r-- 1 lukas staff 379003 24 Apr 21:40 compact_monitor_1_1777056039080.mp4
-rw-r--r-- 1 lukas staff 281563 24 Apr 21:45 compact_monitor_1_1777056341894.mp4
-rw-r--r-- 1 lukas staff 282224 24 Apr 21:50 compact_monitor_1_1777056643558.mp4
-rw-r--r-- 1 lukas staff 283065 24 Apr 21:55 compact_monitor_1_1777056945182.mp4
-rw-r--r-- 1 lukas staff 282611 24 Apr 22:00 compact_monitor_1_1777057247444.mp4
-rw-r--r-- 1 lukas staff 281790 24 Apr 22:05 compact_monitor_1_1777057549868.mp4
-rw-r--r-- 1 lukas staff 254088 24 Apr 22:10 compact_monitor_1_1777057853482.mp4
-rw-r--r-- 1 lukas staff 283072 24 Apr 22:20 compact_monitor_1_1777058454256.mp4
-rw-r--r-- 1 lukas staff 281845 24 Apr 22:25 compact_monitor_1_1777058756125.mp4
-rw-r--r-- 1 lukas staff 280140 24 Apr 22:30 compact_monitor_1_1777059057712.mp4
-rw-r--r-- 1 lukas staff 607703 24 Apr 09:31 compact_monitor_2_1777012263153.mp4
-rw-r--r-- 1 lukas staff 2606372 24 Apr 09:36 compact_monitor_2_1777012577621.mp4
-rw-r--r-- 1 lukas staff 2186625 24 Apr 09:41 compact_monitor_2_1777012892871.mp4
-rw-r--r-- 1 lukas staff 2139431 24 Apr 09:46 compact_monitor_2_1777013207979.mp4
-rw-r--r-- 1 lukas staff 3770878 24 Apr 09:52 compact_monitor_2_1777013519888.mp4
-rw-r--r-- 1 lukas staff 4167633 24 Apr 09:57 compact_monitor_2_1777013838804.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:02 compact_monitor_2_1777014150124.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 10:07 compact_monitor_2_1777014457309.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 10:12 compact_monitor_2_1777014762166.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:17 compact_monitor_2_1777015067707.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 10:22 compact_monitor_2_1777015373242.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 10:28 compact_monitor_2_1777015682416.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 10:33 compact_monitor_2_1777015994313.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 10:38 compact_monitor_2_1777016305302.mp4
-rw-r--r-- 1 lukas staff 360151 24 Apr 10:43 compact_monitor_2_1777016613033.mp4
-rw-r--r-- 1 lukas staff 362653 24 Apr 10:48 compact_monitor_2_1777016925353.mp4
-rw-r--r-- 1 lukas staff 361959 24 Apr 10:53 compact_monitor_2_1777017231517.mp4
-rw-r--r-- 1 lukas staff 357370 24 Apr 10:58 compact_monitor_2_1777017537009.mp4
-rw-r--r-- 1 lukas staff 356953 24 Apr 11:04 compact_monitor_2_1777017849485.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:09 compact_monitor_2_1777018161860.mp4
-rw-r--r-- 1 lukas staff 359316 24 Apr 11:14 compact_monitor_2_1777018476291.mp4
-rw-r--r-- 1 lukas staff 360288 24 Apr 11:19 compact_monitor_2_1777018789196.mp4
-rw-r--r-- 1 lukas staff 360706 24 Apr 11:25 compact_monitor_2_1777019101918.mp4
-rw-r--r-- 1 lukas staff 360985 24 Apr 11:30 compact_monitor_2_1777019416527.mp4
-rw-r--r-- 1 lukas staff 358343 24 Apr 11:35 compact_monitor_2_1777019728049.mp4
-rw-r--r-- 1 lukas staff 360150 24 Apr 11:40 compact_monitor_2_1777020031755.mp4
-rw-r--r-- 1 lukas staff 357648 24 Apr 11:45 compact_monitor_2_1777020337619.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 11:50 compact_monitor_2_1777020647019.mp4
-rw-r--r-- 1 lukas staff 356536 24 Apr 11:56 compact_monitor_2_1777020959086.mp4
-rw-r--r-- 1 lukas staff 361124 24 Apr 12:01 compact_monitor_2_1777021271140.mp4
-rw-r--r-- 1 lukas staff 364183 24 Apr 12:06 compact_monitor_2_1777021585399.mp4
-rw-r--r-- 1 lukas staff 363209 24 Apr 12:11 compact_monitor_2_1777021900365.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 12:16 compact_monitor_2_1777022208304.mp4
-rw-r--r-- 1 lukas staff 359177 24 Apr 12:21 compact_monitor_2_1777022517344.mp4
-rw-r--r-- 1 lukas staff 356675 24 Apr 12:27 compact_monitor_2_1777022828725.mp4
-rw-r--r-- 1 lukas staff 358899 24 Apr 12:32 compact_monitor_2_1777023132111.mp4
-rw-r--r-- 1 lukas staff 357509 24 Apr 12:37 compact_monitor_2_1777023439505.mp4
-rw-r--r-- 1 lukas staff 357092 24 Apr 12:42 compact_monitor_2_1777023742945.mp4
-rw-r--r-- 1 lukas staff 357231 24 Apr 12:47 compact_monitor_2_1777024049070.mp4
-rw-r--r-- 1 lukas staff 357926 24 Apr 12:52 compact_monitor_2_1777024358438.mp4
-rw-r--r-- 1 lukas staff 360984 24 Apr 13:25 compact_monitor_2_1777026337478.mp4
-rw-r--r-- 1 lukas staff 441464 24 Apr 13:36 compact_monitor_2_1777026960622.mp4
-rw-r--r-- 1 lukas staff 3294932 24 Apr 13:41 compact_monitor_2_1777027274051.mp4
-rw-r--r-- 1 lukas staff 3053876 24 Apr 13:46 compact_monitor_2_1777027589141.mp4
-rw-r--r-- 1 lukas staff 1046503 24 Apr 13:51 compact_monitor_2_1777027892570.mp4
-rw-r--r-- 1 lukas staff 1334716 24 Apr 13:56 compact_monitor_2_1777028197180.mp4
-rw-r--r-- 1 lukas staff 209289 24 Apr 14:01 compact_monitor_2_1777028502431.mp4
-rw-r--r-- 1 lukas staff 208498 24 Apr 14:06 compact_monitor_2_1777028813325.mp4
-rw-r--r-- 1 lukas staff 211343 24 Apr 14:12 compact_monitor_2_1777029117809.mp4
-rw-r--r-- 1 lukas staff 208024 24 Apr 14:17 compact_monitor_2_1777029427678.mp4
-rw-r--r-- 1 lukas staff 206286 24 Apr 14:22 compact_monitor_2_1777029734075.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:27 compact_monitor_2_1777030037028.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:32 compact_monitor_2_1777030339479.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:37 compact_monitor_2_1777030648067.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:42 compact_monitor_2_1777030956817.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 14:47 compact_monitor_2_1777031265473.mp4
-rw-r--r-- 1 lukas staff 212291 24 Apr 14:52 compact_monitor_2_1777031576555.mp4
-rw-r--r-- 1 lukas staff 209447 24 Apr 14:58 compact_monitor_2_1777031881300.mp4
-rw-r--r-- 1 lukas staff 206760 24 Apr 15:03 compact_monitor_2_1777032189621.mp4
-rw-r--r-- 1 lukas staff 206444 24 Apr 15:08 compact_monitor_2_1777032495303.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:13 compact_monitor_2_1777032800114.mp4
-rw-r--r-- 1 lukas staff 207234 24 Apr 15:18 compact_monitor_2_1777033109659.mp4
-rw-r--r-- 1 lukas staff 206128 24 Apr 15:23 compact_monitor_2_1777033412642.mp4
-rw-r--r-- 1 lukas staff 195066 24 Apr 15:28 compact_monitor_2_1777033715187.mp4
-rw-r--r-- 1 lukas staff 1809749 24 Apr 16:29 compact_monitor_2_1777037357085.mp4
-rw-r--r-- 1 lukas staff 782872 24 Apr 16:34 compact_monitor_2_1777037664347.mp4
-rw-r--r-- 1 lukas staff 1653552 24 Apr 16:39 compact_monitor_2_1777037968615.mp4
-rw-r--r-- 1 lukas staff 1760588 24 Apr 16:44 compact_monitor_2_1777038279259.mp4
-rw-r--r-- 1 lukas staff 784478 24 Apr 16:49 compact_monitor_2_1777038590004.mp4
-rw-r--r-- 1 lukas staff 3211116 24 Apr 16:55 compact_monitor_2_1777038904612.mp4
-rw-r--r-- 1 lukas staff 3278730 24 Apr 17:00 compact_monitor_2_1777039224011.mp4
-rw-r--r-- 1 lukas staff 2139446 24 Apr 17:05 compact_monitor_2_1777039540771.mp4
-rw-r--r-- 1 lukas staff 2764581 24 Apr 17:10 compact_monitor_2_1777039847346.mp4
-rw-r--r-- 1 lukas staff 1379171 24 Apr 17:15 compact_monitor_2_1777040155261.mp4
-rw-r--r-- 1 lukas staff 383251 24 Apr 17:20 compact_monitor_2_1777040459175.mp4
-rw-r--r-- 1 lukas staff 1048985 24 Apr 17:26 compact_monitor_2_1777040768479.mp4
-rw-r--r-- 1 lukas staff 327621 24 Apr 17:31 compact_monitor_2_1777041081412.mp4
-rw-r--r-- 1 lukas staff 2348678 24 Apr 17:36 compact_monitor_2_1777041389884.mp4
-rw-r--r-- 1 lukas staff 4241963 24 Apr 17:41 compact_monitor_2_1777041695709.mp4
-rw-r--r-- 1 lukas staff 354123 24 Apr 17:46 compact_monitor_2_1777042003688.mp4
-rw-r--r-- 1 lukas staff 353140 24 Apr 17:51 compact_monitor_2_1777042307243.mp4
-rw-r--r-- 1 lukas staff 1275961 24 Apr 18:42 compact_monitor_2_1777045345607.mp4
-rw-r--r-- 1 lukas staff 887486 24 Apr 18:47 compact_monitor_2_1777045660474.mp4
-rw-r--r-- 1 lukas staff 799440 24 Apr 18:52 compact_monitor_2_1777045977011.mp4
-rw-r--r-- 1 lukas staff 603476 24 Apr 18:58 compact_monitor_2_1777046308287.mp4
-rw-r--r-- 1 lukas staff 440001 24 Apr 19:03 compact_monitor_2_1777046627295.mp4
-rw-r--r-- 1 lukas staff 342701 24 Apr 19:09 compact_monitor_2_1777046945913.mp4
-rw-r--r-- 1 lukas staff 312225 24 Apr 19:14 compact_monitor_2_1777047253317.mp4
-rw-r--r-- 1 lukas staff 961678 24 Apr 19:19 compact_monitor_2_1777047555949.mp4
-rw-r--r-- 1 lukas staff 1078873 24 Apr 19:24 compact_monitor_2_1777047858465.mp4
-rw-r--r-- 1 lukas staff 319480 24 Apr 19:29 compact_monitor_2_1777048160848.mp4
-rw-r--r-- 1 lukas staff 526738 24 Apr 19:34 compact_monitor_2_1777048464036.mp4
-rw-r--r-- 1 lukas staff 1911635 24 Apr 19:39 compact_monitor_2_1777048767906.mp4
-rw-r--r-- 1 lukas staff 1015782 24 Apr 19:44 compact_monitor_2_1777049072014.mp4
-rw-r--r-- 1 lukas staff 640717 24 Apr 19:49 compact_monitor_2_1777049377082.mp4
-rw-r--r-- 1 lukas staff 253614 24 Apr 19:54 compact_monitor_2_1777049680531.mp4
-rw-r--r-- 1 lukas staff 191937 24 Apr 19:59 compact_monitor_2_1777049982986.mp4
-rw-r--r-- 1 lukas staff 318254 24 Apr 20:04 compact_monitor_2_1777050285760.mp4
-rw-r--r-- 1 lukas staff 390253 24 Apr 20:09 compact_monitor_2_1777050587996.mp4
-rw-r--r-- 1 lukas staff 250972 24 Apr 20:14 compact_monitor_2_1777050889831.mp4
-rw-r--r-- 1 lukas staff 458231 24 Apr 20:19 compact_monitor_2_1777051191646.mp4
-rw-r--r-- 1 lukas staff 850547 24 Apr 20:24 compact_monitor_2_1777051494402.mp4
-rw-r--r-- 1 lukas staff 1949530 24 Apr 20:30 compact_monitor_2_1777051799305.mp4
-rw-r--r-- 1 lukas staff 211399 24 Apr 20:35 compact_monitor_2_1777052103733.mp4
-rw-r--r-- 1 lukas staff 773576 24 Apr 20:40 compact_monitor_2_1777052405762.mp4
-rw-r--r-- 1 lukas staff 1104788 24 Apr 20:45 compact_monitor_2_1777052708580.mp4
-rw-r--r-- 1 lukas staff 176893 24 Apr 20:50 compact_monitor_2_1777053012336.mp4
-rw-r--r-- 1 lukas staff 172521 24 Apr 20:55 compact_monitor_2_1777053317285.mp4
-rw-r--r-- 1 lukas staff 200176 24 Apr 21:05 compact_monitor_2_1777053918703.mp4
-rw-r--r-- 1 lukas staff 1230541 24 Apr 21:10 compact_monitor_2_1777054221337.mp4
-rw-r--r-- 1 lukas staff 516796 24 Apr 21:15 compact_monitor_2_1777054524592.mp4
-rw-r--r-- 1 lukas staff 1008198 24 Apr 21:20 compact_monitor_2_1777054828289.mp4
-rw-r--r-- 1 lukas staff 478993 24 Apr 21:25 compact_monitor_2_1777055134659.mp4
-rw-r--r-- 1 lukas staff 279720 24 Apr 21:30 compact_monitor_2_1777055436549.mp4
-rw-r--r-- 1 lukas staff 292358 24 Apr 21:35 compact_monitor_2_1777055738189.mp4
-rw-r--r-- 1 lukas staff 958174 24 Apr 21:40 compact_monitor_2_1777056040201.mp4
-rw-r--r-- 1 lukas staff 178367 24 Apr 21:45 compact_monitor_2_1777056342715.mp4
-rw-r--r-- 1 lukas staff 315157 24 Apr 21:50 compact_monitor_2_1777056644310.mp4
-rw-r--r-- 1 lukas staff 475601 24 Apr 21:55 compact_monitor_2_1777056946056.mp4
-rw-r--r-- 1 lukas staff 1070944 24 Apr 22:00 compact_monitor_2_1777057248209.mp4
-rw-r--r-- 1 lukas staff 162092 24 Apr 22:05 compact_monitor_2_1777057550619.mp4
-rw-r--r-- 1 lukas staff 114909 24 Apr 22:10 compact_monitor_2_1777057853837.mp4
-rw-r--r-- 1 lukas staff 686731 24 Apr 22:20 compact_monitor_2_1777058454984.mp4
-rw-r--r-- 1 lukas staff 246425 24 Apr 22:25 compact_monitor_2_1777058756865.mp4
-rw-r--r-- 1 lukas staff 189964 24 Apr 22:30 compact_monitor_2_1777059058337.mp4
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data/2026-04-24 $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
NULL
|
|
80539
|
2128
|
9
|
2026-04-25T14:26:40.868011+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127200868_m2.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_2
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04","depth":4,"bounds":{"left":0.27027926,"top":0.9768556,"width":0.4800532,"height":0.023144424},"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.27027926,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.27227393,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.36469415,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.36668882,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.45910904,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.46110374,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.55352396,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.5555186,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.64793885,"top":1.0,"width":0.0944149,"height":-0.042298436},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.6499335,"top":1.0,"width":0.005319149,"height":-0.04549086},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.7287234,"top":1.0,"width":0.01861702,"height":-0.023144484},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.5046542,"top":1.0,"width":0.010970744,"height":-0.02394259},"role_description":"text"}]...
|
-5983613507892809845
|
9116161333974819400
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ cd 2026-04
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80535
|
|
80538
|
2127
|
6
|
2026-04-25T14:26:28.928845+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127188928_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $","depth":4,"bounds":{"left":0.0,"top":0.0,"width":1.0,"height":1.0},"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-3296263876719770179
|
9116161333966430792
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80537
|
|
80537
|
2127
|
5
|
2026-04-25T14:26:25.903449+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127185903_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25","depth":4,"bounds":{"left":0.0,"top":0.0,"width":1.0,"height":1.0},"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24\ndrwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
4229326116012482251
|
9116161333966496328
|
visual_change
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 18 lukas staff 576 25 Apr 17:25 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 252 lukas staff 8064 24 Apr 22:30 2026-04-24
drwxr-xr-x 16 lukas staff 512 25 Apr 17:26 2026-04-25
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
NULL
|
|
80536
|
2127
|
4
|
2026-04-25T14:26:23.656044+00:00
|
/Users/lukas/.screenpipe/data/data/2026-04-25/1777 /Users/lukas/.screenpipe/data/data/2026-04-25/1777127183656_m1.jpg...
|
iTerm2
|
-zsh
|
1
|
NULL
|
monitor_1
|
NULL
|
NULL
|
NULL
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
[{"role":"AXTextArea","text [{"role":"AXTextArea","text":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $","depth":4,"bounds":{"left":0.0,"top":0.08777778,"width":1.0,"height":0.9122222},"value":"Last login: Fri Apr 24 12:59:23 on ttys009\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\n\nPoetry could not find a pyproject.toml file in /Users/lukas or its parents\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe \nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe \nzsh: parse error near `do'\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe \n 13G\u0000\u0000\u0000\t/Users/lukas/.screenpipe\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll\ntotal 40\ndrwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .\ndrwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..\n-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store\ndrwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09\ndrwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11\ndrwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12\ndrwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13\ndrwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14\ndrwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15\ndrwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16\ndrwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17\ndrwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18\ndrwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20\ndrwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21\ndrwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22\ndrwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23\ndrwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24\nlukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $","is_focused":true},{"role":"AXRadioButton","text":"DOCKER","depth":2,"bounds":{"left":0.0,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.004166667,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"DEV (-zsh)","depth":2,"bounds":{"left":0.19722222,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.2013889,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"APP (-zsh)","depth":2,"bounds":{"left":0.39444444,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.3986111,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"screenpipe\"","depth":2,"bounds":{"left":0.59166664,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.59583336,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXRadioButton","text":"-zsh","depth":2,"bounds":{"left":0.7888889,"top":0.05888889,"width":0.19722222,"height":0.026666667},"role_description":"radio button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXButton","text":"Close Tab","depth":3,"bounds":{"left":0.79305553,"top":0.06333333,"width":0.011111111,"height":0.017777778},"role_description":"button","is_enabled":false,"is_focused":false,"is_selected":false,"is_expanded":false},{"role":"AXStaticText","text":"⌥⌘1","depth":1,"bounds":{"left":0.95763886,"top":0.032222223,"width":0.03888889,"height":0.018888889},"automation_id":"_NS:8","role_description":"text"},{"role":"AXStaticText","text":"-zsh","depth":1,"bounds":{"left":0.48958334,"top":0.033333335,"width":0.022916667,"height":0.017777778},"role_description":"text"}]...
|
-5089934245332738749
|
9116162433457079817
|
click
|
accessibility
|
NULL
|
Last login: Fri Apr 24 12:59:23 on ttys009
Poetry Last login: Fri Apr 24 12:59:23 on ttys009
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
Poetry could not find a pyproject.toml file in /Users/lukas or its parents
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~ $ cd ~/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ do -sh ~/.screenpipe
zsh: parse error near `do'
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ du -sh ~/.screenpipe
13G /Users/lukas/.screenpipe
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe $ cd data/data
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $ ll
total 40
drwxr-xr-x 17 lukas staff 544 24 Apr 09:19 .
drwxr-xr-x 167 lukas staff 5344 18 Apr 14:45 ..
-rw-r--r--@ 1 lukas staff 18436 18 Apr 14:45 .DS_Store
drwxr-xr-x 14 lukas staff 448 11 Apr 14:53 2026-04-09
drwxr-xr-x 30 lukas staff 960 12 Apr 09:02 2026-04-11
drwxr-xr-x 46 lukas staff 1472 13 Apr 15:13 2026-04-12
drwxr-xr-x 71 lukas staff 2272 14 Apr 09:24 2026-04-13
drwxr-xr-x 247 lukas staff 7904 15 Apr 09:59 2026-04-14
drwxr-xr-x 243 lukas staff 7776 16 Apr 09:13 2026-04-15
drwxr-xr-x 234 lukas staff 7488 17 Apr 08:57 2026-04-16
drwxr-xr-x 229 lukas staff 7328 18 Apr 13:35 2026-04-17
drwxr-xr-x 19 lukas staff 608 20 Apr 09:10 2026-04-18
drwxr-xr-x 194 lukas staff 6208 21 Apr 09:10 2026-04-20
drwxr-xr-x 248 lukas staff 7936 22 Apr 09:16 2026-04-21
drwxr-xr-x 224 lukas staff 7168 23 Apr 09:14 2026-04-22
drwxr-xr-x 106 lukas staff 3392 24 Apr 09:20 2026-04-23
drwxr-xr-x 292 lukas staff 9344 24 Apr 13:54 2026-04-24
lukas@Lukas-Kovaliks-MacBook-Pro-Jiminny ~/.screenpipe/data/data $
DOCKER
Close Tab
DEV (-zsh)
Close Tab
APP (-zsh)
Close Tab
screenpipe"
Close Tab
-zsh
Close Tab
⌥⌘1
-zsh...
|
80534
|