Skip to content

Commit

Permalink
qvm-start-daemon: Pass KDE specific guid arguments for stubdomain too
Browse files Browse the repository at this point in the history
(cherry picked from commit 886364e)
  • Loading branch information
HW42 authored and marmarek committed Oct 16, 2024
1 parent 0572987 commit 7491c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qubesadmin/tools/qvm_start_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,8 @@ def common_guid_args(self, vm):
config_path = self.guid_config_file(vm.xid)
self.write_guid_config(config_path, config)
guid_cmd.extend(['-C', config_path])
if self.kde:
guid_cmd.extend(self.kde_guid_args(vm))
return guid_cmd

@staticmethod
Expand Down Expand Up @@ -536,8 +538,6 @@ async def start_gui_for_vm(self, vm, monitor_layout=None):
local X server.
"""
guid_cmd = self.common_guid_args(vm)
if self.kde:
guid_cmd.extend(self.kde_guid_args(vm))
guid_cmd.extend(['-d', str(vm.xid)])

if vm.virt_mode == 'hvm':
Expand Down

0 comments on commit 7491c10

Please sign in to comment.