Set graphics settings and order favorites

This commit is contained in:
2021-12-08 20:02:49 -05:00
parent 203e6f58dd
commit 8228b78c4c
5 changed files with 18 additions and 5 deletions

View File

@@ -6,13 +6,15 @@
- name: Create autostart-scripts directory
file:
path: "/home/{{ item.name }}/.config/autostart-scripts/"
path: "{{ homedir }}/.config/autostart-scripts/"
state: directory
owner: "{{ item.name }}"
group: "{{ item.name }}"
loop: "{{ users }}"
- name: Enable KDE dark theme
copy:
dest: "/home/{{ item.name }}/.config/autostart-scripts/darkmode.sh"
dest: "{{ homedir }}/.config/autostart-scripts/darkmode.sh"
mode: a+x
content: |
#!/bin/bash
@@ -34,7 +36,6 @@
- name: Change favorites menu
template:
src: favorites.sh.j2
dest: "/home/{{ item.name }}/.config/autostart-scripts/favorites.sh"
dest: "{{ homedir }}/.config/autostart-scripts/favorites.sh"
mode: a+x
loop: "{{ users }}"
tags: debug