1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-24 00:16:06 +02:00
eoli3n-dotfiles/roles/packages/tasks/by_os/archlinux/main.yml
2020-01-02 00:24:53 +01:00

56 lines
1.1 KiB
YAML

---
- name: Install Desktop packages [Archlinux]
pacman:
name:
- wayland
- xorg-server-xwayland
- sway
- waybar
- grim # screenshots
- slurp # select region
- wl-clipboard # clipboard
- playerctl # spotify
- lxappearance
- connman
- ttf-hack
- termite
- variety
#- weechat
- tiny
state: present
become: True
when: meta == "desktop"
- name: Install Laptop packages [Archlinux]
pacman:
name:
- xbindkeys
state: present
become: True
when: meta == "laptop"
- name: AUR Desktop packages [Archlinux]
aur:
name:
- kernel-modules-hook
- trizen
- google-chrome
- connman-gtk
- gnome-ssh-askpass2
- otf-font-awesome
- spotify
- equilux-theme
- paper-icon-theme
- rofi
- swaylock-fancy-git
- gtk-theme-minwaita #https://github.com/Alexays/Waybar/issues/515
skip_installed: yes
when: meta == "desktop"
- name: AUR Laptop packages [Archlinux]
aur:
name:
- light-git #laptop only ?
skip_installed: yes
when: meta == "laptop"