Tudo bem, aqui vai:
#!/bin/bash
threshold=100 # Minimum amount of memory left when you should start killing, in MB
browser="firefox-bin" # Change this to whatever you use, firefox is actually firefox-bin
while true; do
available=$(free -m | head -2 | tail -1 | awk '{print }')
if [ "$threshold" -ge "$available" ]; then
killall -q $browser # Will not complain if no processes were killed
fi
sleep 20
done
Coloque isso em /home/USERNAME/bin
, execute chmod +x ~/bin/SCRIPTNAME
e, em seguida, adicione-o a seus programas de inicialização automática por meio de System->Preferences->Startup Applications
.
Em seguida, o script será executado quando você fizer login automaticamente. Você pode executá-lo manualmente com ~/bin/SCRIPTNAME &