From 26a9e750dc6f1313413524cd97e60a94e25a56ec Mon Sep 17 00:00:00 2001 From: dec05eba Date: Mon, 4 Nov 2024 20:37:26 +0100 Subject: Add option to save replay/recording to a folder with the name of the game --- scripts/save-video-in-game-folder.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 scripts/save-video-in-game-folder.sh (limited to 'scripts/save-video-in-game-folder.sh') diff --git a/scripts/save-video-in-game-folder.sh b/scripts/save-video-in-game-folder.sh new file mode 100755 index 0000000..4dafa03 --- /dev/null +++ b/scripts/save-video-in-game-folder.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +filepath="$1" +type="$2" + +file_name="$(basename "$filepath")" +file_dir="$(dirname "$filepath")" + +game_name=$(gsr-window-name focused || echo "Game") +target_dir="$file_dir/$game_name" +new_filepath="$target_dir/$file_name" + +mkdir -p "$target_dir" +mv "$filepath" "$new_filepath" + +[ "$GSR_SHOW_SAVED_NOTIFICATION" != "1" ] && exit 0 + +case "$type" in + "regular") + gsr-notify --text "Saved recording to a folder called '$game_name'" --timeout 3.0 --icon record --bg-color "$GSR_NOTIFY_BG_COLOR" + ;; + "replay") + gsr-notify --text "Saved replay to a folder called '$game_name'" --timeout 3.0 --icon replay --bg-color "$GSR_NOTIFY_BG_COLOR" + ;; +esac \ No newline at end of file -- cgit v1.2.3