diff --git a/ss_full.sh b/ss_full.sh index 6a76737..f913e8e 100755 --- a/ss_full.sh +++ b/ss_full.sh @@ -4,5 +4,14 @@ # and print to stdout (-) # 2. the data printed to stdout is piped to wl-copy and it's copied # 3. the data is pasted to a file in folder $SS -SS="/media/fyb/share/shoka/swap/screenshots" -grim -c - | wl-copy --type image/png && wl-paste > "$SS"/$( date +'%Y-%m-%d-%H%M%S.png' ) +SS="/media/yigid/share/shoka/swap/screenshots" +TEMP_FILE="$HOME/temp_file" +ACTIVE_MON=$( hyprctl monitors -j | jq -r '.[] | select(.focused == true) | .name' ) + +grim -l 1 -o $ACTIVE_MON "$TEMP_FILE" + +if [ $? -eq 0 ]; then + wl-copy --type image/png < "$TEMP_FILE" + wl-paste > "$SS"/$( date +'%Y-%m-%d-%H%M%S.png' ) + rm "$TEMP_FILE" +fi diff --git a/ss_rect.sh b/ss_rect.sh index bf380c2..a45dc1a 100755 --- a/ss_rect.sh +++ b/ss_rect.sh @@ -4,10 +4,10 @@ # # Select an area with slurp, ss with grim # and copy to clipboard. -SS="/media/fyb/share/shoka/swap/screenshots" -TEMP_FILE="$HOME/temporary_screenshot" +SS="/media/yigid/share/shoka/swap/screenshots" +TEMP_FILE="$HOME/temp_file" -grim -c -g "$( slurp )" "$TEMP_FILE" +grim -g "$( slurp )" "$TEMP_FILE" if [ $? -eq 0 ]; then wl-copy --type image/png < "$TEMP_FILE"