Files
custum-hyprpanel/services/snapshot.sh
Hristo Karamanliev 88bdcbe806 Fix record screen selection popup not displaying (#217)
* fix record screen selection popup not displaying

* fix hard coded file manager that opens the dir

* fix hard coded file manger in snapshot.sh
2024-09-03 01:52:30 -07:00

37 lines
928 B
Bash
Executable File

#!/usr/bin/env bash
outputDir="$HOME/Pictures/Screenshots/"
outputFile="snapshot_$(date +%Y-%m-%d_%H-%M-%S).png"
outputPath="$outputDir/$outputFile"
mkdir -p "$outputDir"
mode=${1:-area}
case "$mode" in
active)
command="grimblast copysave active $outputPath"
;;
output)
command="grimblast copysave output $outputPath"
;;
area)
command="grimblast copysave area $outputPath"
;;
*)
echo "Invalid option: $mode"
echo "Usage: $0 {active|output|area}"
exit 1
;;
esac
if eval "$command"; then
recentFile=$(find "$outputDir" -name 'snapshot_*.png' -printf '%T+ %p\n' | sort -r | head -n 1 | cut -d' ' -f2-)
notify-send "Grimblast" "Your snapshot has been saved." \
-i video-x-generic \
-a "Grimblast" \
-t 7000 \
-u normal \
--action="scriptAction:-xdg-open $outputDir=Directory" \
--action="scriptAction:-xdg-open $recentFile=View"
fi