-
Notifications
You must be signed in to change notification settings - Fork 0
/
.reniced.yaml.example
169 lines (153 loc) · 3.84 KB
/
.reniced.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Fork and run as real unix daemon.
daemon: true
# PID file for daemon.
pidfile: /var/run/reniced.pid
# Delay among iterations.
loop_delay: 5000
# Whether to print debug messages to stdout.
debug: true
# Maximum worker in command pool.
max_workers: 3
# Capacity of non-blocking tasks. All tasks that exceeding this capacity will block submission of new tasks until queue
# has vacant place for new task.
nb_capacity: 30
kill:
- sig: stop
name:
# Backup program. I don't really want it, but have to keep.
- commvault
# Distributed notification service. Sometimes can be naughty.
- distnoted
# This service can be greedy and may make kernel_tak to hig cpu too
- coreduetd
prio:
- nice: -11
name:
# Main audio service, to play sounds smoothly, must have high prio.
- coreaudiod
# Window manager service.
- WindowServer
# Isolation helper.
- "com.apple.audio.SandboxHelper"
# Audio driver helper.
- "com.apple.audio.DriverHelper"
# Used for syncing timers for different audio sources.
- audioclocksyncd
- nice: -5
name:
# Video playback helper.
- VTDecoderXPCService
# Corporate messenger.
- "VK Teams"
# Responds to apple broadcast dns requests. In linux world it is avahi.
- mDNSResponder
# Helper service for mDNSResponder.
- mDNSResponderHelper
# Part of AudioToolbox framework.
- AudioComponentRegistrar
# Mac OS X Core Virtual Machine Server. Something related to isolation of system processes.
- CVMServer
- nice: -3
name:
# 3-rd party tool to make tricks with keyboard. (remap/swap buttons)
- "Karabiner-Elements"
# 3-rd party tool to automate routine actions.
- Hammerspoon
# Compiler for metal shaders, that can pass information directly to the GPU.
- MTLCompilerService
- nice: 3
name:
# System logger.
- logd
# System logger.
- syslogd
# Something related to binary signature checks. To ensure system integrity. Part of DRM protection.
# It rubs berfore application starts, so we definitely don't want to low its prio heavily.
- syspolicyd
# Unix periodic task scheduler.
- cron
# Ditto.
- softwareupdated
# Handles the scheduling of the periodic command
- "periodic-wrapper"
- appstored
- nice: 5
name:
# Dynamic brightness tuning service.
- corebrightnessd
- airportd
- containermanagerd
- corespeechd
- peopled
- AssetCacheLocatorService
- avatarsd
- contactsdonationagent
- storedownloadd
- "Dock.app"
- Dock
- Finder
- DockHelper
- nice: 9
name:
- "Google Chrome"
- "Google Chrome Helper"
- "EmojiFunction"
- "Microsoft Edge Helper"
- "Opera Helper"
- "UserNotificationCenter"
- nice: 11
name:
- siriactionsd
- CoreSpotlightService
- spotlightknowledged
- Spotlight
- suggestd
- studentd
- "com.apple.siri-distributed-evaluation"
- "com.apple.CloudPhotosConfiguration"
- nice: 19
name:
- coreduetd
- endpointsecurityd
- analyticsd
- backupd
- com.apple.CodeSigningHelper
- distnoted
- "backupd-helper"
- JamfDaemon
- osqueryd
- commvault
- diagnosticd
- JamfProCommService
- XprotectService
- XProtectPluginService
- "media-indexer"
- "com.apple.Safari.SafeBrowsing.Service"
- SafariNotificationAgent
- AMPArtworkAgent
- AMPLibraryAgent
- IDSBlastDoorService
- photoanalysisd
- photolibraryd
- "Crash Reports"
- mds
- mds_stores
- mdsync
- mdbulkimport
- mdworker_shared
- osqueryd
- opendirectoryd
- mediaanalysisd
- klnagent
- kavd
- biomesyncd
- siriknowledged
- triald
ioprio:
- name:
- htop
- top
- atop
class: 2
prio: 1
# vim: set ft=yaml et ai ts=2 sw=2 sts=2: