Skip to content

Commit

Permalink
Add woofetch
Browse files Browse the repository at this point in the history
  • Loading branch information
ACuteWoof committed Sep 12, 2021
1 parent b81de9c commit 9cc2be9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions woofetch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh

echo -e "\033[93m╭───"
echo -e "\033[93m│ \033[1m\033[95m$USER@$(uname -n)\033[0m"
echo -e "\033[93m│ \033[1m\033[93mKernel \033[0m$(uname -s) $(uname -r)"
echo -e "\033[93m│ \033[1m\033[93mOS \033[0m$(cat /etc/*release | grep -i pretty_name | awk -F "=" '{print $2}' | sed 's/"//g')"
echo -e "\033[93m│ \033[1m\033[93mHost \033[0m$(uname -m)"
echo -e "\033[93m│ \033[1m\033[93mProcessor \033[0m$(cat /proc/cpuinfo | grep 'model name' | uniq | cut -d' ' -f3-)"
echo -e "\033[93m│ \033[1m\033[93mMemory \033[0m$(cat /proc/meminfo | grep 'MemTotal' | uniq | cut -d' ' -f3- | xargs)"
echo -e "\033[93m│ \033[1m\033[93mUptime \033[0m$(uptime | awk '{print $3}' | awk -F "," '{print $1}')"
echo -e "\033[93m│ \033[1m\033[93mEditor \033[0m$EDITOR"
echo -e "\033[93m│ \033[1m\033[93mBackground Colors \033[40m \033[41m \033[42m \033[43m \033[44m \033[45m \033[46m \033[47m \033[0m"
echo -e "\033[93m╰───"

0 comments on commit 9cc2be9

Please sign in to comment.