added nautilus scripts (needs nautilus-python package)

This commit is contained in:
2026-06-14 18:55:25 +02:00
parent 33df2d0d81
commit dd4af575b5
247 changed files with 14784 additions and 0 deletions
@@ -0,0 +1,35 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=gzip"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml'")
output_dir=$(_get_output_dir "par_use_same_dir=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=svgz")
std_output=$(gzip "$input_file" --no-name -c >"$output_file" 2>&1)
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,35 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=gzip"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=svg")
std_output=$(gzip -S gz -d "$input_file" -c >"$output_file" 2>&1)
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=inkscape"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml|application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true; par_validate_conflict=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=eps")
local inkscape_version=""
local inkscape_version_old="1.0"
inkscape_version=$(inkscape --version | cut -d " " -f 2)
if [[ "$inkscape_version" == $(echo -e "$inkscape_version\n$inkscape_version_old" | sort -V | head -n1) ]]; then
# Old Inkscape version.
std_output=$(inkscape --without-gui --export-area-drawing --file="$input_file" --export-eps="$output_file" 2>&1)
else
# New Inkscape version.
std_output=$(inkscape --export-area-drawing --export-filename="$output_file" -- "$input_file" 2>&1)
fi
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=inkscape"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml|application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true; par_validate_conflict=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=pdf")
local inkscape_version=""
local inkscape_version_old="1.0"
inkscape_version=$(inkscape --version | cut -d " " -f 2)
if [[ "$inkscape_version" == $(echo -e "$inkscape_version\n$inkscape_version_old" | sort -V | head -n1) ]]; then
# Old Inkscape version.
std_output=$(inkscape --without-gui --export-area-drawing --file="$input_file" --export-pdf="$output_file" 2>&1)
else
# New Inkscape version.
std_output=$(inkscape --export-area-drawing --export-filename="$output_file" -- "$input_file" 2>&1)
fi
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=inkscape"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml|application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true; par_validate_conflict=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=png")
local inkscape_version=""
local inkscape_version_old="1.0"
inkscape_version=$(inkscape --version | cut -d " " -f 2)
if [[ "$inkscape_version" == $(echo -e "$inkscape_version\n$inkscape_version_old" | sort -V | head -n1) ]]; then
# Old Inkscape version.
std_output=$(inkscape --without-gui --export-area-drawing --file="$input_file" --export-height=1024 --export-png="$output_file" 2>&1)
else
# New Inkscape version.
std_output=$(inkscape --export-area-drawing --export-height=1024 --export-filename="$output_file" -- "$input_file" 2>&1)
fi
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=inkscape"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml|application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true; par_validate_conflict=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=png")
local inkscape_version=""
local inkscape_version_old="1.0"
inkscape_version=$(inkscape --version | cut -d " " -f 2)
if [[ "$inkscape_version" == $(echo -e "$inkscape_version\n$inkscape_version_old" | sort -V | head -n1) ]]; then
# Old Inkscape version.
std_output=$(inkscape --without-gui --export-area-drawing --file="$input_file" --export-height=256 --export-png="$output_file" 2>&1)
else
# New Inkscape version.
std_output=$(inkscape --export-area-drawing --export-height=256 --export-filename="$output_file" -- "$input_file" 2>&1)
fi
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,46 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=inkscape"
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml|application/gzip'")
output_dir=$(_get_output_dir "par_use_same_dir=true; par_validate_conflict=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
# Run the main process.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=replace; par_extension=png")
local inkscape_version=""
local inkscape_version_old="1.0"
inkscape_version=$(inkscape --version | cut -d " " -f 2)
if [[ "$inkscape_version" == $(echo -e "$inkscape_version\n$inkscape_version_old" | sort -V | head -n1) ]]; then
# Old Inkscape version.
std_output=$(inkscape --without-gui --export-area-drawing --file="$input_file" --export-height=512 --export-png="$output_file" 2>&1)
else
# New Inkscape version.
std_output=$(inkscape --export-area-drawing --export-height=512 --export-filename="$output_file" -- "$input_file" 2>&1)
fi
_check_output "$?" "$std_output" "$input_file" "$output_file" || return 1
}
_main "$@"
@@ -0,0 +1,62 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies ""
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml'")
output_dir=$(_get_output_dir "par_use_same_dir=false")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
local temp_file=""
local new_font="Charter"
__key_remove() {
local file=$1
local key=$2
sed -i "s|$key:[^;\"]*;*||g; s|;\"|\"|g" "$file"
}
__key_set_value() {
local file=$1
local key=$2
local value=$3
sed -i "s|$key:[^;\"]*\([;\"]\)|$key:$value\1|g" "$file"
}
# Work on a temporary file.
temp_file=$(_get_temp_file)
std_output=$(cp --archive -- "$input_file" "$temp_file" 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Run the main process.
__key_remove "$temp_file" "font-stretch"
__key_set_value "$temp_file" "font-family" "$new_font"
__key_set_value "$temp_file" "-inkscape-font-specification" "$new_font"
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Move the temporary file to the output.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=preserve")
_move_temp_file_to_output "$input_file" "$temp_file" "$output_file"
}
_main "$@"
@@ -0,0 +1,62 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies ""
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml'")
output_dir=$(_get_output_dir "par_use_same_dir=false")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
local temp_file=""
local new_font="Helvetica"
__key_remove() {
local file=$1
local key=$2
sed -i "s|$key:[^;\"]*;*||g; s|;\"|\"|g" "$file"
}
__key_set_value() {
local file=$1
local key=$2
local value=$3
sed -i "s|$key:[^;\"]*\([;\"]\)|$key:$value\1|g" "$file"
}
# Work on a temporary file.
temp_file=$(_get_temp_file)
std_output=$(cp --archive -- "$input_file" "$temp_file" 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Run the main process.
__key_remove "$temp_file" "font-stretch"
__key_set_value "$temp_file" "font-family" "$new_font"
__key_set_value "$temp_file" "-inkscape-font-specification" "$new_font"
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Move the temporary file to the output.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=preserve")
_move_temp_file_to_output "$input_file" "$temp_file" "$output_file"
}
_main "$@"
@@ -0,0 +1,62 @@
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies ""
_display_wait_box "2"
input_files=$(_get_files "par_type=file; par_select_mime='image/svg+xml'")
output_dir=$(_get_output_dir "par_use_same_dir=false")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box "$output_dir"
}
_main_task() {
local input_file=$1
local output_dir=$2
local output_file=""
local std_output=""
local temp_file=""
local new_font="Times"
__key_remove() {
local file=$1
local key=$2
sed -i "s|$key:[^;\"]*;*||g; s|;\"|\"|g" "$file"
}
__key_set_value() {
local file=$1
local key=$2
local value=$3
sed -i "s|$key:[^;\"]*\([;\"]\)|$key:$value\1|g" "$file"
}
# Work on a temporary file.
temp_file=$(_get_temp_file)
std_output=$(cp --archive -- "$input_file" "$temp_file" 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Run the main process.
__key_remove "$temp_file" "font-stretch"
__key_set_value "$temp_file" "font-family" "$new_font"
__key_set_value "$temp_file" "-inkscape-font-specification" "$new_font"
_check_output "$?" "$std_output" "$input_file" "" || return 1
# Move the temporary file to the output.
output_file=$(_get_output_filename "$input_file" "$output_dir" "par_extension_opt=preserve")
_move_temp_file_to_output "$input_file" "$temp_file" "$output_file"
}
_main "$@"