mirror of https://tildegit.org/ben/dotfiles
10 lines
172 B
Plaintext
10 lines
172 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
rename 's/ /-/g' ~/Pictures/*.png
|
||
|
|
||
|
latest=$(ls -Art ~/Pictures | tail -n 1)
|
||
|
|
||
|
pb "~/Pictures/$latest" | xclip -selection clipboard
|
||
|
notify-send "on yr clipbrd"
|
||
|
|