10 lines
98 B
Plaintext
10 lines
98 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
xset -q | grep 'On' > /dev/null
|
||
|
|
||
|
if [ $? -eq 0 ]; then
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|