14 lines
180 B
Bash
Executable File
14 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
zenity --question --text "Do you want to trim?"
|
|
if [[ $? == 1 ]];then
|
|
exit
|
|
else
|
|
|
|
results=$(pkexec /sbin/fstrim -va)
|
|
notify-send "${results}"
|
|
|
|
fi
|