8 lines
246 B
Bash
Executable File
8 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
if [[ $1 == 1 ]]; then
|
|
SELECTION=$(slop)
|
|
maim -g $SELECTION ~/pictures/$(date +%m-%d-%Y:%R:%S).png && notify-send "screenshot saved" -i :
|
|
else
|
|
maim ~/pictures/$(date +%m-%d-%Y:%R:%S).png && notify-send "screenshot saved" -i :
|
|
fi
|