fix: conditionally add .spicetify to PATH and comment out Zen browser tasks
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 28s
Nix Format Check / check-format (push) Failing after 1m25s
Python Lint Check / check-python (push) Failing after 19s

This commit is contained in:
2025-07-18 15:51:10 +02:00
parent 2c3159729b
commit b78cae3c58
2 changed files with 11 additions and 7 deletions

View File

@@ -88,7 +88,10 @@ export DOTFILES_PATH=$HOME/.dotfiles
export PATH=$PATH:$HOME/.local/bin
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:$DOTFILES_PATH/bin
export PATH=$PATH:$HOME/.spicetify
if [ -d "$HOME/.spicetify" ]; then
export PATH=$PATH:$HOME/.spicetify
fi
# Include pnpm if it exists
if [ -d "$HOME/.local/share/pnpm" ]; then

View File

@@ -24,12 +24,13 @@
ansible.builtin.import_tasks: tasks/workstations/snaps.yml
when: ansible_facts.packages.snapd is defined and 'microsoft-standard-WSL2' not in ansible_kernel
- name: Include Zen browser tasks
ansible.builtin.import_tasks: tasks/workstations/zen-browser.yml
vars:
browser_name: "zen"
browser_executable: "zen"
when: "'microsoft-standard-WSL2' not in ansible_kernel"
# Disabled for now since we are not using Zen browser anymore in favor of Brave
# - name: Include Zen browser tasks
# ansible.builtin.import_tasks: tasks/workstations/zen-browser.yml
# vars:
# browser_name: "zen"
# browser_executable: "zen"
# when: "'microsoft-standard-WSL2' not in ansible_kernel"
- name: Include 1Password Browsers tasks
ansible.builtin.import_tasks: tasks/workstations/1password-browsers.yml