mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
Minor reformat of screenshot utility
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
9daa0eb884
commit
eacd15086c
|
@ -1,21 +1,20 @@
|
|||
# -*- mode: shell-script; -*-
|
||||
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
||||
#
|
||||
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
|
||||
# -*- mode: shell-script; -*-
|
||||
|
||||
export PATH=@scrot@/bin:@xclip@/bin:@busybox@/bin
|
||||
|
||||
OPT="${1:-screen}"
|
||||
|
||||
case "$OPT" in
|
||||
screen)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
select)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -f -s -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
focused)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -f -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
screen)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
select)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -f -s -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
focused)
|
||||
scrot '/tmp/%F_%T_$wx$h.png' -f -e 'mkdir -p ~/screenshot/ ; mv $f ~/screenshot ; xclip -selection clipboard -target image/png -i ~/screenshot/`basename $f`'
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue