Create gpu-screen-recorder systemd service

This commit is contained in:
dec05eba
2023-07-28 20:02:14 +02:00
parent aabab6dd87
commit a72b41c1fa
2 changed files with 31 additions and 5 deletions

View File

@@ -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