mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-29 02:38:37 -05:00
35 lines
861 B
Bash
Executable File
35 lines
861 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p ~/Screenshots
|
|
SAVEPATH="$HOME/Screenshots/$(date +'%Y-%m-%d-%H%M%S_grim.png')"
|
|
|
|
case $1 in
|
|
--full)
|
|
grim "${SAVEPATH}"
|
|
notify-send -i $HOME/.config/mako/photograph.png "Screenshot taken..."
|
|
;;
|
|
--region)
|
|
GEOMETRY=$(slurp)
|
|
grim -g "${GEOMETRY}" "${SAVEPATH}"
|
|
notify-send -i $HOME/.config/mako/photograph.png "Screenshot taken..."
|
|
;;
|
|
--full-optional)
|
|
grim - | swappy -f -
|
|
;;
|
|
--region-optional)
|
|
GEOMETRY=$(slurp)
|
|
grim -g "${GEOMETRY}" - | swappy -f -
|
|
;;
|
|
--full-copy)
|
|
grim - | wl-copy
|
|
notify-send -i $HOME/.config/mako/photograph.png "Screenshot copied..."
|
|
;;
|
|
--region-copy)
|
|
GEOMETRY=$(slurp)
|
|
grim -g "${GEOMETRY}" - | wl-copy
|
|
notify-send -i $HOME/.config/mako/photograph.png "Screenshot copied..."
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|