chore: move configs on .config folder

This commit is contained in:
2025-03-17 18:22:05 +01:00
parent 5b79a358b1
commit dc6a999555
20 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
main() {
local pid="$(pgrep "wf-recorder" || pgrep "slurp")"
if [[ $? != 0 ]]; then
GEO="$(slurp)" && wf-recorder -g "$GEO" -f "$HOME/Pictures/$(date +'recording_%Y-%m-%d-%H%M%S.mp4')"
else
pkill --signal SIGINT wf-recorder
fi
}
main