diff --git a/tasks/general/acct_mgmt/users.yml b/tasks/general/acct_mgmt/users.yml index 5e21ade..c740db9 100644 --- a/tasks/general/acct_mgmt/users.yml +++ b/tasks/general/acct_mgmt/users.yml @@ -93,6 +93,8 @@ alias_cp: alias cp='cp -v' alias_mv: alias mv='mv -v' alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"' + alias_clean: alias clean='mv * ~/TRASH/' + alias_clean_trash: alias clean-trash='sh -c "rm -rfv ~/TRASH/*"' path_additions: export PATH="~/bin:$PATH" function_wttr: | function weather() { @@ -121,6 +123,8 @@ {{ alias_cp }} {{ alias_mv }} {{ alias_rm }} + {{ alias_clean }} + {{ alias_clean_trash }} {{ function_wttr }} {{ PS1 }} @@ -154,4 +158,4 @@ - "{{ user_root.home }}" - "{{ user_ling.home }}" ignore_errors: yes - when: user_root.home != "" and user_ling.home != "" \ No newline at end of file + when: user_root.home != "" and user_ling.home != ""