qusal/salt/electrum/configure-common.sls
2024-02-18 17:08:09 +01:00

49 lines
1.1 KiB
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' -%}
include:
- dev.home-cleanup
- dotfiles.copy-x11
- dotfiles.copy-sh
"{{ slsdotpath }}-do-not-check-for-updates":
cmd.run:
- name: electrum --offline setconfig check_updates false
- runas: user
"{{ slsdotpath }}-show-contacts-tab":
cmd.run:
- name: electrum --offline setconfig show_contacts_tab true
- runas: user
"{{ slsdotpath }}-show-addresses-tab":
cmd.run:
- name: electrum --offline setconfig show_addresses_tab true
- runas: user
"{{ slsdotpath }}-show-utxo-tab":
cmd.run:
- name: electrum --offline setconfig show_utxo_tab true
- runas: user
"{{ slsdotpath }}-show-notes-tab":
cmd.run:
- name: electrum --offline setconfig show_notes_tab true
- runas: user
"{{ slsdotpath }}-xprofile-to-increase-dpi":
file.managed:
- name: /home/user/.config/x11/xprofile.d/electrum.sh
- source: salt://{{ slsdotpath }}/files/client/xprofile.d/electrum.sh
- mode: '0755'
- user: user
- group: user
- makedirs: True
{% endif -%}