First step into separated scripts

This commit is contained in:
2026-01-03 10:47:27 +01:00
parent ced8ac8dc0
commit 3bdd26ed81
7 changed files with 228 additions and 224 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
set -e
# Konfiguration (per ENV überschreibbar)
DARKTABLE_BIN="${DARKTABLE_BIN:-darktable}"
SYNC_BIN="${SYNC_BIN:-darktable_sync.sh}"
# Sync im Hintergrund starten
"$SYNC_BIN" --with-notify-start-stop &
# Darktable starten
exec "$DARKTABLE_BIN" "$@"