executable_messages2notify-send 232 B

1234567
  1. #!/bin/sh
  2. # https://www.commandlinefu.com/commands/view/8821/show-each-new-entry-in-system-messages-as-a-popup
  3. sudo tail -n0 -f /var/log/messages | while read -r line; do
  4. notify-send --urgency=low "System Message" "$line"
  5. done