cdotfis/dotfiles/.local/bin/screenshot

9 lines
183 B
Bash
Executable File

#!/bin/sh
focusedwindow=$(xdotool getactivewindow)
flameshot gui -g >/dev/null
if [ "$focusedwindow" == "$(xdotool getactivewindow)" ]
then
xdotool windowfocus $focusedwindow
fi