Minor changes

This commit is contained in:
flyingscorpio@clevo 2022-10-14 19:02:13 +02:00
parent 0fa7a792d6
commit b4c5c9421f

View file

@ -131,21 +131,21 @@
command: xdg-user-dirs-update
- name: Build i3blocks for Debian
when: ansible_facts['distribution'] == 'Debian'
block:
- name: Clone
- name: Clone i3blocks for Debian
git:
repo: https://github.com/vivien/i3blocks.git
dest: ~/.git_clones/i3blocks
clone: true
update: false
version: master
- name: Build
- name: Build i3blocks for Debian
shell:
cmd: ./autogen.sh && ./configure && make
chdir: ~/.git_clones/i3blocks
- name: Install
- name: Install i3blocks for Debian
become: true
command:
cmd: make install
chdir: "{{ ansible_facts.user_dir }}/.git_clones/i3blocks"
when: ansible_facts['distribution'] == 'Debian'