mirror of
https://github.com/pigmonkey/spark.git
synced 2026-01-23 02:24:09 +00:00
34 lines
603 B
YAML
34 lines
603 B
YAML
---
|
|
- name: Install i3
|
|
pacman:
|
|
name:
|
|
- i3-wm
|
|
- i3blocks
|
|
- i3lock
|
|
- i3status
|
|
state: present
|
|
|
|
- name: Install py3status
|
|
pacman:
|
|
name: py3status
|
|
state: present
|
|
|
|
- name: Install wmfocus
|
|
pacman:
|
|
name: wmfocus
|
|
state: present
|
|
|
|
- name: Verify that default applications file exists
|
|
copy:
|
|
content: ""
|
|
dest: /etc/xdg/mimeapps.list
|
|
force: false
|
|
|
|
- name: Verify header in default applications file
|
|
lineinfile:
|
|
dest: /etc/xdg/mimeapps.list
|
|
state: present
|
|
line: '[Default Applications]'
|
|
insertbefore: BOF
|
|
|
|
- include_tasks: rofi.yml
|