Remove systemd service file

This commit is contained in:
dec05eba
2026-04-19 18:34:30 +02:00
parent 163cd3f5a1
commit cf7df867ab
3 changed files with 0 additions and 16 deletions

View File

@@ -1,11 +0,0 @@
[Unit]
Description=GPU Screen Recorder UI Service
[Service]
ExecStart=gsr-ui launch-daemon
KillSignal=SIGINT
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=default.target

View File

@@ -159,10 +159,6 @@ if get_option('desktop-files') == true
gnome.post_install(update_desktop_database : true) gnome.post_install(update_desktop_database : true)
endif endif
if get_option('systemd') == true
install_data(files('extra/gpu-screen-recorder-ui.service'), install_dir : 'lib/systemd/user')
endif
if get_option('capabilities') == true if get_option('capabilities') == true
meson.add_install_script('meson_post_install.sh') meson.add_install_script('meson_post_install.sh')
endif endif

View File

@@ -1,3 +1,2 @@
option('systemd', type : 'boolean', value : true, description : 'Install systemd service file')
option('capabilities', type : 'boolean', value : true, description : 'Set binary setuid capability on gsr-global-hotkeys binary to allow global hotkeys') option('capabilities', type : 'boolean', value : true, description : 'Set binary setuid capability on gsr-global-hotkeys binary to allow global hotkeys')
option('desktop-files', type : 'boolean', value : true, description : 'Install desktop files') option('desktop-files', type : 'boolean', value : true, description : 'Install desktop files')