-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rodrigo Siqueira <[email protected]>
- Loading branch information
1 parent
b3fe55d
commit 4cc9f51
Showing
4 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
- name: Install media packages | ||
package: | ||
name: "{{ packages }}" | ||
state: latest | ||
vars: | ||
packages: | ||
- mpg123 | ||
- vlc | ||
- simplescreenrecorder | ||
- pavucontrol # Helps me to control my input/output devices | ||
#- openshot # A very simple and useful video editor | ||
#- youtube-dl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
--- | ||
- name: Install mpg123 (my favorite music player) | ||
pacman: name=mpg123 state=latest | ||
|
||
- name: Install vlc (Video player) | ||
pacman: name=vlc state=latest | ||
|
||
- name: Install youtube-dl (Download youtube videos) | ||
pacman: name=youtube-dl state=latest | ||
|
||
# A very useful screen recorder | ||
- name: A feature-rich screen recorder that supports X11 and OpenGL | ||
pacman: name=simplescreenrecorder state=latest | ||
|
||
# A very simple and useful video editor | ||
- name: An open-source, non-linear video editor for Linux based on MLT framework | ||
pacman: name=openshot state=latest | ||
|
||
# Application that helps me to control my input/output devices | ||
- name: PulseAudio Volume Control | ||
pacman: name=pavucontrol state=latest | ||
- include: arch.yml | ||
when: ansible_os_family == 'Archlinux' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- name: Install pdf files | ||
package: | ||
name: "{{ packages }}" | ||
state: latest | ||
vars: | ||
packages: | ||
- gv | ||
- okular | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
--- | ||
- name: Install gv | ||
pacman: name=gv state=latest | ||
|
||
- name: Install okular | ||
pacman: name=okular state=latest | ||
- include: arch.yml | ||
when: ansible_os_family == 'Archlinux' |