7 lines
79 B
Bash
7 lines
79 B
Bash
|
#!/bin/bash
|
||
|
while true;
|
||
|
do
|
||
|
xkbset sticky -twokey -latchlock
|
||
|
sleep 600
|
||
|
done
|