aboutsummaryrefslogtreecommitdiff
path: root/blanknot
blob: 84872e8552df23646ef1d82d48cac02b609604ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
#
# Do not let the screen to be blank.
# Useful while watching or contemplating something.
#

# Parameters
INTERVAL="10"

echo "Will virtually press the Ctrl key every $INTERVAL seconds."
echo "Press Ctrl-C to exit."
while true; do xdotool key ctrl; echo -n '.'; sleep $INTERVAL; done