Initial commit
This commit is contained in:
commit
d48ff80f07
8 changed files with 345 additions and 0 deletions
30
roles/desktop-environment/tasks/main.yml
Normal file
30
roles/desktop-environment/tasks/main.yml
Normal file
|
@ -0,0 +1,30 @@
|
|||
- name: Install packages for desktop environment
|
||||
become: yes
|
||||
apt:
|
||||
state: latest
|
||||
name:
|
||||
- sway
|
||||
- xwayland
|
||||
- swaylock
|
||||
- waybar
|
||||
- xfce4-appfinder
|
||||
- pipewire
|
||||
- pipewire-pulse
|
||||
- alsa-utils
|
||||
- brightnessctl
|
||||
- flatpak
|
||||
- thunar
|
||||
- adwaita-icon-theme
|
||||
- fonts-firacode
|
||||
- fonts-font-awesome
|
||||
- fonts-noto-color-emoji
|
||||
|
||||
- name: Install wezterm
|
||||
become: yes
|
||||
community.general.flatpak:
|
||||
name: org.wezfurlong.wezterm
|
||||
state: present
|
||||
|
||||
- name: Copy config files
|
||||
src: {{ role_path }}/files/
|
||||
dst: {{ ansible_env.HOME }}
|
Loading…
Add table
Add a link
Reference in a new issue