35 lines
911 B
YAML
35 lines
911 B
YAML
---
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Create directory to store xpple menu
|
|
file:
|
|
path: /root/Downloads/xpple_menu/
|
|
state: directory
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Download and Unzip
|
|
unarchive:
|
|
src: "{{ xpple_menu_url }}"
|
|
dest: /root/Downloads/xpple_menu/
|
|
remote_src: yes
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Ensure that applications directory exists
|
|
file:
|
|
path: /root/.local/share/applications/
|
|
state: directory
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Copy applications
|
|
copy:
|
|
src: /root/Downloads/xpple_menu/applications/
|
|
dest: /root/.local/share/applications/
|
|
remote_src: yes
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Create ./config/menu/ directory
|
|
file:
|
|
path: /root/.config/menu/
|
|
state: directory
|
|
|
|
- name: Xfce Pannel | Xpple Menu - Copy xpple.menu
|
|
copy:
|
|
src: /root/Downloads/xpple_menu/xpple.menu
|
|
dest: /root/.config/menu/
|
|
remote_src: yes
|