swapnil
c1b253f0fe
- Expects xfce to be installed and session is running - Get property name before setting wallpaper because this property differs
88 lines
2.4 KiB
YAML
88 lines
2.4 KiB
YAML
---
|
|
|
|
- name: General Changes | Check if xfce session is running
|
|
shell:
|
|
cmd: "echo $DESKTOP_SESSION"
|
|
register: session_running
|
|
|
|
- name: General Changes | Debug session_running
|
|
debug:
|
|
var: session_running
|
|
|
|
- name: General Changes | Stop execution if xfce session is not running
|
|
fail:
|
|
msg: "xfce session is not running"
|
|
when: session_running.stdout and session_running.stdout != 'xfce'
|
|
|
|
- name: General Changes | Hide icons
|
|
xfconf:
|
|
channel: "xfce4-desktop"
|
|
property: "/desktop-icons/style"
|
|
value_type: "int"
|
|
value: 0
|
|
|
|
- name: General Changes | Update Window Manager - cycle_draw_frame
|
|
xfconf:
|
|
channel: xfwm4
|
|
property: /general/cycle_draw_frame
|
|
value_type: bool
|
|
value: "false"
|
|
|
|
- name: General Changes | Update Window Manager - placement_mode
|
|
xfconf:
|
|
channel: xfwm4
|
|
property: /general/placement_mode
|
|
value_type: string
|
|
value: center
|
|
|
|
- name: General Changes | Update Window Manager - show_dock_shadow
|
|
xfconf:
|
|
channel: xfwm4
|
|
property: /general/show_dock_shadow
|
|
value_type: bool
|
|
value: "false"
|
|
|
|
- name: General Changes | Make sure ~/Downloads directory exists
|
|
file:
|
|
path: "{{ home_directory }}/Downloads"
|
|
state: directory
|
|
|
|
- name: General Changes | Check if already downloaded
|
|
file:
|
|
path: "{{ home_directory }}/Downloads/update-xfce-bigsur"
|
|
state: directory
|
|
register: update_xfce_bigsur_directory
|
|
|
|
- name: General Changes | Download and Unzip update-xfce-bigsur.zip
|
|
unarchive:
|
|
src: "{{ update_xfce_bigsur_file_url }}"
|
|
dest: "{{ home_directory }}/Downloads"
|
|
remote_src: yes
|
|
when: update_xfce_bigsur_directory.changed
|
|
|
|
- name: General Changes | Copy wallpapers to ~/Pictures
|
|
copy:
|
|
src: "{{ home_directory }}/Downloads/update-xfce-bigsur/wallpapers"
|
|
dest: "{{ home_directory }}/Pictures"
|
|
remote_src: yes
|
|
|
|
- name: General Changes | Get propery name for setting wallpaper
|
|
shell:
|
|
cmd: "xfconf-query -c xfce4-desktop -l | grep 'last-image$'"
|
|
register: wallpaper_property
|
|
|
|
- name: Debug | Debug wallpaper_property
|
|
debug:
|
|
var: wallpaper_property
|
|
|
|
- name: Debug | Debug wallpaper_property.stdout_lines
|
|
debug:
|
|
var: wallpaper_property.stdout_lines[0]
|
|
|
|
- name: General Changes | Change wallpaper
|
|
xfconf:
|
|
channel: "xfce4-desktop"
|
|
property: "{{ wallpaper_property.stdout_lines[0] }}"
|
|
value_type: string
|
|
value: "{{ home_directory }}/Pictures/wallpapers/2560x1440.png"
|