-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.php
More file actions
30 lines (27 loc) · 821 Bytes
/
config.php
File metadata and controls
30 lines (27 loc) · 821 Bytes
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
<?php
return [
/*
|===============================================
| Application Usage - bundle ID ignore list
|===============================================
|
| List of bundle-ID's to be ignored when processing application usage
| The list is processed using regex, examples:
|
| Skip all virtual windows apps created by parallels and VMware
| $conf['bundleid_ignorelist'][] = ['com.parallels.winapp.*', 'com.vmware.proxyApp.*'];
|
| Skip all Apple apps, except iLife, iWork and Server
| 'com.apple.(?!iPhoto)(?!iWork)(?!Aperture)(?!iDVD)(?!garageband)(?!iMovieApp)(?!Server).*'
|
| Skip all apps with empty bundle-id's
| '^$'
|
*/
'appusage_ignorelist' => env('APPUSAGE_IGNORELIST', [
'com.apple.SecurityAgent',
'com.apple.cloudphotosd',
'com.apple.dock.extra',
'com.apple.PowerChime*',
]),
];