desktop-config/roles/desktop-environment/tasks/utils.yml

46 lines
992 B
YAML
Raw Normal View History

2024-02-25 20:30:31 +01:00
- name: Install utilities
become: yes
apt:
state: latest
install_recommends: false
name:
- swaylock
- swaybg
- swayidle
2024-02-25 20:30:31 +01:00
- waybar
- wofi
2024-02-25 20:30:31 +01:00
- xdg-desktop-portal-wlr
- xdg-desktop-portal-gtk
- xfce4-appfinder
- rtkit
- pipewire
- pipewire-pulse
- wireplumber
- qpwgraph
- alsa-utils
- brightnessctl
- gnome-keyring
- adwaita-icon-theme
- fonts-firacode
- fonts-font-awesome
- fonts-noto-color-emoji
2024-10-12 16:42:26 +02:00
- thunar
- dunst
2024-10-12 18:11:35 +02:00
- polkit-kde-agent-1
- slurp
- grim
2025-02-04 18:10:47 +01:00
- swappy
- name: Install zsh
become: yes
apt:
state: present
install_recommends: false
name: zsh
register: zsh_installation
- name: Install Oh My Zsh
ansible.builtin.command:
cmd: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
chdir: "{{ ansible_env.HOME }}"
when: zsh_installation is changed