From 3f41f3f08ab3558eecaaaf97694f5b7268440809 Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Fri, 31 Mar 2023 20:34:42 -0400 Subject: linux_desktop: remove MATE, add qogir theme --- roles/linux_desktop/tasks/main.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'roles/linux_desktop/tasks/main.yml') diff --git a/roles/linux_desktop/tasks/main.yml b/roles/linux_desktop/tasks/main.yml index 857815e..8666668 100644 --- a/roles/linux_desktop/tasks/main.yml +++ b/roles/linux_desktop/tasks/main.yml @@ -36,22 +36,14 @@ dest: /etc/systemd/system/default.target state: link -- name: generate gdm configuration - template: - src: etc/gdm/custom.conf.j2 - dest: /etc/gdm/custom.conf - notify: restart gdm - - name: check if graphical target is active command: systemctl is-active graphical.target register: graphical_target changed_when: false failed_when: false -- name: start display manager - command: systemctl isolate graphical.target - when: graphical_target.rc != 0 - notify: restart gdm +- name: configure display manager + include_tasks: '{{ linux_desktop_display_manager }}.yml' - name: enable fractional scaling copy: @@ -108,4 +100,7 @@ src: usr/local/share/thumbnailers/totem.thumbnailer dest: /usr/local/share/thumbnailers/totem.thumbnailer +- import_tasks: theme.yml + tags: theme + - import_tasks: freeipa.yml -- cgit