7 lines
143 B
Bash
Executable file
7 lines
143 B
Bash
Executable file
#!/bin/bash
|
|
|
|
FILE_PATH=$HOME/Pictures/Screenshots/$(date -u +"%Y-%m-%d_%H-%M-%S").png
|
|
|
|
grim -g "$(slurp)" $FILE_PATH
|
|
|
|
cat $FILE_PATH | wl-copy
|