Minor linting fixes
This commit is contained in:
parent
06fd813616
commit
c070df6753
2 changed files with 7 additions and 3 deletions
|
@ -43,7 +43,7 @@
|
|||
when: ansible_facts['distribution'] == 'Debian'
|
||||
|
||||
- name: Clone repos
|
||||
git: repo={{ item.repo }} dest={{ item.dest }} clone=yes update=no version=master
|
||||
git: repo={{ item.repo }} dest={{ item.dest }} clone=true update=false version=master
|
||||
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'}
|
||||
|
@ -120,6 +120,7 @@
|
|||
dest: ~/.git_clones/i3blocks
|
||||
clone: true
|
||||
update: false
|
||||
version: master
|
||||
- name: Build
|
||||
shell:
|
||||
cmd: ./autogen.sh && ./configure && make
|
||||
|
|
|
@ -17,18 +17,21 @@
|
|||
file:
|
||||
path: ~/.config/kitty
|
||||
state: directory
|
||||
mode: 0755
|
||||
|
||||
- name: Copy kitty config
|
||||
copy:
|
||||
src: kitty.conf
|
||||
dest: ~/.config/kitty/kitty.conf
|
||||
mode: 0644
|
||||
|
||||
- name: Clone kitty-themes
|
||||
git:
|
||||
repo: https://github.com/dexpota/kitty-themes.git
|
||||
dest: ~/.git_clones/kitty-themes
|
||||
clone: yes
|
||||
update: no
|
||||
clone: true
|
||||
update: false
|
||||
version: master
|
||||
|
||||
- name: Symlink the kitty theme
|
||||
file:
|
||||
|
|
Loading…
Add table
Reference in a new issue