Compare commits

..

No commits in common. "0a385259a57e472d637ba619048a8fa48640e4a8" and "9bd29dcdd26f936b058eafeb18476307e97a27b1" have entirely different histories.

3 changed files with 2 additions and 30 deletions

View File

@ -1,16 +0,0 @@
---
- import_playbook: UnixCLI.yaml
- hosts: localhost
vars_files:
- vars/environment.yaml
roles:
- role: system-info
- hosts: localhost
vars_files:
- vars/environment.yaml
roles:
- role: fonts
- role: iterm
- role: kitty
- role: neovide
- role: macos

View File

@ -7,5 +7,3 @@
domain: com.apple.desktopservices domain: com.apple.desktopservices
key: DSDontWriteNetworkStores key: DSDontWriteNetworkStores
value: 'true' value: 'true'
# TODO: ^Space Keyboard Shortcut for switching Input Sources

View File

@ -4,21 +4,11 @@
register: launchd_running_services register: launchd_running_services
changed_when: false changed_when: false
- set_fact:
system_info_plist_dir: '{{ansible_env.HOME}}/Library/LaunchAgents'
- name: create plist directory
file:
state: directory
path: '{{system_info_plist_dir}}'
- name: determine if system-info is currently running - name: determine if system-info is currently running
set_fact: set_fact:
system_info_debug: true system_info_debug: true
system_info_plist_path: system_info_plist_path: '{{ansible_env.HOME}}/Library/LaunchAgents/system-info.plist'
'{{system_info_plist_dir}}/system-info.plist' system_info_running: "{{'system-info' in launchd_running_services.stdout}}"
system_info_running:
"{{'system-info' in launchd_running_services.stdout}}"
- name: install system-info launchd plist - name: install system-info launchd plist
template: template: