blob: 0edc9ec50a0154bf49b3195597152b3d8881ecfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# Generate base filename with timestamp
base_filename=$(date +"%m-%d-%Y_%H-%M-%S")
extension=".png"
# Initialize full filename
filename="${base_filename}${extension}"
counter=1
# Check if file exists and append incremental suffix if needed
while [[ -e "$filename" ]]; do
filename="${base_filename}-${counter}${extension}"
((counter++))
done
# Output the available filename
wayshot -f "$HOME/Pictures/Screenshots/$filename" -s "$(slurp)"
|