Some pinebook love
This commit is contained in:
parent
16bb2362ad
commit
34f8692dc2
3 changed files with 65 additions and 5 deletions
|
@ -93,20 +93,30 @@
|
|||
become: yes
|
||||
when: arch_based
|
||||
|
||||
- name: Enable pacman ParallelDownloads
|
||||
lineinfile:
|
||||
path: /etc/pacman.conf
|
||||
regexp: '^#?ParallelDownloads'
|
||||
line: 'ParallelDownloads = 5'
|
||||
insertafter: '^\[options\]$'
|
||||
become: yes
|
||||
when: arch_based
|
||||
|
||||
- name: Enable pacman colors
|
||||
lineinfile:
|
||||
path: /etc/pacman.conf
|
||||
regexp: "^#?Color"
|
||||
line: "Color"
|
||||
regexp: '^#?Color'
|
||||
line: 'Color'
|
||||
insertafter: '^\[options\]$'
|
||||
become: yes
|
||||
when: arch_based
|
||||
|
||||
- name: Enable pacman pac-man
|
||||
lineinfile:
|
||||
path: /etc/pacman.conf
|
||||
regexp: "^#?ILoveCandy"
|
||||
line: "ILoveCandy"
|
||||
insertafter: "^#?Color"
|
||||
regexp: '^#?ILoveCandy'
|
||||
line: 'ILoveCandy'
|
||||
insertafter: '^#?Color'
|
||||
become: yes
|
||||
when: arch_based
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue