Files
imajviewer/deb/DEBIAN/prerm
2026-07-22 04:10:18 +03:00

13 lines
333 B
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/sh
set -e
# Varsayılan görüntü izleyici atamasını kaldır
for mime in image/png image/jpeg image/jpg image/webp image/bmp image/gif; do
current=$(xdg-mime query default "$mime" 2>/dev/null || true)
if [ "$current" = "imajviewer.desktop" ]; then
xdg-mime default "" "$mime" 2>/dev/null || true
fi
done
exit 0