aboutsummaryrefslogtreecommitdiff
path: root/.themes/caelus/assets/change_dpi.sh
diff options
context:
space:
mode:
authordacctal <120422854+dacctal@users.noreply.github.com>2026-03-05 01:21:45 +0000
committerdacctal <120422854+dacctal@users.noreply.github.com>2026-03-05 01:21:45 +0000
commit69a722cfd33076a4d63f1d49e52bed427453eabe (patch)
tree56545e93c12a8232058a0ab2b258546418656e03 /.themes/caelus/assets/change_dpi.sh
initial commit
Diffstat (limited to '.themes/caelus/assets/change_dpi.sh')
-rwxr-xr-x.themes/caelus/assets/change_dpi.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.themes/caelus/assets/change_dpi.sh b/.themes/caelus/assets/change_dpi.sh
new file mode 100755
index 0000000..0c03497
--- /dev/null
+++ b/.themes/caelus/assets/change_dpi.sh
@@ -0,0 +1,4 @@
+#!/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