Fix graphic issues in Chromium for specific video cards
This commit is contained in:
parent
fee6a0bc18
commit
fb9ffa53bb
1 changed files with 8 additions and 0 deletions
|
|
@ -8,3 +8,11 @@
|
||||||
- bookworm.yml
|
- bookworm.yml
|
||||||
- cleanup.yml
|
- cleanup.yml
|
||||||
when: ansible_distribution_release == "bookworm"
|
when: ansible_distribution_release == "bookworm"
|
||||||
|
|
||||||
|
- name: Set chromium gl-flags fixing AMD graphic issues
|
||||||
|
ansible.builtin.copy:
|
||||||
|
dest: /etc/chromium.d/fvs
|
||||||
|
content: |
|
||||||
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --use-gl=desktop"
|
||||||
|
when: ansible_board_vendor == "LENOVO" and
|
||||||
|
(ansible_board_name == "312D" or ansible_board_name == "312A")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue