From d214600a49a7332f25dbcc12d9b19e1d9fc7a34a Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Thu, 13 Apr 2023 18:48:27 -0400 Subject: linux_desktop: workaround for xfce-screensaver user switching bug --- roles/linux_desktop/tasks/main.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'roles/linux_desktop') diff --git a/roles/linux_desktop/tasks/main.yml b/roles/linux_desktop/tasks/main.yml index 16aace3..cd5745d 100644 --- a/roles/linux_desktop/tasks/main.yml +++ b/roles/linux_desktop/tasks/main.yml @@ -83,16 +83,11 @@ changed_when: no loop: '{{ linux_desktop_flatpak_overrides | dict2items }}' -- name: create /usr/local/share/thumbnailers +# https://gitlab.xfce.org/apps/xfce4-screensaver/-/issues/39 +- name: workaround user switching bug for xfce-screensaver file: - path: /usr/local/share/thumbnailers - state: directory - -# see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=973942 -- name: patch totem thumbnailer to support large mp4 files - copy: - src: usr/local/share/thumbnailers/totem.thumbnailer - dest: /usr/local/share/thumbnailers/totem.thumbnailer + path: /usr/share/dbus-1/services/org.xfce.ScreenSaver.service + state: absent - import_tasks: theme.yml tags: theme -- cgit