notif_clear 153 B

12345678
  1. #!/bin/sh
  2. # Clear all current notifications
  3. NOTIFICATION_DISPLAY=/sys/class/graphics/fb0/notification
  4. printf "clear" > ${NOTIFICATION_DISPLAY}
  5. exit 0