#!/usr/bin/bash # # Ferit Yiğit BALABAN, # # Select an area with slurp, ss with grim # and copy to clipboard. SS="/media/yigid/share/shoka/photos/Screenshots" TEMP_FILE="$HOME/temp_file" grim -g "$( slurp )" "$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