-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi3.yaml
60 lines (60 loc) · 1.42 KB
/
i3.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
- name: Install i3 and related packages
hosts: work_machine
become: no
tasks:
- name: "i3 - core"
become: yes
package:
name:
- i3-wm
- i3lock
state: present
- name: "i3 - System"
become: yes
package:
name:
- conky
state: present
- name: "i3 - display"
become: yes
package:
name:
- autorandr
- arandr
- picom
state: present
- name: "i3 - OS bar and applets"
become: yes
package:
name:
- polybar
- pavucontrol
- pipewire # Pipewire is the new audio server, the one I managed to make my bluetooth speaker work with
- pipewire-alsa
- pipewire-pulse
- pipewire-audio
- playerctl # CLI control for spotify integration in polybar
- xfce4-power-manager
- xfce4-battery-plugin
state: present
- name: "i3 - Apps and utils"
become: yes
package:
name:
- thunar
- rofi
- redshift
- flameshot
state: present
# TODO install i3wsr
- name: "i3 - OS specific i3 packages"
become: yes
import_playbook: "./os-specific.yaml"
vars:
tasks:
- polkit
- network-manager-applet
- volume-applet
- settings-manager
- display-manager # for greeting screen
- i3-extras