notes/scripts/shutdown.sh
2022-12-17 16:02:40 -08:00

7 lines
145 B
Bash
Executable file

#!/bin/bash
if [ -d "$HOME/.recycle-bin" ] ; then
doas rm -r "$HOME/.recycle-bin/" && doas shutdown -h now
else
doas shutdown -h now
fi