mirror of https://gitlab.com/bashrc2/epicyon
8 lines
179 B
Plaintext
8 lines
179 B
Plaintext
|
#!/bin/bash
|
||
|
journalctl -u epicyon | grep 'image binary\|favicon is not an image' > .image.txt
|
||
|
if [ ! -f .image.txt ]; then
|
||
|
echo 'No image warnings'
|
||
|
else
|
||
|
cat .image.txt
|
||
|
fi
|