Files
archived-solorice/local/share/themes/rose-pine-gtk/assets/change_dpi.sh
2025-08-27 19:39:55 +03:00

5 lines
118 B
Bash
Executable File

#!/usr/bin/env bash
for f in "$@"; do
rsvg-convert -d 300 -p 300 -f svg "$f" -o "${f}.bak" ; mv "${f}.bak" "$f"
done