8 lines
106 B
Bash
8 lines
106 B
Bash
|
#!/bin/sh
|
||
|
while true; do
|
||
|
clear;
|
||
|
python3 -m pagermaid;
|
||
|
echo 'Restarting...';
|
||
|
sleep 1;
|
||
|
done
|