dotfiles/.config/qtile/screenshot.sh

30 lines
439 B
Bash
Raw Permalink Normal View History

2020-06-25 05:37:53 +08:00
#!/bin/bash
#dmenu script for screenshots
CUSTOM_SCRIPTS_FILE=~/.custom_bash_scripts.sh
if test -f $CUSTOM_SCRIPTS_FILE; then
source $CUSTOM_SCRIPTS_FILE
else
echo ".custom_bash_scripts.sh does not exist."
fi
options="
1) Fullscreen\n\
2) Selection
"
echo -e $options
# -i case insensitive
# -l vertical lines
option=$(echo -e $options | dmenu -i)
echo "\"$option\""
case $option in
1*)
sleep 0.5
f_scrot
;;
2*)
s_scrot
;;
esac