From 3861f2fad43e63eb55ba54541555cb2cbbece666 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 17 Jul 2026 17:32:01 -0700 Subject: [PATCH] Add alacritty as the main terminal. --- tasks/general/acct_mgmt/users.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tasks/general/acct_mgmt/users.yml b/tasks/general/acct_mgmt/users.yml index f78e2d4..2c09548 100644 --- a/tasks/general/acct_mgmt/users.yml +++ b/tasks/general/acct_mgmt/users.yml @@ -122,12 +122,16 @@ ## Files ## +- name: General | Account Management | Users | Files | Profile Variables + set_fact: + export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH" + export_terminal: export TERMINAL="alacritty" + - name: General | Account Management | Users | Files | RC Variables set_fact: alias_cp: alias cp='cp -v' alias_mv: alias mv='mv -v' alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"' - export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH" function_wttr: | function weather() { # 20210301 - Someone showed me an awesome weather API! Had to implement it! @@ -1113,8 +1117,9 @@ - name: General | Account Management | Users | Files | Common Variable set_fact: - rc_profile: | + profile_common: | {{ export_path_additions }} + {{ export_terminal }} rc_common: | # Fixes "command not found" when using aliases within functions. shopt -s expand_aliases @@ -1198,7 +1203,7 @@ blockinfile: path: "{{ user_root.home }}/{{ item }}" block: | - {{ rc_profile }} + {{ profile_common }} [[ $(whoami) != "root" ]] && echo "`date` - Ansible .profile loaded successfully!"