From fc94465a0e569a7cbf896477ea70235da5252263 Mon Sep 17 00:00:00 2001 From: FURK4NGG <105324908+FURK4NGG@users.noreply.github.com> Date: Tue, 2 Sep 2025 14:34:44 +0300 Subject: [PATCH] Add files via upload --- .config/swaync/scripts/screenprint.sh | 2 ++ .config/swaync/scripts/screenrec.sh | 2 ++ .config/swaync/scripts/screenrecstop.sh | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 .config/swaync/scripts/screenprint.sh create mode 100644 .config/swaync/scripts/screenrec.sh create mode 100644 .config/swaync/scripts/screenrecstop.sh diff --git a/.config/swaync/scripts/screenprint.sh b/.config/swaync/scripts/screenprint.sh new file mode 100644 index 0000000..493b620 --- /dev/null +++ b/.config/swaync/scripts/screenprint.sh @@ -0,0 +1,2 @@ +#!/bin/bash +bash -c 'grim "$HOME/Resimler/tam-ekran-$(date +%Y%m%d-%H%M%S).png" && notify-send "Ekran görüntüsü alındı"' diff --git a/.config/swaync/scripts/screenrec.sh b/.config/swaync/scripts/screenrec.sh new file mode 100644 index 0000000..b115f79 --- /dev/null +++ b/.config/swaync/scripts/screenrec.sh @@ -0,0 +1,2 @@ +#!/bin/bash +notify-send "Ekran kaydı basladı" && wf-recorder -f ~/Resimler/screen_capture_$(date +%Y%m%d-%H%M%S).mp4 -a alsa_output.pci-0000_0d_00.6.analog-stereo.monitor diff --git a/.config/swaync/scripts/screenrecstop.sh b/.config/swaync/scripts/screenrecstop.sh new file mode 100644 index 0000000..9b4805d --- /dev/null +++ b/.config/swaync/scripts/screenrecstop.sh @@ -0,0 +1,2 @@ +#!/bin/bash +pkill wf-recorder && notify-send "Ekran kaydı alındı"