Skip to content

Commit

Permalink
blacklist LinkedNotesUIService
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Mar 3, 2022
1 parent 7c8ef00 commit 34d31e8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/process_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ static bool process_is_observable(struct process *process)
return false;
}

if (string_equals(process->name, "LinkedNotesUIService")) {
debug("%s: %s (%d) is blacklisted! ignoring..\n", __FUNCTION__, process->name, process->pid);
return false;
}

if (string_equals(process->name, "Dock")) {
debug("%s: %s (%d) is blacklisted! ignoring..\n", __FUNCTION__, process->name, process->pid);
return false;
Expand Down

0 comments on commit 34d31e8

Please sign in to comment.