6 lines
146 B
Bash
Executable file
6 lines
146 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCROT_DIR="$NICE_HOME/img/scrots/"
|
|
LATEST_SCROT="$(\ls -Art "${SCROT_DIR}" | tail -n 1)"
|
|
krita "${SCROT_DIR}${LATEST_SCROT}"
|