mirror of
https://github.com/He4eT/cantor-mx-tastatura.git
synced 2026-05-04 17:37:24 +00:00
20 lines
409 B
Bash
Executable file
20 lines
409 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# GIMP commands for the screenshot preparation:
|
|
# - Layer > Crop to Content [Alt + L, O, O, Enter]
|
|
# - Image > Fit Canvas to Layers [Alt + I, A]
|
|
|
|
filename="$1"
|
|
bordercolor="#424242"
|
|
bordersize=16
|
|
|
|
if [ ! -f "$filename" ]; then
|
|
echo "Error: File not found: $filename"
|
|
exit 1
|
|
fi
|
|
|
|
convert \
|
|
"$filename" \
|
|
-bordercolor "$bordercolor" \
|
|
-border "${bordersize}x${bordersize}" \
|
|
"$filename"
|