mirror of
https://github.com/Snigdha-OS/snigdhaos-arctic.git
synced 2026-03-06 01:43:52 +01: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 |