mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-03-31 10:13:21 +00:00
10 lines
172 B
Bash
Executable File
10 lines
172 B
Bash
Executable File
#!/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"
|
|
|