mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-08 18:24:48 +02:00
12 lines
313 B
YAML
12 lines
313 B
YAML
- name: Install Gnome Terminal
|
|
# @see https://en.wikipedia.org/wiki/GNOME_Terminal
|
|
community.general.pacman:
|
|
name:
|
|
- gnome-terminal
|
|
state: present
|
|
|
|
- name: "Set zsh as default shell for {{users.client.username}}"
|
|
user:
|
|
name: "{{users.client.username}}"
|
|
shell: /usr/bin/zsh
|
|
become: true |