9 lines
200 B
Bash
Executable File
9 lines
200 B
Bash
Executable File
#!/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
|