From bbbdafee9c0688cb9b22dc15ba9e1eef18c1045f Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Sat, 4 Jul 2020 10:12:52 +0530 Subject: re tux --- bin/.local/bin/fetch | 76 ---------------------------------------------------- 1 file changed, 76 deletions(-) delete mode 100755 bin/.local/bin/fetch (limited to 'bin') diff --git a/bin/.local/bin/fetch b/bin/.local/bin/fetch deleted file mode 100755 index 05cb71e..0000000 --- a/bin/.local/bin/fetch +++ /dev/null @@ -1,76 +0,0 @@ -#!/bin/sh -# -# ufetch-void - tiny system info for void - -## INFO - -# user is already defined -host="$(hostname)" -os='Void Linux' -kernel="$(uname -sr)" -uptime="$(uptime -p | sed 's/up //')" -packages="$(xbps-query -l | wc -l)" -shell="$(basename "$SHELL")" - -## UI DETECTION - -if [ -n "${DE}" ]; then - ui="${DE}" - uitype='DE' -elif [ -n "${WM}" ]; then - ui="${WM}" - uitype='WM' -elif [ -n "${XDG_CURRENT_DESKTOP}" ]; then - ui="${XDG_CURRENT_DESKTOP}" - uitype='DE' -elif [ -n "${DESKTOP_SESSION}" ]; then - ui="${DESKTOP_SESSION}" - uitype='DE' -elif [ -f "${HOME}/.xinitrc" ]; then - ui="$(tail -n 1 "${HOME}/.xinitrc" | cut -d ' ' -f 2)" - uitype='WM' -elif [ -f "${HOME}/.xsession" ]; then - ui="$(tail -n 1 "${HOME}/.xsession" | cut -d ' ' -f 2)" - uitype='WM' -else - ui='unknown' - uitype='UI' -fi - -## DEFINE COLORS - -# probably don't change these -if [ -x "$(command -v tput)" ]; then - bold="$(tput bold)" - black="$(tput setaf 0)" - red="$(tput setaf 1)" - green="$(tput setaf 2)" - yellow="$(tput setaf 3)" - blue="$(tput setaf 4)" - magenta="$(tput setaf 5)" - cyan="$(tput setaf 6)" - white="$(tput setaf 7)" - reset="$(tput sgr0)" -fi - -# you can change these -lc="${reset}${bold}${green}" # labels -nc="${reset}${bold}${green}" # user and hostname -ic="${reset}" # info -c0="${reset}${bold}${green}" # first color -c1="${reset}${green}" # second color - -## OUTPUT - -cat <