dotfiles/.scripts/kill-wine-explorer.sh

7 lines
78 B
Bash
Raw Normal View History

2023-09-26 17:12:28 +02:00
#!/bin/sh
while true; do
killall -9 explorer.exe &> /dev/null
2023-09-26 17:12:28 +02:00
sleep 5
done