Alpha Chen 8 months ago
parent 3d424223c9
commit 43bf24f5a8
Signed by: alpha
SSH Key Fingerprint: SHA256:3fOT8fiYQG/aK9ntivV3Bqtg8AYQ7q4nV6ZgihOA20g

@ -11,10 +11,3 @@
dest: ~/{{ item }} dest: ~/{{ item }}
state: link state: link
loop: "{{ ls_dotfiles.stdout_lines | difference(['.git', '.gitmodules']) }}" loop: "{{ ls_dotfiles.stdout_lines | difference(['.git', '.gitmodules']) }}"
- name: Symlink Prezto runcoms
file:
src: "{{ item }}"
dest: ~/.{{ item | basename }}
state: link
with_fileglob: "~/.zprezto/runcoms/z*"

@ -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

Loading…
Cancel
Save