@@ -0,0 +1,2 @@ | |||||
user-db:user | |||||
system-db:local |
@@ -0,0 +1,40 @@ | |||||
--- | |||||
- name: install required debian packages | |||||
apt: | |||||
pkg: | |||||
- dconf-cli | |||||
- name: dconf profile directory | |||||
file: | |||||
path: /etc/dconf/profile | |||||
state: directory | |||||
- name: dconf profile dbs setting | |||||
copy: | |||||
src: dconf-lock/profile/user | |||||
dest: /etc/dconf/profile/user | |||||
notify: dconf update | |||||
- name: dconf local db directory | |||||
file: | |||||
path: /etc/dconf/db/local.d/ | |||||
state: directory | |||||
- name: dconf settings | |||||
template: | |||||
src: settings.j2 | |||||
dest: /etc/dconf/db/local.d/{{dconf_lock_id}} | |||||
notify: dconf update | |||||
- name: dconf locks directory | |||||
file: | |||||
path: /etc/dconf/db/local.d/locks | |||||
state: directory | |||||
- name: dconf locks | |||||
template: | |||||
src: locks.j2 | |||||
dest: /etc/dconf/db/local.d/locks/{{dconf_lock_id}} | |||||
notify: dconf update |
@@ -0,0 +1 @@ | |||||
{{ dconf_lock_paths | join("\n") }} |
@@ -0,0 +1,6 @@ | |||||
{% for path in dconf_lock_settings %} | |||||
[{{path[1:]}}] | |||||
{% for key in dconf_lock_settings[path] %} | |||||
{{key}}={{dconf_lock_settings[path][key]}} | |||||
{% endfor %} | |||||
{% endfor %} |
@@ -38,7 +38,7 @@ desktop_packages: | |||||
# fonts | # fonts | ||||
- fonts-font-awesome | - fonts-font-awesome | ||||
# graphic | |||||
# graphics | |||||
- gimp | - gimp | ||||
- gimp-help-de | - gimp-help-de | ||||
- inkscape | - inkscape | ||||
@@ -110,6 +110,8 @@ desktop_packages: | |||||
- xkbset | - xkbset | ||||
- numlockx | - numlockx | ||||
- unclutter | - unclutter | ||||
- x11-utils | |||||
- feh | |||||
# web | # web | ||||
- firefox-esr | - firefox-esr | ||||
@@ -121,6 +123,12 @@ desktop_packages: | |||||
# xfce | # xfce | ||||
- xfce4 | - xfce4 | ||||
# i3 | |||||
- i3-wm | |||||
- i3blocks | |||||
- i3status | |||||
- i3pystatus | |||||
# themes | # themes | ||||
- dmz-cursor-theme | - dmz-cursor-theme | ||||
- gnome-brave-icon-theme | - gnome-brave-icon-theme | ||||