11 lines
89 B
Plaintext
11 lines
89 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
while true;do
|
||
|
|
||
|
if [ 1=1 ]; then
|
||
|
|
||
|
xscreensaver-command -activate
|
||
|
|
||
|
fi
|
||
|
done
|