11 lines
233 B
Bash
11 lines
233 B
Bash
|
#! /usr/bin/bash
|
||
|
echo "Checking if FSTrim is enabled"
|
||
|
if sudo systemctl list-timers --no-pager | grep "fstrim"; then
|
||
|
echo "FStrim already enabled"
|
||
|
else
|
||
|
echo "Enabling FSTrim"
|
||
|
sudo systemctl enable fstrim.timer --now
|
||
|
fi
|
||
|
|
||
|
|