tskrot - scripts - random scripts | |
git clone https://git.parazyd.org/scripts | |
Log | |
Files | |
Refs | |
--- tskrot (231B) --- 1 #!/bin/sh 2 3 case "$1" in 4 -s) 5 exec scrot -s '%Y-%m-%d_%H-%M-%S_$wx$h_scrot.png' -e 'mv -f $f /home/parazyd/screenshots/' 6 ;; 7 *) 8 exec scrot '%Y-%m-%d_%H-%M-%S_$wx$h_scrot.png' -e 'mv -f $f /home/parazyd/screenshots/' 9 ;; 10 esac |