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