initial checkin

This commit is contained in:
Radar231 2021-07-22 23:14:56 -04:00
commit 2cf46a61a4
1 changed files with 22 additions and 0 deletions

22
tasks/main.yml Normal file
View File

@ -0,0 +1,22 @@
---
###########################################################
#
###########################################################
# tasks file for pfetch
- name: Add PF_INFO variable to our .bashrc
blockinfile:
path: "{{ homedir }}/.bashrc"
block: |
export PF_INFO="ascii title os host kernel uptime pkgs memory wm de shell editor"
/usr/local/bin/pfetch
- name: Copy pfetch script https://github.com/dylanaraps/pfetch
get_url:
url: https://raw.githubusercontent.com/dylanaraps/pfetch/master/pfetch
dest: /usr/local/bin/pfetch
mode: "0755"
owner: root
group: root
# EOF