setup-cockpit/roles/i3/tasks/main.yml

116 lines
3.9 KiB
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: Install packages (Archlinux)
become: true
pacman:
name:
- noto-fonts
- i3-gaps
- dmenu
- picom
- xdg-user-dirs
- i3lock
- xsettingsd
- lxappearance
- scrot
- viewnior
- hsetroot
- python-feedparser
- python-matplotlib
- i3blocks
- sysstat
- upower
when: ansible_distribution == 'Archlinux'
- name: Install packages (Debian)
become: true
apt:
name:
- fonts-noto
- i3-wm
- suckless-tools
- picom
- xdg-user-dirs
- i3lock
- xsettingsd
- lxappearance
- scrot
- viewnior
- hsetroot
- libstartup-notification0-dev # build dependency
- python3-matplotlib
- sysstat
- upower
when: ansible_distribution == 'Debian'
- name: Clone repos
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes update=no
with_items:
- { repo: 'https://github.com/addy-dclxvi/i3-starterpack.git', dest: '~/.git_clones/i3-starterpack' }
- { repo: 'https://github.com/vivien/i3blocks-contrib.git', dest: '~/.git_clones/i3blocks-contrib' }
- name: Copy files
copy: src={{ item.src }} dest={{ item.dest }} backup=true
with_items:
- { src: 'i3config', dest: '~/.config/i3/config' }
- { src: 'i3blocksconfig', dest: '~/.config/i3blocks/config' }
- { src: 'xinitrc', dest: '~/.xinitrc' }
- { src: 'xserverrc', dest: '~/.xserverrc' }
- { src: 'Xresources', dest: '~/.Xresources' }
- { src: 'xsettingsd', dest: '~/.xsettingsd' }
- { src: 'picom.conf', dest: '~/.config/picom.conf' }
- name: Symlink files (All)
file: src={{ item.src }} path={{ item.path }} state=link
with_items:
- { src: '~/.config/picom.conf', path: '~/.config/compton.conf' }
- { src: '~/.git_clones/i3-starterpack/.fonts/icomoon/feather.ttf', path: '~/.fonts/icomoon/feather.ttf' }
- { src: '~/.git_clones/i3blocks-contrib/temperature/temperature', path: '~/.config/i3blocks/scripts/temperature' }
- { src: '~/.git_clones/i3blocks-contrib/calendar/calendar', path: '~/.config/i3blocks/scripts/calendar' }
- { src: '~/.git_clones/i3blocks-contrib/cpu_usage/cpu_usage', path: '~/.config/i3blocks/scripts/cpu_usage' }
- name: Symlink files (Archlinux)
file: src={{ item.src }} path={{ item.path }} state=link
with_items:
- { src: '~/.git_clones/i3blocks-contrib/arch-update/arch-update', path: '~/.config/i3blocks/scripts/arch-update' }
when: ansible_distribution == 'Archlinux'
- name: Symlink files (Debian)
file: src={{ item.src }} path={{ item.path }} state=link
with_items:
- { src: '~/.git_clones/i3blocks-contrib/apt-upgrades/apt-upgrades', path: '~/.config/i3blocks/scripts/apt-upgrades' }
when: ansible_distribution == 'Debian'
- name: Copy scripts (All)
copy: src={{ item.src }} dest={{ item.dest }} mode=0755 backup=true
with_items:
- { src: 'nagstamon', dest: '~/.config/i3blocks/scripts/nagstamon' }
- { src: 'battery', dest: '~/.config/i3blocks/scripts/battery' }
- { src: 'free_disk_space', dest: '~/.config/i3blocks/scripts/free_disk_space' }
- { src: 'pub-ip', dest: '~/.config/i3blocks/scripts/pub-ip' }
- name: Copy scripts (Archlinux)
copy: src={{ item.src }} dest={{ item.dest }} mode=0755 backup=true
with_items:
- { src: 'arch_linux_news', dest: '~/.config/i3blocks/scripts/arch_linux_news' }
when: ansible_distribution == 'Archlinux'
- name: Reload font cache
command: fc-cache -fv
- name: Update user dirs
command: xdg-user-dirs-update
- name: Build i3blocks for Debian
block:
- name: Clone
git:
repo: https://github.com/vivien/i3blocks.git
dest: ~/.git_clones/i3blocks
clone: yes
update: no
- name: Build
shell: cd ~/.git_clones/i3blocks && ./autogen.sh && ./configure && make
- name: Install
become: true
shell: cd {{ ansible_facts.user_dir }}/.git_clones/i3blocks && make install
when: ansible_distribution == 'Debian'