=====Wileyfox Swift Notification Light===== Pulse settings for the notification light are [[https://forum.cyanogenmod.org/topic/120010-notification-light-led-no-pulse/?do=findComment&comment=578519|deliberately]] disabled in the UI, but are in fact supported by the hardware to some degree. Apps like [[https://play.google.com/store/apps/details?id=com.rageconsulting.android.lightflowlite&hl=en_GB|Light Flow]] can be used to enable it, but - It feels wrong having to install an app for that and - The app permissions are just mental (as so often) - I don't care for detailed notification settings, so it's complete overkill Luckily, the settings can also be changed manually through the settings provider thingy: ''root@crackling:/ # settings --cm put system notification_light_pulse_default_led_on 500'' ''root@crackling:/ # settings --cm put system notification_light_pulse_default_led_off 4000'' Not all arbitrary values are supported, but ranges of values will yield different effects (e.g. >1000 "slow", <100 "fast", etc) The LED colour is a signed integer representation, e.g. pure red (0xFF0000) is read and written as: ''root@crackling:/ # settings --cm get system notification_light_pulse_default_color'' ''-65536'' What appears to be a complete list of settings is [[http://cyanogenmod.github.io/cm_platform_sdk/reference/cyanogenmod/providers/CMSettings.System.html|here]]. I would recommend setting the colour in the UI first, and then changing the pulse settings. Setting the colour in the UI will set the pulse settings to their default (i.e. not pulsing). Unfortunately, notification pulses seem to override the charge indicator.