move teiler to media role

Teiler depends on ffmpeg, which is not installed at the time the i3 role
is executed.
This commit is contained in:
Pig Monkey 2015-12-04 18:45:21 -08:00
parent 60e3a59b86
commit 7c19a532e9
3 changed files with 36 additions and 36 deletions

View file

@ -39,39 +39,3 @@
pacman: name=i3-wm state=present
tags:
- rofi
- name: Download teiler (rofi screenshot app)
command: cower -dq teiler-git
chdir=/home/{{ user.name }}/{{ aur.dir }}
creates=/home/{{ user.name }}/{{ aur.dir }}/teiler-git
tags:
- aur
- rofi
become: yes
become_user: "{{ user.name }}"
- name: Build and install teiler
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/teiler-git"
tags:
- aur
- rofi
become: yes
become_user: "{{ user.name }}"
- name: Download copyq (clipboard mgr)
command: cower -dq copyq-git
chdir=/home/{{ user.name }}/{{ aur.dir }}
creates=/home/{{ user.name }}/{{ aur.dir }}/copyq-git
tags:
- aur
- rofi
become: yes
become_user: "{{ user.name }}"
- name: Build and install copyq
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/copyq-git"
tags:
- aur
- rofi
become: yes
become_user: "{{ user.name }}"

View file

@ -10,6 +10,7 @@
- include: feh.yml
- include: calibre.yml
- include: pianobar.yml
- include: teiler.yml
- name: Install misc media codecs and helpers
pacman: name={{ item }} state=present

View file

@ -0,0 +1,35 @@
- name: Download teiler (rofi screenshot app)
command: cower -dq teiler-git
chdir=/home/{{ user.name }}/{{ aur.dir }}
creates=/home/{{ user.name }}/{{ aur.dir }}/teiler-git
tags:
- aur
- teiler
become: yes
become_user: "{{ user.name }}"
- name: Build and install teiler
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/teiler-git"
tags:
- aur
- teiler
become: yes
become_user: "{{ user.name }}"
- name: Download copyq (clipboard mgr)
command: cower -dq copyq-git
chdir=/home/{{ user.name }}/{{ aur.dir }}
creates=/home/{{ user.name }}/{{ aur.dir }}/copyq-git
tags:
- aur
- teiler
become: yes
become_user: "{{ user.name }}"
- name: Build and install copyq
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/copyq-git"
tags:
- aur
- teiler
become: yes
become_user: "{{ user.name }}"