Files
dotfiles-ndesk/waybar/scripts/toggle-replay.sh
2025-08-09 15:32:12 +02:00

10 lines
235 B
Bash
Executable File

#!/bin/bash
PID_FILE="/tmp/gpu-screen-recorder.pid"
if [ -f "$PID_FILE" ] && ps -p "$(cat "$PID_FILE")" > /dev/null; then
$HOME/.config/hypr/scripts/replay-ctrl.sh stop
else
$HOME/.config/hypr/scripts/replay-ctrl.sh start
fi