This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/bin/clipshot

16 lines
387 B
Plaintext
Raw Normal View History

2019-05-08 13:31:23 -05:00
#!/usr/bin/env bash
2020-03-24 14:11:38 -05:00
if is_wayland; then
grim -g "$(slurp -d)" - | wl-copy
else
pkill unclutter
sleep 0.1
import ~/.ss.png
chmod 700 ~/.ss.png
< ~/.ss.png xclip -t image/png -i -selection clipboard
< ~/.ss.png xclip -t image/png -i -selection primary
< ~/.ss.png xclip -t image/png -i -selection secondary
< ~/.ss.png xclip -t image/png -i -selection buffer-cut
unclutter &
fi