Newer WSL2 has issues with `xclip`/`xsel` behaviour which cause Windows GUI's to freeze waiting for input from an already exited process. Switching to `win32yank.exe` for clipboard integrations.
18 lines
263 B
YAML
18 lines
263 B
YAML
---
|
|
- name: install apt packages
|
|
become: true
|
|
apt:
|
|
name:
|
|
- tmux
|
|
- gawk
|
|
- sysstat
|
|
- urlview
|
|
state: latest
|
|
|
|
- name: install apt package
|
|
when: '"WSL" not in ansible_kernel'
|
|
become: true
|
|
apt:
|
|
name: xsel
|
|
state: latest
|