#!/usr/bin/env bash # no rice no life - display system info # colors f="3" b="4" for j in f b; do for i in {0..7} ; do printf -v "$j$i" "%b" "\e[${!j}${i}m" done done bld=$'\e[1m' rst=$'\e[0m' inv=$'\e[7m' # detect user="$(whoami)" host="$(hostname)" kernel="$(uname -r)" kernel="${kernel%-*}" kernel="${kernel%_*}" shell="$(basename "$SHELL")" os() { os="$(source "/etc/os-release" && echo "$ID")" export "os" } wm() { id="$(xprop -root -notype "_NET_SUPPORTING_WM_CHECK")" id="${id##* }" wm="$(xprop -id "$id" -notype -len "100" -f "_NET_WM_NAME" "8t")" wm="${wm/*_NET_WM_NAME = }" wm="${wm/\"}" wm="${wm/\"*}" wm="${wm,,}" export "wm" } init() { init="$(readlink "/sbin/init")" init="${init##*/}" init="${init%%-*}" export "init" } # exec os wm init cat << EOF ${rst} /${f6} / ${rst}os: ${f6}$os${rst} ${rst} /_${f6} _ __. // ______ _ ${rst}shell: ${f6}$shell${rst} ${rst}/ /