13 lines
94 B
Plaintext
13 lines
94 B
Plaintext
|
#!/bin/bash
|
||
|
screen_on=false;
|
||
|
state=0;
|
||
|
|
||
|
while true;do
|
||
|
|
||
|
xscreensaver-command -activate
|
||
|
|
||
|
done
|
||
|
|
||
|
|
||
|
|