Skip to content

Commit

Permalink
fix: sys-audio policy and autostart pacat daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-grande committed Jan 3, 2024
1 parent 5f17f7e commit 3103100
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 17 deletions.
22 changes: 20 additions & 2 deletions salt/sys-audio/configure-dvm.sls
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later

{% if grains['nodename'] != 'dom0' -%}

"{{ slsdotpath }}-autostart-volumeicon-systray":
"{{ slsdotpath }}-desktop-volumeicon":
file.managed:
- name: /home/user/.local/share/applications/volumeicon.desktop
- source: salt://{{ slsdotpath }}/files/dvm/volumeicon.desktop
Expand All @@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
- group: user
- makedirs: True

"{{ slsdotpath }}-desktop-autostart":
"{{ slsdotpath }}-autostart-volumeicon":
file.symlink:
- name: /home/user/.config/autostart/volumeicon.desktop
- target: /home/user/.local/share/applications/volumeicon.desktop
Expand All @@ -24,4 +24,22 @@ SPDX-License-Identifier: AGPL-3.0-or-later
- force: True
- makedirs: True

"{{ slsdotpath }}-desktop-qvm-start-daemon":
file.managed:
- name: /home/user/.local/share/applications/qvm-start-daemon.desktop
- source: salt://{{ slsdotpath }}/files/dvm/qvm-start-daemon.desktop
- mode: '0644'
- user: user
- group: user
- makedirs: True

"{{ slsdotpath }}-autostart-qvm-start-daemon":
file.symlink:
- name: /home/user/.config/autostart/qvm-start-daemon.desktop
- target: /home/user/.local/share/applications/qvm-start-daemon.desktop
- user: user
- group: user
- force: True
- makedirs: True

{% endif -%}
2 changes: 1 addition & 1 deletion salt/sys-audio/create.sls
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ prefs:
- virt_mode: hvm
- template_for_dispvms: True
- include_in_backups: False
featuresq:
features:
- enable:
- servicevm
- appmenus-dispvm
Expand Down
37 changes: 23 additions & 14 deletions salt/sys-audio/files/admin/policy/default.policy
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
# SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <[email protected]>
# SPDX-FileCopyrightText: 2023 Yukikoo neowutran <https://neowutran.ovh>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Credits: https://forum.qubes-os.org/t/audio-qube/20685

## Do not modify this file, create a new policy with with a lower number in the
## file name instead. For example `30-user.policy`.
admin.Events * {{ sls_path }} @adminvm allow target=dom0
admin.Events +domain-stopped {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.Events +domain-shutdown {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.Events +domain-start {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.Events +connection-established {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.Events * sys-audio sys-audio allow target=dom0
admin.Events * sys-audio @adminvm allow target=dom0
admin.Events * sys-audio @tag:audiovm-sys-audio allow target=dom0

admin.vm.CurrentState * sys-audio sys-audio allow target=dom0
admin.vm.CurrentState * sys-audio @adminvm allow target=dom0
admin.vm.CurrentState * sys-audio @tag:audiovm-sys-audio allow target=dom0

admin.vm.List * sys-audio sys-audio allow target=dom0
admin.vm.List * sys-audio @adminvm allow target=dom0
admin.vm.List * sys-audio @tag:audiovm-sys-audio allow target=dom0

admin.vm.CurrentState * {{ sls_path }} @adminvm allow target=dom0
admin.vm.CurrentState * {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.List * {{ sls_path }} @adminvm allow target=dom0
admin.vm.List * {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.property.Get +audiovm sys-audio @tag:audiovm-sys-audio allow target=dom0
admin.vm.property.Get +xid sys-audio @tag:audiovm-sys-audio allow target=dom0
admin.vm.property.Get +stubdom_xid sys-audio @tag:audiovm-sys-audio allow target=dom0

admin.vm.property.Get +audiovm {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.property.Get +xid {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.property.Get +stubdom_xid {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.feature.CheckWithTemplate +audio sys-audio @tag:audiovm-sys-audio allow target=dom0
admin.vm.feature.CheckWithTemplate +audio-model sys-audio @tag:audiovm-sys-audio allow target=dom0
admin.vm.feature.CheckWithTemplate +supported-service.pipewire sys-audio @tag:audiovm-sys-audio allow target=dom0
admin.vm.feature.CheckWithTemplate +audio-low-latency sys-audio @tag:audiovm-sys-audio allow target=dom0

admin.vm.feature.CheckWithTemplate +audio {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.feature.CheckWithTemplate +audio-model {{ sls_path }} @tag:audiovm-{{ sls_path }} allow target=dom0
admin.vm.property.GetAll * sys-audio sys-audio allow target=dom0
admin.vm.property.GetAll * sys-audio @tag:audiovm-sys-audio allow target=dom0
## vim:ft=qrexecpolicy
13 changes: 13 additions & 0 deletions salt/sys-audio/files/dvm/qvm-start-daemon.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-or-later

[Desktop Entry]
Name=Qubes Guid/Pacat
Exec=qvm-start-daemon --all --watch
Icon=qubes
Terminal=false
X-MultipleArgs=False
Type=Application
Keywords=audio;
Categories=Audio;
1 change: 1 addition & 0 deletions salt/sys-audio/install-bluetooth.sls
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later

include:
- .install
- sys-usb.install-client-proxy

"{{ slsdotpath }}-bluetooth-updated":
pkg.uptodate:
Expand Down

0 comments on commit 3103100

Please sign in to comment.