mirror of
https://github.com/Snigdha-OS/snigdhaos-arctic.git
synced 2025-09-23 13:05:03 +02:00
20 lines
439 B
Bash
Executable File
20 lines
439 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "############################################"
|
|
echo "Start Snigdha OS snapper cleanup"
|
|
echo "############################################"
|
|
|
|
if [ -f /usr/bin/snapper ]; then
|
|
for i in {1..20};
|
|
do
|
|
snapper --no-dbus delete "$i"
|
|
done
|
|
fi
|
|
|
|
echo
|
|
echo "############################################"
|
|
echo "End snigdhaos-snapper"
|
|
echo "############################################"
|
|
echo
|
|
|
|
rm -f /usr/local/bin/snigdhaos-snapper |