mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-12 07:38:50 +01:00
9 lines
153 B
Bash
Executable File
9 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
# Clear all current notifications
|
|
|
|
NOTIFICATION_DISPLAY=/sys/class/graphics/fb0/notification
|
|
|
|
printf "clear" > ${NOTIFICATION_DISPLAY}
|
|
|
|
exit 0
|