We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5105757 + 04a3835 commit 5ed1219Copy full SHA for 5ed1219
CPB_ANCS/code.py
@@ -34,7 +34,7 @@
34
"com.apple.mobilephone": "/ancs_phone.bmp"
35
}
36
37
-BLACKLIST = []
+BLOCKLIST = []
38
DELAY_AFTER_PRESS = 15
39
DEBOUNCE = 0.1
40
DIM_TIMEOUT = 20 # Amount of timeout to turn off backlight
@@ -123,7 +123,7 @@ def wrap_in_tilegrid(open_file):
123
current_notifications = notification_service.active_notifications
124
for notif_id in current_notifications:
125
notification = current_notifications[notif_id]
126
- if notification.app_id not in APP_ICONS or notification.app_id in BLACKLIST:
+ if notification.app_id not in APP_ICONS or notification.app_id in BLOCKLIST:
127
continue
128
all_ids.append(notif_id)
129
0 commit comments