11 lines
259 B
Bash
11 lines
259 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
for file in /usr/share/hyprland/*.png; do
|
|
if [[ $file == *anime*.png || $file == wall2.png ]]; then
|
|
rm "$file"
|
|
echo "Removed: $file"
|
|
fi
|
|
done
|