aboutsummaryrefslogtreecommitdiff
path: root/extra/gpu-screen-recorder.service
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-07-28 20:02:14 +0200
committerdec05eba <dec05eba@protonmail.com>2023-07-28 20:03:59 +0200
commita72b41c1fa6f29d0b2f0bfa153d6331e4edb72f6 (patch)
tree90dd55207431cdc3ba0d705e5d694dbfe0d17fec /extra/gpu-screen-recorder.service
parentaabab6dd872fb7dc9d917b81011bc04e5fe2b185 (diff)
Create gpu-screen-recorder systemd service
Diffstat (limited to 'extra/gpu-screen-recorder.service')
-rw-r--r--extra/gpu-screen-recorder.service19
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/gpu-screen-recorder.service b/extra/gpu-screen-recorder.service
new file mode 100644
index 0000000..f8484e5
--- /dev/null
+++ b/extra/gpu-screen-recorder.service
@@ -0,0 +1,19 @@
+[Unit]
+Description=GPU Screen Recorder Service
+
+[Service]
+EnvironmentFile=-%h/.config/gpu-screen-recorder.env
+Environment=WINDOW=screen
+Environment=CONTAINER=mp4
+Environment=QUALITY=very_high
+Environment=CODEC=auto
+Environment=AUDIO_CODEC=opus
+Environment=FRAMERATE=60
+Environment=REPLAYDURATION=60
+Environment=OUTPUTDIR=%h/Videos
+ExecStart=gpu-screen-recorder -v no -w $WINDOW -c $CONTAINER -q $QUALITY -k $CODEC -ac $AUDIO_CODEC -f $FRAMERATE -r $REPLAYDURATION -o $OUTPUTDIR $ADDITIONAL_ARGS
+Restart=on-failure
+RestartSec=5s
+
+[Install]
+WantedBy=default.target \ No newline at end of file