|
|
@ -11,18 +11,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
# macOS things
|
|
|
|
# macOS things
|
|
|
|
|
|
|
|
|
|
|
|
- name: Import terminal profile
|
|
|
|
# Not needed anymore since I've switched to kitty
|
|
|
|
ansible.builtin.command: open ~/.macos/Alpha.terminal
|
|
|
|
#
|
|
|
|
|
|
|
|
# - name: Import terminal profile
|
|
|
|
- name: Set terminal profile to be the default
|
|
|
|
# ansible.builtin.command: open ~/.macos/Alpha.terminal
|
|
|
|
osx_defaults:
|
|
|
|
#
|
|
|
|
domain: com.apple.Terminal
|
|
|
|
# - name: Set terminal profile to be the default
|
|
|
|
key: "{{ item }} Window Settings"
|
|
|
|
# osx_defaults:
|
|
|
|
type: string
|
|
|
|
# domain: com.apple.Terminal
|
|
|
|
value: Alpha
|
|
|
|
# key: "{{ item }} Window Settings"
|
|
|
|
with_items:
|
|
|
|
# type: string
|
|
|
|
- Default
|
|
|
|
# value: Alpha
|
|
|
|
- Startup
|
|
|
|
# with_items:
|
|
|
|
|
|
|
|
# - Default
|
|
|
|
|
|
|
|
# - Startup
|
|
|
|
|
|
|
|
|
|
|
|
- import_playbook: homebrew.yml
|
|
|
|
- import_playbook: homebrew.yml
|
|
|
|
|
|
|
|
|
|
|
@ -32,5 +34,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
- hosts: all
|
|
|
|
- hosts: all
|
|
|
|
tasks:
|
|
|
|
tasks:
|
|
|
|
|
|
|
|
# https://tratt.net/laurie/blog/2024/faster_shell_startup_with_shell_switching.html
|
|
|
|
|
|
|
|
- name: Set default shell to sh
|
|
|
|
|
|
|
|
user:
|
|
|
|
|
|
|
|
name: alpha
|
|
|
|
|
|
|
|
shell: /bin/sh --login
|
|
|
|
- ansible.builtin.command: "luarocks install fennel"
|
|
|
|
- ansible.builtin.command: "luarocks install fennel"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# vim: ft=yaml.ansible
|
|
|
|