mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
425748ab9e
Provided in the default Dom0 installation as it brings a much better usability and small packages. KDE ships with kdialog but without a screenshot utility. Xfce ships with xfce4-screenshooter but without a dialog utility. Scrot and Zenity are minimal tools that works on both DEs and are very small packages. Fixes: https://github.com/ben-grande/qusal/issues/22
39 lines
931 B
Plaintext
39 lines
931 B
Plaintext
{#
|
|
SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if grains['nodename'] == 'dom0' -%}
|
|
|
|
"{{ slsdotpath }}-terminal-helper":
|
|
file.managed:
|
|
- name: /usr/local/bin/qvm-terminal
|
|
- source: salt://{{ slsdotpath }}/files/bin/qvm-terminal
|
|
- mode: "0755"
|
|
- user: root
|
|
- group: root
|
|
- makedirs: True
|
|
|
|
"{{ slsdotpath }}-file-manager-helper":
|
|
file.symlink:
|
|
- require:
|
|
- file: "{{ slsdotpath }}-terminal-helper"
|
|
- name: /usr/local/bin/qvm-file-manager
|
|
- target: /usr/local/bin/qvm-terminal
|
|
- user: root
|
|
- group: root
|
|
- force: True
|
|
- makedirs: True
|
|
|
|
"{{ slsdotpath }}-copy-to-dom0-helper":
|
|
file.managed:
|
|
- name: /usr/local/bin/qvm-copy-to-dom0
|
|
- source: salt://{{ slsdotpath }}/files/bin/qvm-copy-to-dom0
|
|
- mode: "0755"
|
|
- user: root
|
|
- group: root
|
|
- makedirs: True
|
|
|
|
{% endif -%}
|