Add alacritty as the main terminal.
This commit is contained in:
@@ -122,12 +122,16 @@
|
|||||||
|
|
||||||
## Files ##
|
## 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
|
- name: General | Account Management | Users | Files | RC Variables
|
||||||
set_fact:
|
set_fact:
|
||||||
alias_cp: alias cp='cp -v'
|
alias_cp: alias cp='cp -v'
|
||||||
alias_mv: alias mv='mv -v'
|
alias_mv: alias mv='mv -v'
|
||||||
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
|
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
|
||||||
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
|
|
||||||
function_wttr: |
|
function_wttr: |
|
||||||
function weather() {
|
function weather() {
|
||||||
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
|
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
|
||||||
@@ -1113,8 +1117,9 @@
|
|||||||
|
|
||||||
- name: General | Account Management | Users | Files | Common Variable
|
- name: General | Account Management | Users | Files | Common Variable
|
||||||
set_fact:
|
set_fact:
|
||||||
rc_profile: |
|
profile_common: |
|
||||||
{{ export_path_additions }}
|
{{ export_path_additions }}
|
||||||
|
{{ export_terminal }}
|
||||||
rc_common: |
|
rc_common: |
|
||||||
# Fixes "command not found" when using aliases within functions.
|
# Fixes "command not found" when using aliases within functions.
|
||||||
shopt -s expand_aliases
|
shopt -s expand_aliases
|
||||||
@@ -1198,7 +1203,7 @@
|
|||||||
blockinfile:
|
blockinfile:
|
||||||
path: "{{ user_root.home }}/{{ item }}"
|
path: "{{ user_root.home }}/{{ item }}"
|
||||||
block: |
|
block: |
|
||||||
{{ rc_profile }}
|
{{ profile_common }}
|
||||||
|
|
||||||
[[ $(whoami) != "root" ]] &&
|
[[ $(whoami) != "root" ]] &&
|
||||||
echo "`date` - Ansible .profile loaded successfully!"
|
echo "`date` - Ansible .profile loaded successfully!"
|
||||||
|
|||||||
Reference in New Issue
Block a user