Log dmesg errors and warnings
[khome.git] / home / .xlaunch.d / 99-dmesg-notifier-warn
... / ...
CommitLineData
1#! /bin/bash
2
3set -e
4
5DIR="$HOME/var/log/dmesg"
6FILE="$DIR/warning.log"
7
8mkdir -p "$DIR"
9sleep 3 # wait for dunst to hopefully restart
10sudo dmesg --follow --level=warn --since=now --ctime \
11| while read -r line
12 do
13 notify-send -u low 'dmesg warning' "$line"
14 echo "$line" >> "$FILE"
15 done
This page took 0.022182 seconds and 4 git commands to generate.