dotfiles/.ansible/roles/linux_desktop/tasks/software.yaml

91 lines
1.9 KiB
YAML
Raw Permalink Normal View History

- name: Adding repositories
2019-01-13 18:04:27 +00:00
tags:
- install
- repos
2019-02-23 11:53:41 +00:00
include: includes/repos.yaml
2019-01-20 10:51:09 +00:00
loop: "{{ linux_repos }}"
2019-02-23 11:53:41 +00:00
loop_control:
loop_var: repo
- name: Installing packages
2019-01-13 18:04:27 +00:00
tags:
- install
- packages
package:
name: "{{ item }}"
state: present
2019-01-20 10:51:09 +00:00
loop: "{{ linux_packages }}"
become: true
- name: Installing Snaps
2019-01-13 18:04:27 +00:00
tags:
- install
- snaps
# snap:
# name: "{{ item }}"
# state: present
command: "snap install {{ item }}"
2019-01-20 10:51:09 +00:00
loop: "{{ linux_apps }}"
become: true
2019-02-22 20:45:44 +00:00
- name: Ensure shared fonts directory exists
tags:
- install
- fonts
file:
path: '~/.local/share/fonts'
state: directory
2019-01-13 16:53:08 +00:00
- name: Checking for Modern Pictogram font
2019-01-13 18:04:27 +00:00
tags:
- install
- fonts
2019-01-13 16:53:08 +00:00
stat:
2019-01-13 18:04:27 +00:00
path: '~/.local/share/fonts/modernpics.otf'
2019-01-13 16:53:08 +00:00
register: fontfile
- name: Installing fonts
2019-01-13 18:04:27 +00:00
tags:
- install
- fonts
block:
- name: Create temporary file for Modern Pictograms font
tempfile:
state: file
2019-01-13 18:04:27 +00:00
suffix: '.zip'
register: fontzip
- name: Download Modern Pictograms font
get_url:
url: https://www.fontsquirrel.com/fonts/download/modern-pictograms
dest: "{{ fontzip.path }}"
force: true
register: fetchurl
- name: Unzip Modern Pictograms font
unarchive:
src: "{{ fontzip.path }}"
2019-01-13 18:04:27 +00:00
dest: '~/.local/share/fonts'
exclude: '*.txt'
- name: Remove temporary file
file:
path: "{{ fontzip.path }}"
state: absent
- name: Refresh font cache
2019-01-13 18:04:27 +00:00
command: 'fc-cache -f'
2019-04-24 20:35:20 +01:00
when: not fontfile.stat.exists
2019-02-01 21:22:04 +00:00
- name: 'Gnome extensions'
tags:
- install
- gnome
2019-02-01 21:22:04 +00:00
block:
- name: Galaxy role to install Gnome extensions
command: ansible-galaxy install jaredhocutt.gnome_extensions
- name: Include jaredhocutt.gnome_extensions
include_role:
name: jaredhocutt.gnome_extensions