Disable screen saver

Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
Severin Kaderli 2016-10-19 19:24:01 +02:00
parent 53bb4c8c79
commit 9bec3d26d0
5 changed files with 27 additions and 5 deletions

View file

@ -1,3 +1,9 @@
#!/bin/bash
echo "$(audtool current-song)"
OUTPUT="$(audtool current-song)"
if [ -z "$OUTPUT" ]; then
OUTPUT="Not playing"
fi
echo "$OUTPUT"