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