-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
bugSomething isn't workingSomething isn't working
Description
System details
Omarchy v3.0.2, Arch Linux
What's wrong?
Bug
When starting Walker with --gapplication-service, memory usage grows each time I launch an app and never goes down. After some usage, it easily exceeds 1.2 GB (seen in btop).
Steps
- Autostart Walker with:
exec-once = walker --gapplication-service
-
Launch apps repeatedly via Walker.
-
Observe memory in btop → keeps increasing, never released.
Expected
Memory should remain stable.
Workaround
Using a systemd user service with a memory cap fixes the issue:
[Service]
ExecStart=/usr/bin/walker --gapplication-service
Restart=on-failure
MemoryMax=300M
And launching via:
exec = systemctl --user start walker.service; walker -p "Start…"
Request
Please investigate the memory leak in --gapplication-service.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working