Update playbook and improve sway
This commit is contained in:
parent
67da717b93
commit
dd60c6cbc3
|
|
@ -19,3 +19,6 @@
|
|||
[submodule "collections/ansible_collections/l3d/wm"]
|
||||
path = collections/ansible_collections/l3d/wm
|
||||
url = https://github.com/roles-ansible/ansible_collection_wm.git
|
||||
[submodule "collections/ansible_collections/community/crypto"]
|
||||
path = collections/ansible_collections/community/crypto
|
||||
url = https://github.com/ansible-collections/community.crypto.git
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 26b90d5542cdc5f6446fe40d1ad958d9961733be
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 6178c877e69279b0152bbb28ce1bdcd7d932dc9a
|
||||
Subproject commit 65b5c1e1c8c1474039b3401d5baf2947f0775fbf
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 141 KiB |
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
sway__user_list:
|
||||
- user: 'voc'
|
||||
home: '/home/voc'
|
||||
|
||||
sway__wlsunset: false
|
||||
sway__term: 'terminator'
|
||||
sway__term_pkgs: ['terminator']
|
||||
sway__swayidle: false
|
||||
sway__background_image: '/usr/share/cwtv.png'
|
||||
|
||||
sway__swaylock: |
|
||||
image=
|
||||
color=000000ff
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
role cwtv_customisation
|
||||
==========================
|
||||
|
||||
Copy some files like a background image
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
- name: Copy cwtv Logo
|
||||
become: true
|
||||
ansible.builtin.copy:
|
||||
src: 'files/cwtv.png'
|
||||
dest: '/usr/share/cwtv.png'
|
||||
owner: 'voc'
|
||||
group: 'voc'
|
||||
mode: '0444'
|
||||
Loading…
Reference in New Issue