8 lines
171 B
Bash
8 lines
171 B
Bash
|
#!/bin/bash
|
||
|
while true; do
|
||
|
echo "start of loop"
|
||
|
dbus-monitor --session "interface='org.cinnamon.ScreenSaver', member='ActiveChanged'"
|
||
|
# echo "$OUTPUT"
|
||
|
sleep 1
|
||
|
done
|