9 lines
200 B
Plaintext
9 lines
200 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
while true; do
|
||
|
~/utils/pscircle/build/pscircle --output=/tmp/pscircle --cpulist-show=0 --memlist-show=0
|
||
|
feh --bg-scale /tmp/pscircle
|
||
|
sleep 60
|
||
|
shred -zu /tmp/pscircle
|
||
|
done
|