2016-01-03 19:09:23 -07:00
|
|
|
|
#!/usr/bin/env bash
|
2016-04-11 18:21:11 -06:00
|
|
|
|
# set -x
|
2016-10-30 01:18:15 -06:00
|
|
|
|
# vim: fdm=marker:noai:ts=4:sw=4:expandtab
|
2016-01-29 08:14:29 -07:00
|
|
|
|
#
|
2016-11-05 18:27:43 -06:00
|
|
|
|
# Neofetch: Simple system information script.
|
2016-02-27 17:44:45 -07:00
|
|
|
|
# https://github.com/dylanaraps/neofetch
|
2015-12-30 03:18:17 -07:00
|
|
|
|
#
|
|
|
|
|
# Created by Dylan Araps
|
2016-01-04 21:02:24 -07:00
|
|
|
|
# https://github.com/dylanaraps/
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-03-31 16:47:48 -06:00
|
|
|
|
version="${BASH_VERSION/.*}"
|
2016-03-30 17:35:56 -06:00
|
|
|
|
SYS_LOCALE="${LANG:-C}"
|
2016-03-31 16:47:48 -06:00
|
|
|
|
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-${HOME}/.config}"
|
2016-02-23 15:30:11 -07:00
|
|
|
|
|
|
|
|
|
# Speed up script by not using unicode
|
2016-01-02 23:54:16 -07:00
|
|
|
|
export LC_ALL=C
|
2016-02-04 00:42:54 -07:00
|
|
|
|
export LANG=C
|
2016-01-06 00:34:34 -07:00
|
|
|
|
|
2016-06-13 00:14:03 -06:00
|
|
|
|
# Set no case match.
|
|
|
|
|
shopt -s nocasematch
|
2016-02-20 14:42:17 -07:00
|
|
|
|
|
2016-08-12 01:05:14 -06:00
|
|
|
|
# Gather Info {{{
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Operating System {{{
|
|
|
|
|
|
2016-08-13 05:28:23 -06:00
|
|
|
|
getos() {
|
|
|
|
|
case "$(uname)" in
|
|
|
|
|
"Linux") os="Linux" ;;
|
|
|
|
|
"Darwin") os="$(sw_vers -productName)" ;;
|
2016-10-15 20:48:25 -06:00
|
|
|
|
*"BSD" | "DragonFly" | "Bitrig") os="BSD" ;;
|
2016-08-13 05:28:23 -06:00
|
|
|
|
"CYGWIN"*) os="Windows" ;;
|
|
|
|
|
"SunOS") os="Solaris" ;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
"Haiku") os="Haiku" ;;
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"GNU"*) os="GNU" ;;
|
2016-08-13 05:28:23 -06:00
|
|
|
|
*) printf "%s\n" "Unknown OS detected: $(uname)"; exit 1 ;;
|
|
|
|
|
esac
|
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-08-13 21:26:30 -06:00
|
|
|
|
# Model {{{
|
|
|
|
|
|
|
|
|
|
getmodel() {
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux")
|
2016-08-29 08:20:46 -06:00
|
|
|
|
if [ -d "/system/app/" ] && [ -d "/system/priv-app" ]; then
|
|
|
|
|
model="$(getprop ro.product.brand) $(getprop ro.product.model)"
|
|
|
|
|
|
|
|
|
|
elif [ -f /sys/devices/virtual/dmi/id/product_name ] ||\
|
2016-08-26 16:48:43 -06:00
|
|
|
|
[ -f /sys/devices/virtual/dmi/id/product_version ]; then
|
2016-10-24 17:25:10 -06:00
|
|
|
|
model="$(< /sys/devices/virtual/dmi/id/product_name)"
|
|
|
|
|
model+=" $(< /sys/devices/virtual/dmi/id/product_version)"
|
2016-08-26 16:48:43 -06:00
|
|
|
|
model="${model/To Be Filled*}"
|
|
|
|
|
|
|
|
|
|
elif [ -f /sys/firmware/devicetree/base/model ]; then
|
|
|
|
|
model="$(< /sys/firmware/devicetree/base/model)"
|
|
|
|
|
|
|
|
|
|
elif [ -f /tmp/sysinfo/model ]; then
|
|
|
|
|
model="$(< /tmp/sysinfo/model)"
|
|
|
|
|
fi
|
2016-08-13 21:26:30 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-08-13 22:16:25 -06:00
|
|
|
|
"Mac OS X") model="$(sysctl -n hw.model)" ;;
|
2016-08-13 21:26:30 -06:00
|
|
|
|
"iPhone OS")
|
2016-11-06 02:34:51 -07:00
|
|
|
|
case "${ios_model:="$(uname -m)"}" in
|
2016-08-13 21:26:30 -06:00
|
|
|
|
"iPad1,1") model="iPad" ;;
|
|
|
|
|
"iPad2,"[1-4]) model="iPad2" ;;
|
|
|
|
|
"iPad3,"[1-3]) model="iPad3" ;;
|
|
|
|
|
"iPad3,"[4-6]) model="iPad4" ;;
|
|
|
|
|
"iPad4,"[1-3]) model="iPad Air" ;;
|
|
|
|
|
"iPad5,"[3-4]) model="iPad Air 2" ;;
|
|
|
|
|
"iPad6,"[7-8]) model="iPad Pro (12.9 Inch)" ;;
|
|
|
|
|
"iPad6,"[3-4]) model="iPad Pro (9.7 Inch)" ;;
|
|
|
|
|
"iPad2,"[5-7]) model="iPad mini" ;;
|
|
|
|
|
"iPad4,"[4-6]) model="iPad mini 2" ;;
|
|
|
|
|
"iPad4,"[7-9]) model="iPad mini 3" ;;
|
|
|
|
|
"iPad5,"[1-2]) model="iPad mini 4" ;;
|
|
|
|
|
|
|
|
|
|
"iPhone1,1") model="iPhone" ;;
|
|
|
|
|
"iPhone1,2") model="iPhone 3G" ;;
|
|
|
|
|
"iPhone2,1") model="iPhone 3GS" ;;
|
|
|
|
|
"iPhone3,"[1-3]) model="iPhone 4" ;;
|
|
|
|
|
"iPhone4,1") model="iPhone 4S" ;;
|
|
|
|
|
"iPhone5,"[1-2]) model="iPhone 4" ;;
|
|
|
|
|
"iPhone5,"[3-4]) model="iPhone 5c" ;;
|
|
|
|
|
"iPhone6,"[1-2]) model="iPhone 5s" ;;
|
|
|
|
|
"iPhone7,2") model="iPhone 6" ;;
|
|
|
|
|
"iPhone7,1") model="iPhone 6 Plus" ;;
|
|
|
|
|
"iPhone8,1") model="iPhone 6s" ;;
|
|
|
|
|
"iPhone8,2") model="iPhone 6s Plus" ;;
|
|
|
|
|
"iPhone8,4") model="iPhone SE" ;;
|
2016-11-05 18:27:43 -06:00
|
|
|
|
"iPhone9,1" | "iPhone9,3") model="iPhone 7" ;;
|
|
|
|
|
"iPhone9,2" | "iPhone9,4") model="iPhone 7 Plus" ;;
|
2016-08-13 21:26:30 -06:00
|
|
|
|
|
|
|
|
|
"iPod1,1") model="iPod touch" ;;
|
|
|
|
|
"ipod2,1") model="iPod touch 2G" ;;
|
|
|
|
|
"ipod3,1") model="iPod touch 3G" ;;
|
|
|
|
|
"ipod4,1") model="iPod touch 4G" ;;
|
|
|
|
|
"ipod5,1") model="iPod touch 5G" ;;
|
|
|
|
|
"ipod7,1") model="iPod touch 6G" ;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
2016-08-13 23:23:19 -06:00
|
|
|
|
|
2016-08-18 18:39:12 -06:00
|
|
|
|
"BSD")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
model="$(sysctl -n hw.vendor hw.product)"
|
2016-08-18 18:39:12 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-08-13 23:23:19 -06:00
|
|
|
|
"Windows")
|
|
|
|
|
model="$(wmic computersystem get manufacturer,model /value)"
|
|
|
|
|
model="${model/Manufacturer'='}"
|
|
|
|
|
model="${model/Model'='}"
|
2016-10-01 19:01:22 -06:00
|
|
|
|
model="${model//*To Be Filled*}"
|
2016-08-13 23:23:19 -06:00
|
|
|
|
;;
|
2016-08-14 04:41:09 -06:00
|
|
|
|
|
|
|
|
|
"Solaris")
|
|
|
|
|
model="$(prtconf -b | awk -F':' '/banner-name/ {printf $2}')"
|
|
|
|
|
;;
|
2016-08-13 21:26:30 -06:00
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Distro {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getdistro() {
|
2016-06-12 00:18:49 -06:00
|
|
|
|
[ "$distro" ] && return
|
2016-02-14 18:39:02 -07:00
|
|
|
|
|
2016-04-04 08:59:04 -06:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "GNU")
|
2016-11-06 02:04:24 -07:00
|
|
|
|
if grep -q -F 'Microsoft' /proc/version >/dev/null || \
|
|
|
|
|
grep -q -F 'Microsoft' /proc/sys/kernel/osrelease >/dev/null; then
|
2016-09-18 03:58:01 -06:00
|
|
|
|
case "$distro_shorthand" in
|
2016-11-04 22:06:45 -06:00
|
|
|
|
"on") distro="$(lsb_release -sir) [Windows 10]" ;;
|
2016-09-18 03:58:01 -06:00
|
|
|
|
"tiny") distro="Windows 10" ;;
|
2016-11-04 22:06:45 -06:00
|
|
|
|
*) distro="$(lsb_release -sd) on Windows 10" ;;
|
2016-09-18 03:58:01 -06:00
|
|
|
|
esac
|
2016-10-01 18:33:31 -06:00
|
|
|
|
ascii_distro="Windows 10"
|
2016-09-18 03:58:01 -06:00
|
|
|
|
|
2016-10-31 06:23:09 -06:00
|
|
|
|
elif [ -f "/etc/redstar-release" ]; then
|
|
|
|
|
case "$distro_shorthand" in
|
|
|
|
|
"on" | "tiny") distro="Red Star OS" ;;
|
|
|
|
|
*) distro="Red Star OS $(awk -F'[^0-9*]' '$0=$2' /etc/redstar-release)"
|
|
|
|
|
esac
|
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p lsb_release >/dev/null; then
|
2016-08-28 10:11:01 -06:00
|
|
|
|
case "$distro_shorthand" in
|
2016-10-24 17:30:41 -06:00
|
|
|
|
"on") lsb_flags="-sir" ;;
|
|
|
|
|
"tiny") lsb_flags="-si" ;;
|
|
|
|
|
*) lsb_flags="-sd" ;;
|
2016-08-28 10:11:01 -06:00
|
|
|
|
esac
|
2016-11-04 22:06:45 -06:00
|
|
|
|
distro="$(lsb_release $lsb_flags)"
|
2016-02-16 03:54:21 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p guix >/dev/null; then
|
2016-08-29 08:36:57 -06:00
|
|
|
|
distro="GuixSD"
|
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p crux >/dev/null; then
|
2016-04-04 08:59:04 -06:00
|
|
|
|
distro="$(crux)"
|
2016-08-31 08:43:53 -06:00
|
|
|
|
case "$distro_shorthand" in
|
|
|
|
|
"on") distro="${distro//version}" ;;
|
|
|
|
|
"tiny") distro="${distro//version*}" ;;
|
|
|
|
|
esac
|
2016-02-13 03:14:50 -07:00
|
|
|
|
|
2016-08-27 16:59:11 -06:00
|
|
|
|
elif [ -d "/system/app/" ] && [ -d "/system/priv-app" ]; then
|
|
|
|
|
distro="Android $(getprop ro.build.version.release)"
|
|
|
|
|
|
2016-04-04 08:59:04 -06:00
|
|
|
|
else
|
2016-11-01 05:43:22 -06:00
|
|
|
|
# Source the os-release file
|
|
|
|
|
for file in /etc/*ease /usr/lib/*ease; do
|
2016-11-04 22:06:45 -06:00
|
|
|
|
source "$file"
|
2016-11-01 05:43:22 -06:00
|
|
|
|
done
|
|
|
|
|
|
2016-08-31 08:43:53 -06:00
|
|
|
|
case "$distro_shorthand" in
|
2016-11-06 03:21:23 -07:00
|
|
|
|
"on") distro="${NAME:-"${DISTRIB_ID}"} ${VERSION_ID:-"${DISTRIB_RELEASE}"}" ;;
|
|
|
|
|
"tiny") distro="${NAME:-"${DISTRIB_ID:-"${TAILS_PRODUCT_NAME}"}"}" ;;
|
|
|
|
|
"off") distro="${PRETTY_NAME:-"${DISTRIB_DESCRIPTION}"} ${UBUNTU_CODENAME}" ;;
|
2016-08-31 08:43:53 -06:00
|
|
|
|
esac
|
2016-11-01 05:43:22 -06:00
|
|
|
|
|
|
|
|
|
# Workarounds for distros that go against the os-release standard.
|
2016-11-06 02:46:41 -07:00
|
|
|
|
[ -z "${distro// }" ] && distro="$(awk '/BLAG/ {print $1; exit}' /etc/*ease /usr/lib/*ease)"
|
|
|
|
|
[ -z "${distro// }" ] && distro="$(awk -F'=' '{print $2; exit}' /etc/*ease /usr/lib/*ease)"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
fi
|
2016-08-31 08:43:53 -06:00
|
|
|
|
distro="${distro//\"}"
|
|
|
|
|
distro="${distro//\'}"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
;;
|
2016-01-03 15:21:13 -07:00
|
|
|
|
|
2016-04-04 08:59:04 -06:00
|
|
|
|
"Mac OS X")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
osx_version="$(sw_vers -productVersion)"
|
|
|
|
|
osx_build="$(sw_vers -buildVersion)"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
|
2016-08-13 22:33:36 -06:00
|
|
|
|
case "$osx_version" in
|
|
|
|
|
"10.4"*) codename="Mac OS X Tiger" ;;
|
|
|
|
|
"10.5"*) codename="Mac OS X Leopard" ;;
|
|
|
|
|
"10.6"*) codename="Mac OS X Snow Leopard" ;;
|
|
|
|
|
"10.7"*) codename="Mac OS X Lion" ;;
|
|
|
|
|
"10.8"*) codename="OS X Mountain Lion" ;;
|
|
|
|
|
"10.9"*) codename="OS X Mavericks" ;;
|
|
|
|
|
"10.10"*) codename="OS X Yosemite" ;;
|
|
|
|
|
"10.11"*) codename="OS X El Capitan" ;;
|
|
|
|
|
"10.12"*) codename="macOS Sierra" ;;
|
2016-10-15 06:20:25 -06:00
|
|
|
|
*) codename="macOS" ;;
|
2016-04-04 08:59:04 -06:00
|
|
|
|
esac
|
|
|
|
|
distro="$codename $osx_version $osx_build"
|
2016-10-07 23:40:59 -06:00
|
|
|
|
|
|
|
|
|
case "$distro_shorthand" in
|
2016-11-06 03:21:23 -07:00
|
|
|
|
"on") distro="${distro/ "${osx_build}"}" ;;
|
2016-10-07 23:40:59 -06:00
|
|
|
|
"tiny")
|
|
|
|
|
case "$osx_version" in
|
2016-10-17 06:48:30 -06:00
|
|
|
|
"10."[4-7]*) distro="${distro/${codename}/Mac OS X}" ;;
|
2016-10-17 06:59:54 -06:00
|
|
|
|
"10."[8-9]* | "10.1"[0-1]*) distro="${distro/${codename}/OS X}" ;;
|
2016-10-17 06:48:30 -06:00
|
|
|
|
"10.12"*) distro="${distro/${codename}/macOS}" ;;
|
2016-10-07 23:40:59 -06:00
|
|
|
|
esac
|
2016-11-06 03:21:23 -07:00
|
|
|
|
distro="${distro/ "${osx_build}"}"
|
2016-10-17 06:48:30 -06:00
|
|
|
|
;;
|
2016-10-07 23:40:59 -06:00
|
|
|
|
esac
|
2016-04-04 08:59:04 -06:00
|
|
|
|
;;
|
2016-01-17 18:09:37 -07:00
|
|
|
|
|
2016-05-07 04:39:00 -06:00
|
|
|
|
"iPhone OS")
|
2016-05-07 19:41:45 -06:00
|
|
|
|
distro="iOS $(sw_vers -productVersion)"
|
|
|
|
|
|
|
|
|
|
# "uname -m" doesn't print architecture on iOS so we force it off.
|
|
|
|
|
os_arch="off"
|
2016-05-07 04:39:00 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-04-04 08:59:04 -06:00
|
|
|
|
"BSD")
|
2016-10-30 01:18:15 -06:00
|
|
|
|
case "$distro_shorthand" in
|
|
|
|
|
"tiny" | "on") distro="$(uname -s)" ;;
|
|
|
|
|
*) distro="$(uname -sr)" ;;
|
|
|
|
|
esac
|
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
distro="${distro/DragonFly/DragonFlyBSD}"
|
2016-05-13 23:19:09 -06:00
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
# Workarounds for FreeBSD based distros.
|
2016-05-13 23:24:18 -06:00
|
|
|
|
[ -f "/etc/pcbsd-lang" ] && distro="PCBSD"
|
2016-08-05 14:01:48 -06:00
|
|
|
|
[ -f "/etc/pacbsd-release" ] && distro="PacBSD"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
;;
|
2016-01-31 14:40:10 -07:00
|
|
|
|
|
2016-04-04 08:59:04 -06:00
|
|
|
|
"Windows")
|
|
|
|
|
distro="$(wmic os get Caption /value)"
|
|
|
|
|
|
|
|
|
|
# Strip crap from the output of wmic
|
2016-06-11 23:51:48 -06:00
|
|
|
|
distro="${distro/Caption'='}"
|
|
|
|
|
distro="${distro/Microsoft }"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
;;
|
2016-08-02 04:52:01 -06:00
|
|
|
|
|
|
|
|
|
"Solaris")
|
2016-10-14 06:09:57 -06:00
|
|
|
|
case "$distro_shorthand" in
|
|
|
|
|
"on" | "tiny") distro="$(awk 'NR==1{print $1 " " $2;}' /etc/release)" ;;
|
|
|
|
|
*) distro="$(awk 'NR==1{print $1 " " $2 " " $3;}' /etc/release)" ;;
|
|
|
|
|
esac
|
2016-10-23 05:41:22 -06:00
|
|
|
|
distro="${distro/\(*}"
|
2016-08-02 04:52:01 -06:00
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
distro="$(uname -sv | awk '{print $1 " " $2}')"
|
|
|
|
|
;;
|
2016-04-04 08:59:04 -06:00
|
|
|
|
esac
|
2016-01-03 15:21:13 -07:00
|
|
|
|
|
2016-01-31 21:02:42 -07:00
|
|
|
|
# Get architecture
|
2016-04-04 08:49:21 -06:00
|
|
|
|
[ "$os_arch" == "on" ] && \
|
|
|
|
|
distro+=" $(uname -m)"
|
2016-04-04 08:59:04 -06:00
|
|
|
|
|
2016-08-18 18:03:33 -06:00
|
|
|
|
[ "${ascii_distro:-auto}" == "auto" ] && \
|
|
|
|
|
ascii_distro="$(trim "$distro")"
|
2016-01-29 05:54:12 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Title {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
gettitle() {
|
2016-08-25 20:07:26 -06:00
|
|
|
|
title="${USER:-$(whoami || printf "%s" "${HOME/*\/}")}@${HOSTNAME:-$(hostname)}"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Kernel {{{
|
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
getkernel() {
|
2016-01-28 16:26:32 -07:00
|
|
|
|
case "$kernel_shorthand" in
|
2016-11-06 00:08:09 -06:00
|
|
|
|
"on") kernel_flags="-r" ;;
|
|
|
|
|
"off") kernel_flags="-sr" ;;
|
2016-01-28 16:26:32 -07:00
|
|
|
|
esac
|
2016-10-30 01:18:15 -06:00
|
|
|
|
|
|
|
|
|
# Hardcode kernel settings in BSDs
|
2016-11-06 00:08:09 -06:00
|
|
|
|
if [ "$os" == "BSD" ] && [[ ! "$distro" =~ (PacBSD|PCBSD) ]]; then
|
|
|
|
|
case "$distro_shorthand" in
|
|
|
|
|
"on" | "tiny") kernel=$(uname -r) ;;
|
|
|
|
|
*) unset kernel ;;
|
|
|
|
|
esac
|
|
|
|
|
else
|
|
|
|
|
kernel="$(uname $kernel_flags)"
|
|
|
|
|
fi
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Uptime {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getuptime() {
|
2016-11-04 18:46:08 -06:00
|
|
|
|
# Since Haiku's uptime cannot be fetched in seconds, a case outside
|
|
|
|
|
# the usual case is needed
|
2016-01-02 23:54:16 -07:00
|
|
|
|
case "$os" in
|
2016-11-04 18:46:08 -06:00
|
|
|
|
"Haiku")
|
|
|
|
|
uptime="$(uptime -u)"
|
|
|
|
|
uptime="${uptime/up }"
|
2016-01-03 15:21:13 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
*)
|
|
|
|
|
# Get uptime in seconds
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux" | "Windows")
|
|
|
|
|
seconds="$(< /proc/uptime)"
|
|
|
|
|
seconds="${seconds/.*}"
|
|
|
|
|
;;
|
2016-01-03 21:30:14 -07:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
"Mac OS X" | "iPhone OS" | "BSD")
|
|
|
|
|
boot="$(sysctl -n kern.boottime)"
|
|
|
|
|
boot="${boot/'{ sec = '}"
|
|
|
|
|
boot="${boot/,*}"
|
2016-04-28 18:05:35 -06:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
# Get current date in seconds
|
|
|
|
|
now="$(date +%s)"
|
|
|
|
|
seconds="$((now - boot))"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Solaris")
|
|
|
|
|
seconds="$(kstat -p unix:0:system_misc:snaptime | awk '{print $2}')"
|
|
|
|
|
seconds="${seconds/.*}"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-04-28 18:05:35 -06:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
days="$((seconds / 60 / 60 / 24)) days"
|
|
|
|
|
hours="$((seconds / 60 / 60 % 24)) hours"
|
|
|
|
|
minutes="$((seconds / 60 % 60)) minutes"
|
2016-04-28 18:27:43 -06:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
case "$days" in
|
|
|
|
|
"0 days") unset days ;;
|
|
|
|
|
"1 days") days="${days/s}" ;;
|
|
|
|
|
esac
|
2016-04-28 18:27:43 -06:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
case "$hours" in
|
|
|
|
|
"0 hours") unset hours ;;
|
|
|
|
|
"1 hours") hours="${hours/s}" ;;
|
|
|
|
|
esac
|
2016-08-02 04:52:01 -06:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
case "$minutes" in
|
|
|
|
|
"0 minutes") unset minutes ;;
|
|
|
|
|
"1 minutes") minutes="${minutes/s}" ;;
|
|
|
|
|
esac
|
2016-01-03 20:31:21 -07:00
|
|
|
|
|
2016-11-04 15:46:29 -06:00
|
|
|
|
uptime="${days:+$days, }${hours:+$hours, }${minutes}"
|
|
|
|
|
uptime="${uptime%', '}"
|
|
|
|
|
uptime="${uptime:-${seconds} seconds}"
|
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
esac
|
2016-10-21 03:06:51 -06:00
|
|
|
|
|
2016-01-26 17:53:12 -07:00
|
|
|
|
# Make the output of uptime smaller.
|
2016-01-25 18:16:39 -07:00
|
|
|
|
case "$uptime_shorthand" in
|
|
|
|
|
"on")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
uptime="${uptime/minutes/mins}"
|
|
|
|
|
uptime="${uptime/minute/min}"
|
|
|
|
|
uptime="${uptime/seconds/secs}"
|
2016-01-25 18:16:39 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"tiny")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
uptime="${uptime/ days/d}"
|
|
|
|
|
uptime="${uptime/ day/d}"
|
|
|
|
|
uptime="${uptime/ hours/h}"
|
|
|
|
|
uptime="${uptime/ hour/h}"
|
|
|
|
|
uptime="${uptime/ minutes/m}"
|
|
|
|
|
uptime="${uptime/ minute/m}"
|
|
|
|
|
uptime="${uptime/ seconds/s}"
|
2016-10-20 17:00:09 -06:00
|
|
|
|
uptime="${uptime//,}"
|
2016-01-25 18:16:39 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2015-12-30 03:18:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Package Count {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getpackages() {
|
2016-02-15 05:59:05 -07:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "iPhone OS" | "Solaris" | "GNU")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p pacman >/dev/null && \
|
2016-02-15 05:59:05 -07:00
|
|
|
|
packages="$(pacman -Qq --color never | wc -l)"
|
2016-02-15 04:59:28 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p dpkg >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(dpkg --get-selections | grep -cv deinstall$)))"
|
2016-04-11 19:17:21 -06:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p /sbin/pkgtool >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -1 /var/log/packages | wc -l)))"
|
2016-02-15 21:21:45 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p rpm >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(rpm -qa | wc -l)))"
|
2016-02-14 15:28:51 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p xbps-query >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(xbps-query -l | wc -l)))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p pkginfo >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(pkginfo -i | wc -l)))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p pisi >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(pisi list-installed | wc -l)))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p pkg >/dev/null; then
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -1 /var/db/pkg | wc -l)))"
|
2016-10-23 05:36:59 -06:00
|
|
|
|
[ "$packages" == "0" ] && packages="$((packages+=$(pkg list | wc -l)))"
|
2016-10-25 18:18:37 -06:00
|
|
|
|
fi
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p emerge >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -d /var/db/pkg/*/* | wc -l)))"
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p nix-env >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -d -1 /nix/store/*/ | wc -l)))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p guix >/dev/null && \
|
2016-08-27 02:42:56 -06:00
|
|
|
|
packages="$((packages+=$(ls -d -1 /gnu/store/*/ | wc -l)))"
|
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p apk >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(apk info | wc -l)))"
|
2016-03-09 04:43:52 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p opkg >/dev/null && \
|
2016-08-25 20:17:58 -06:00
|
|
|
|
packages="$((packages+=$(opkg list-installed | wc -l)))"
|
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p pacman-g2 >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(pacman-g2 -Q | wc -l)))"
|
2016-02-15 22:31:55 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p cave >/dev/null && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -d -1 /var/db/paludis/repositories/cross-installed/*/data/* /var/db/paludis/repositories/installed/data/* | wc -l)))"
|
2016-02-14 01:42:27 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-02-15 05:59:05 -07:00
|
|
|
|
"Mac OS X")
|
2016-04-26 01:31:13 -06:00
|
|
|
|
[ -d "/usr/local/bin" ] && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$(($(ls -l /usr/local/bin/ | grep -v "\(../Cellar/\|brew\)" | wc -l) - 1))"
|
2016-01-17 06:30:58 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p port >/dev/null && \
|
2016-11-06 03:21:23 -07:00
|
|
|
|
packages="$((packages + "$(port installed | wc -l)" - 1))"
|
2016-01-17 06:30:58 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p brew >/dev/null && \
|
2016-11-06 03:21:23 -07:00
|
|
|
|
packages="$((packages + "$(find /usr/local/Cellar -maxdepth 1 | wc -l)" - 1))"
|
2016-01-17 06:30:58 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p pkgin >/dev/null && \
|
2016-11-06 03:21:23 -07:00
|
|
|
|
packages="$((packages + "$(pkgin list | wc -l)"))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"BSD")
|
2016-08-11 04:48:34 -06:00
|
|
|
|
case "$distro" in
|
|
|
|
|
# PacBSD has both pacman and pkg, but only pacman is used
|
|
|
|
|
"PacBSD"*) packages="$(pacman -Qq --color never | wc -l)" ;;
|
2016-01-17 22:22:21 -07:00
|
|
|
|
|
2016-08-11 04:48:34 -06:00
|
|
|
|
*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p pkg_info >/dev/null; then
|
2016-08-11 04:48:34 -06:00
|
|
|
|
packages="$(pkg_info | wc -l)"
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p pkg >/dev/null; then
|
2016-08-11 04:48:34 -06:00
|
|
|
|
packages="$(pkg info | wc -l)"
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-01-17 18:09:37 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-02-15 05:59:05 -07:00
|
|
|
|
"Windows")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
packages="$(cygcheck -cd | wc -l)"
|
2016-01-26 17:53:12 -07:00
|
|
|
|
|
|
|
|
|
# Count chocolatey packages
|
2016-04-26 01:31:13 -06:00
|
|
|
|
[ -d "/cygdrive/c/ProgramData/chocolatey/lib" ] && \
|
2016-06-12 00:12:21 -06:00
|
|
|
|
packages="$((packages+=$(ls -1 /cygdrive/c/ProgramData/chocolatey/lib | wc -l)))"
|
2016-01-04 22:32:34 -07:00
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
packages="$(ls -1 /boot/system/package-links | wc -l)"
|
|
|
|
|
;;
|
2016-01-02 23:54:16 -07:00
|
|
|
|
esac
|
2016-10-20 16:15:03 -06:00
|
|
|
|
|
|
|
|
|
[ "$packages" == "0" ] && unset packages
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Shell {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getshell() {
|
2016-01-28 17:04:35 -07:00
|
|
|
|
case "$shell_path" in
|
2016-02-04 17:43:19 -07:00
|
|
|
|
"on") shell="$SHELL" ;;
|
|
|
|
|
"off") shell="${SHELL##*/}" ;;
|
2016-01-28 17:04:35 -07:00
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
if [ "$shell_version" == "on" ]; then
|
2016-02-04 17:43:19 -07:00
|
|
|
|
shell+=" "
|
2016-11-06 00:08:09 -06:00
|
|
|
|
case "${SHELL##*/}" in
|
|
|
|
|
"bash")
|
|
|
|
|
shell+="$(bash --version)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
shell="${shell/ *, version}"
|
2016-11-06 00:08:09 -06:00
|
|
|
|
shell="${shell/$'\n'*}"
|
2016-01-28 17:04:35 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
"zsh")
|
2016-01-28 17:04:35 -07:00
|
|
|
|
shell+="$(zsh --version)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
shell="${shell/ zsh}"
|
2016-01-28 17:04:35 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
"mksh" | "ksh")
|
2016-01-28 21:40:52 -07:00
|
|
|
|
shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
shell="${shell/ * KSH}"
|
2016-01-28 17:04:35 -07:00
|
|
|
|
;;
|
2016-01-28 21:40:52 -07:00
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
"tcsh" | "csh")
|
2016-01-28 21:40:52 -07:00
|
|
|
|
shell+="$("$SHELL" --version)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
shell="${shell/tcsh}"
|
|
|
|
|
shell="${shell/\(*}"
|
2016-01-28 21:40:52 -07:00
|
|
|
|
;;
|
2016-05-20 19:16:53 -06:00
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
"fish")
|
|
|
|
|
shell+="$(fish -c 'printf "%s" "$FISH_VERSION"')"
|
2016-05-20 19:16:53 -06:00
|
|
|
|
;;
|
2016-01-28 17:04:35 -07:00
|
|
|
|
esac
|
2016-06-11 19:11:34 -06:00
|
|
|
|
shell="${shell/\(*\)}"
|
2016-01-28 17:04:35 -07:00
|
|
|
|
fi
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-02-10 04:44:23 -07:00
|
|
|
|
# Desktop Environment {{{
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getde() {
|
2016-03-31 03:26:20 -06:00
|
|
|
|
case "$os" in
|
|
|
|
|
"Mac OS X") de="Aqua" ;;
|
2016-10-22 16:07:04 -06:00
|
|
|
|
"Windows")
|
|
|
|
|
case "$distro" in
|
|
|
|
|
"Windows 8"* | "Windows 10"*) de="Modern UI/Metro" ;;
|
|
|
|
|
*) de="Aero" ;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
|
2016-04-01 09:22:08 -06:00
|
|
|
|
*)
|
|
|
|
|
de="${XDG_CURRENT_DESKTOP/i3}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
de="${de/'X-'}"
|
2016-11-01 17:10:40 -06:00
|
|
|
|
de="${de/Budgie:GNOME/Budgie}"
|
2016-04-01 09:22:08 -06:00
|
|
|
|
;;
|
2016-03-31 03:26:20 -06:00
|
|
|
|
esac
|
2016-04-01 08:51:32 -06:00
|
|
|
|
|
2016-04-04 06:30:49 -06:00
|
|
|
|
if [ -n "$DISPLAY" ] && [ -z "$de" ]; then
|
2016-11-04 22:06:45 -06:00
|
|
|
|
de="$(xprop -root | awk '/KDE_SESSION_VERSION|^_MUFFIN|xfce4|xfce5/')"
|
2016-04-01 08:51:32 -06:00
|
|
|
|
|
2016-04-01 08:55:31 -06:00
|
|
|
|
case "$de" in
|
|
|
|
|
"KDE_SESSION_VERSION"*) de="KDE${de/* = }" ;;
|
2016-05-07 19:30:14 -06:00
|
|
|
|
*"TDE_FULL_SESSION"*) de="Trinity" ;;
|
2016-11-04 22:06:45 -06:00
|
|
|
|
*"MUFFIN"*) de="$(cinnamon --version)"; de="${de:-Cinnamon}" ;;
|
2016-04-01 09:27:25 -06:00
|
|
|
|
*"xfce4"*) de="XFCE4" ;;
|
|
|
|
|
*"xfce5"*) de="XFCE5" ;;
|
2016-04-01 08:55:31 -06:00
|
|
|
|
esac
|
2016-04-01 08:51:32 -06:00
|
|
|
|
fi
|
2016-02-10 04:44:23 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Window Manager {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getwm() {
|
2016-02-20 13:08:50 -07:00
|
|
|
|
if [ -n "$DISPLAY" ] && [ "$os" != "Mac OS X" ]; then
|
2016-11-04 22:06:45 -06:00
|
|
|
|
id="$(xprop -root -notype | awk '$1=="_NET_SUPPORTING_WM_CHECK:"{print $5}')"
|
|
|
|
|
wm="$(xprop -id "$id" -notype -f _NET_WM_NAME 8t)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
wm="${wm/*_NET_WM_NAME = }"
|
|
|
|
|
wm="${wm/\"}"
|
|
|
|
|
wm="${wm/\"*}"
|
2016-02-16 22:54:18 -07:00
|
|
|
|
|
2016-02-24 17:59:38 -07:00
|
|
|
|
# Fallback for Wayland wms
|
|
|
|
|
case "$wm" in
|
2016-11-06 02:04:24 -07:00
|
|
|
|
"xwlc") wm="$(ps -e | grep -m 1 -o -F -e "sway" -e "orbment" -e "velox" -e "orbital")" ;;
|
2016-02-24 17:59:38 -07:00
|
|
|
|
esac
|
|
|
|
|
|
2016-01-30 02:02:20 -07:00
|
|
|
|
else
|
|
|
|
|
case "$os" in
|
2016-02-10 04:44:23 -07:00
|
|
|
|
"Mac OS X") wm="Quartz Compositor" ;;
|
2016-10-17 01:39:56 -06:00
|
|
|
|
"Windows")
|
2016-11-06 02:04:24 -07:00
|
|
|
|
wm="$(tasklist | grep -m 1 -o -F -e "bugn" -e "Windawesome" -e "blackbox" -e "emerge" -e "litestep")"
|
2016-10-17 02:52:31 -06:00
|
|
|
|
[ "$wm" == "blackbox" ] && wm="bbLean (Blackbox)"
|
2016-10-25 18:18:37 -06:00
|
|
|
|
wm="${wm:+$wm, }Explorer"
|
2016-10-17 01:39:56 -06:00
|
|
|
|
;;
|
2016-01-30 02:02:20 -07:00
|
|
|
|
esac
|
2016-01-29 18:56:37 -07:00
|
|
|
|
fi
|
2015-12-30 17:21:10 -07:00
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-03-31 18:23:23 -06:00
|
|
|
|
# Window Manager Theme {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getwmtheme() {
|
2016-03-31 18:28:56 -06:00
|
|
|
|
[ -z "$wm" ] && getwm
|
2016-04-02 19:57:10 -06:00
|
|
|
|
[ -z "$de" ] && getde
|
2016-03-31 18:26:59 -06:00
|
|
|
|
|
2016-03-31 18:28:56 -06:00
|
|
|
|
case "$wm" in
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"E16") wmtheme="$(awk -F "= " '/theme.name/ {print $2}' "$HOME/.e16/e_config--0.0.cfg")";;
|
|
|
|
|
"Sawfish") wmtheme="$(awk -F ")" '/\(quote default-frame-style/ {print $2}' "$HOME/.sawfish/custom")" ;;
|
2016-03-31 18:26:59 -06:00
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Cinnamon" | "Muffin" | "Mutter (Muffin)")
|
2016-03-31 18:35:26 -06:00
|
|
|
|
detheme="$(gsettings get org.cinnamon.theme name)"
|
|
|
|
|
wmtheme="$(gsettings get org.cinnamon.desktop.wm.preferences theme)"
|
2016-03-31 21:50:15 -06:00
|
|
|
|
wmtheme="$detheme (${wmtheme})"
|
2016-03-31 18:35:26 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Compiz" | "Mutter" | "GNOME Shell" | "Gala")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p gsettings >/dev/null; then
|
2016-10-02 02:30:56 -06:00
|
|
|
|
wmtheme="$(gsettings get org.gnome.shell.extensions.user-theme name)"
|
|
|
|
|
|
2016-11-01 17:16:16 -06:00
|
|
|
|
[ -z "${wmtheme//\'}" ] && \
|
2016-10-02 02:30:56 -06:00
|
|
|
|
wmtheme="$(gsettings get org.gnome.desktop.wm.preferences theme)"
|
2016-03-31 18:35:26 -06:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p gconftool-2 >/dev/null; then
|
2016-03-31 18:35:26 -06:00
|
|
|
|
wmtheme="$(gconftool-2 -g /apps/metacity/general/theme)"
|
|
|
|
|
fi
|
2016-03-31 18:26:59 -06:00
|
|
|
|
;;
|
2016-03-31 18:36:19 -06:00
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Metacity"*)
|
2016-04-01 01:46:37 -06:00
|
|
|
|
if [ "$de" == "Deepin" ]; then
|
2016-11-04 22:06:45 -06:00
|
|
|
|
wmtheme="$(gsettings get com.deepin.wrap.gnome.desktop.wm.preferences theme)"
|
2016-04-01 01:46:37 -06:00
|
|
|
|
|
|
|
|
|
else
|
2016-11-04 22:06:45 -06:00
|
|
|
|
wmtheme="$(gconftool-2 -g /apps/metacity/general/theme)"
|
2016-04-01 01:46:37 -06:00
|
|
|
|
fi
|
2016-03-31 18:36:19 -06:00
|
|
|
|
;;
|
2016-03-31 18:39:53 -06:00
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"E17" | "Enlightenment")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p eet >/dev/null; then
|
2016-06-11 22:35:29 -06:00
|
|
|
|
wmtheme="$(eet -d "$HOME/.e/e/config/standard/e.cfg" config | awk '/value \"file\" string.*.edj/ {print $4}')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
wmtheme="${wmtheme##*/}"
|
|
|
|
|
wmtheme="${wmtheme%.*}"
|
2016-03-31 18:41:49 -06:00
|
|
|
|
fi
|
|
|
|
|
;;
|
2016-03-31 18:44:20 -06:00
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Fluxbox")
|
2016-06-11 22:35:29 -06:00
|
|
|
|
[ -f "$HOME/.fluxbox/init" ] && \
|
2016-03-31 21:42:38 -06:00
|
|
|
|
wmtheme="$(awk -F "/" '/styleFile/ {print $NF}' "$HOME/.fluxbox/init")"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"IceWM"*)
|
2016-06-11 22:35:29 -06:00
|
|
|
|
[ -f "$HOME/.icewm/theme" ] && \
|
2016-03-31 21:42:38 -06:00
|
|
|
|
wmtheme="$(awk -F "[\",/]" '!/#/ {print $2}' "$HOME/.icewm/theme")"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Openbox")
|
2016-04-01 01:12:43 -06:00
|
|
|
|
if [ "$de" == "LXDE" ] && [ -f "${HOME}/.config/openbox/lxde-rc.xml" ]; then
|
|
|
|
|
ob_file="lxde-rc"
|
|
|
|
|
|
|
|
|
|
elif [ -f "${HOME}/.config/openbox/rc.xml" ]; then
|
|
|
|
|
ob_file="rc"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
wmtheme="$(awk -F "[<,>]" '/<theme/ {getline; print $3}' "$XDG_CONFIG_HOME/openbox/${ob_file}.xml")";
|
2016-03-31 21:42:38 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"PekWM")
|
2016-06-11 22:35:29 -06:00
|
|
|
|
[ -f "$HOME/.pekwm/config" ] && \
|
2016-03-31 21:42:38 -06:00
|
|
|
|
wmtheme="$(awk -F "/" '/Theme/ {gsub(/\"/,""); print $NF}' "$HOME/.pekwm/config")"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Xfwm4")
|
2016-03-31 21:42:38 -06:00
|
|
|
|
[ -f "${HOME}/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml" ] && \
|
|
|
|
|
wmtheme="$(xfconf-query -c xfwm4 -p /general/theme)"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"KWin"*)
|
2016-03-31 21:50:15 -06:00
|
|
|
|
kdeconfigdir
|
2016-06-11 23:51:48 -06:00
|
|
|
|
kde_config_dir="${kde_config_dir%/}"
|
2016-03-31 21:50:15 -06:00
|
|
|
|
|
|
|
|
|
if [ -f "$kde_config_dir/share/config/kwinrc" ]; then
|
|
|
|
|
wmtheme="$(awk '/PluginLib=kwin3_/{gsub(/PluginLib=kwin3_/,"",$0); print $0; exit}' "$kde_config_dir/share/config/kwinrc")"
|
|
|
|
|
|
2016-04-01 00:38:06 -06:00
|
|
|
|
elif [ -f "$kde_config_dir/share/config/kdebugrc" ]; then
|
2016-03-31 21:50:15 -06:00
|
|
|
|
wmtheme="$(awk '/(decoration)/ {gsub(/\[/,"",$1); print $1; exit}' "$kde_config_dir/share/config/kdebugrc")"
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Quartz Compositor")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
wmtheme="$(/usr/libexec/PlistBuddy -c "Print AppleAquaColorVariant" ~/Library/Preferences/.GlobalPreferences.plist)"
|
2016-03-31 18:44:20 -06:00
|
|
|
|
if [ -z "$wmtheme" ] || [ "$wmtheme" == "1" ]; then
|
|
|
|
|
wmtheme="Blue"
|
|
|
|
|
else
|
|
|
|
|
wmtheme="Graphite"
|
|
|
|
|
fi
|
|
|
|
|
;;
|
2016-03-31 18:47:16 -06:00
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
*"Explorer")
|
2016-03-31 21:53:31 -06:00
|
|
|
|
path="/proc/registry/HKEY_CURRENT_USER/Software/Microsoft"
|
|
|
|
|
path+="/Windows/CurrentVersion/Themes/CurrentTheme"
|
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
wmtheme="$(head -n1 "$path")"
|
2016-03-31 21:53:31 -06:00
|
|
|
|
wmtheme="${wmtheme##*\\}"
|
|
|
|
|
wmtheme="${wmtheme%.*}"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-01 22:56:00 -06:00
|
|
|
|
"Blackbox" | "bbLean"*)
|
2016-11-06 02:04:24 -07:00
|
|
|
|
path="$(wmic process get ExecutablePath | grep -F "blackbox")"
|
2016-10-17 02:14:19 -06:00
|
|
|
|
path="${path//'\'/'/'}"
|
2016-10-17 02:02:53 -06:00
|
|
|
|
|
2016-11-06 03:21:23 -07:00
|
|
|
|
wmtheme="$(grep "^session\.styleFile:" "${path/\.exe/.rc}")"
|
2016-10-17 02:02:53 -06:00
|
|
|
|
wmtheme="${wmtheme/'session.styleFile: '}"
|
2016-10-17 02:15:42 -06:00
|
|
|
|
wmtheme="${wmtheme##*\\}"
|
2016-10-17 02:02:53 -06:00
|
|
|
|
wmtheme="${wmtheme%.*}"
|
|
|
|
|
;;
|
2016-03-31 18:26:59 -06:00
|
|
|
|
esac
|
2016-03-31 21:42:38 -06:00
|
|
|
|
|
2016-03-31 18:33:14 -06:00
|
|
|
|
wmtheme="${wmtheme//\'}"
|
2016-10-15 05:07:12 -06:00
|
|
|
|
[ "$version" -ge 4 ] && wmtheme="${wmtheme^}"
|
2016-03-31 18:23:23 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# CPU {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getcpu() {
|
2016-05-12 17:06:51 -06:00
|
|
|
|
# NetBSD emulates the linux /proc filesystem instead of using sysctl for hw
|
|
|
|
|
# information so we have to use this block below which temporarily sets the
|
|
|
|
|
# OS to 'Linux' for the duration of this function.
|
2016-05-12 17:02:44 -06:00
|
|
|
|
case "$distro" in
|
|
|
|
|
"NetBSD"*) local os="Linux" ;;
|
|
|
|
|
esac
|
|
|
|
|
|
2016-01-03 15:21:13 -07:00
|
|
|
|
case "$os" in
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"Linux" | "Windows")
|
|
|
|
|
# Get cpu name
|
2016-08-29 08:20:46 -06:00
|
|
|
|
case "$distro" in
|
2016-08-29 18:26:13 -06:00
|
|
|
|
"Android"*) cpu="$(getprop ro.product.board)" ;;
|
|
|
|
|
*) cpu="$(awk -F ': | @' '/model name|Processor/ {printf $2; exit}' /proc/cpuinfo)" ;;
|
2016-08-29 08:20:46 -06:00
|
|
|
|
esac
|
2016-10-22 16:45:03 -06:00
|
|
|
|
speed_dir="/sys/devices/system/cpu/cpu0/cpufreq"
|
|
|
|
|
temp_dir="/sys/class/hwmon/hwmon0/temp1_input"
|
2016-05-12 03:49:08 -06:00
|
|
|
|
|
|
|
|
|
# Get cpu speed
|
2016-10-22 16:45:03 -06:00
|
|
|
|
if [ -d "$speed_dir" ]; then
|
2016-05-12 03:49:08 -06:00
|
|
|
|
case "$speed_type" in
|
|
|
|
|
current) speed_type="scaling_cur_freq" ;;
|
|
|
|
|
min) speed_type="scaling_min_freq" ;;
|
|
|
|
|
max) speed_type="scaling_max_freq" ;;
|
|
|
|
|
bios) speed_type="bios_limit" ;;
|
|
|
|
|
scaling_current) speed_type="scaling_cur_freq" ;;
|
|
|
|
|
scaling_min) speed_type="scaling_min_freq" ;;
|
|
|
|
|
scaling_max) speed_type="scaling_max_freq" ;;
|
|
|
|
|
esac
|
|
|
|
|
|
2016-10-01 18:40:00 -06:00
|
|
|
|
# Fallback to cpuinfo_max_freq if $speed_type fails
|
2016-10-22 18:13:40 -06:00
|
|
|
|
speed="$(< "${speed_dir}/${speed_type}")" || \
|
|
|
|
|
speed="$(< "${speed_dir}/cpuinfo_max_freq")"
|
2016-05-12 03:49:08 -06:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
speed="$((speed / 100000))"
|
2016-05-12 03:49:08 -06:00
|
|
|
|
else
|
2016-06-11 23:51:48 -06:00
|
|
|
|
speed="$(awk -F ': |\\.' '/cpu MHz/ {printf $2; exit}' /proc/cpuinfo)"
|
|
|
|
|
speed="$((speed / 100))"
|
2016-05-12 03:49:08 -06:00
|
|
|
|
fi
|
|
|
|
|
|
2016-10-22 16:45:03 -06:00
|
|
|
|
# Get cpu temp
|
|
|
|
|
if [ "$cpu_temp" == "on" ] && [ -f "$temp_dir" ]; then
|
|
|
|
|
temp="$(< "$temp_dir")"
|
|
|
|
|
temp="$((temp * 100 / 10000))"
|
|
|
|
|
temp="[${temp/${temp: -1}}.${temp: -1}°C]"
|
|
|
|
|
fi
|
|
|
|
|
|
2016-10-20 23:26:34 -06:00
|
|
|
|
# Show/hide hyperthreaded cores
|
2016-10-20 23:38:02 -06:00
|
|
|
|
case "$cpu_cores" in
|
|
|
|
|
"logical" | "on") cores="$(grep -c ^processor /proc/cpuinfo)" ;;
|
|
|
|
|
"physical") cores="$(grep "^core id" /proc/cpuinfo | sort -u | wc -l)" ;;
|
2016-10-20 23:26:34 -06:00
|
|
|
|
esac
|
2016-05-12 03:49:08 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-03 15:21:13 -07:00
|
|
|
|
"Mac OS X")
|
|
|
|
|
cpu="$(sysctl -n machdep.cpu.brand_string)"
|
2016-10-20 23:26:34 -06:00
|
|
|
|
|
|
|
|
|
# Show/hide hyperthreaded cores
|
2016-10-20 23:38:02 -06:00
|
|
|
|
case "$cpu_cores" in
|
|
|
|
|
"logical" | "on") cores="$(sysctl -n hw.logicalcpu_max)" ;;
|
|
|
|
|
"physical") cores="$(sysctl -n hw.physicalcpu_max)" ;;
|
2016-10-20 23:26:34 -06:00
|
|
|
|
esac
|
2016-01-03 15:21:13 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-08 09:17:18 -06:00
|
|
|
|
"iPhone OS")
|
2016-11-06 02:34:51 -07:00
|
|
|
|
case "${ios_model:="$(uname -m)"}" in
|
2016-10-25 18:18:37 -06:00
|
|
|
|
"iPhone1,"[1-2] | "iPod1,1") cpu="Samsung S5L8900 (1) @ 412MHz" ;;
|
|
|
|
|
"iPhone2,1") cpu="Samsung S5PC100 (1) @ 600MHz" ;;
|
|
|
|
|
"iPhone3,"[1-3] | "iPod4,1") cpu="Apple A4 (1) @ 800MHz" ;;
|
|
|
|
|
"iPhone4,1" | "iPod5,1") cpu="Apple A5 (2) @ 800MHz" ;;
|
|
|
|
|
"iPhone5,"[1-4]) cpu="Apple A6 (2) @ 1.3GHz" ;;
|
|
|
|
|
"iPhone6,"[1-2]) cpu="Apple A7 (2) @ 1.3GHz" ;;
|
|
|
|
|
"iPhone7,"[1-2]) cpu="Apple A8 (2) @ 1.4GHz" ;;
|
|
|
|
|
"iPhone8,"[1-4]) cpu="Apple A9 (2) @ 1.85GHz" ;;
|
2016-11-05 18:27:43 -06:00
|
|
|
|
"iPhone9,"[1-4]) cpu="Apple A10 Fusion (4) @ 2.34GHz" ;;
|
2016-10-25 18:18:37 -06:00
|
|
|
|
"iPod2,1") cpu="Samsung S5L8720 (1) @ 533MHz" ;;
|
|
|
|
|
"iPod3,1") cpu="Samsung S5L8922 (1) @ 600MHz" ;;
|
|
|
|
|
"iPod7,1") cpu="Apple A8 (2) @ 1.1GHz" ;;
|
|
|
|
|
"iPad1,1") cpu="Apple A4 (1) @ 1GHz" ;;
|
|
|
|
|
"iPad2,"[1-7]) cpu="Apple A5 (2) @ 1GHz" ;;
|
|
|
|
|
"iPad3,"[1-3]) cpu="Apple A5X (2) @ 1GHz" ;;
|
|
|
|
|
"iPad3,"[4-6]) cpu="Apple A6X (2) @ 1.4GHz" ;;
|
|
|
|
|
"iPad4,"[1-3]) cpu="Apple A7 (2) @ 1.4GHz" ;;
|
|
|
|
|
"iPad4,"[4-9]) cpu="Apple A7 (2) @ 1.4GHz" ;;
|
|
|
|
|
"iPad5,"[1-2]) cpu="Apple A8 (2) @ 1.5GHz" ;;
|
|
|
|
|
"iPad5,"[3-4]) cpu="Apple A8X (3) @ 1.5GHz" ;;
|
|
|
|
|
"iPad6,"[3-4]) cpu="Apple A9X (2) @ 2.16GHz" ;;
|
|
|
|
|
"iPad6,"[7-8]) cpu="Apple A9X (2) @ 2.26GHz" ;;
|
2016-05-07 22:44:15 -06:00
|
|
|
|
esac
|
2016-05-07 21:32:44 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"BSD")
|
|
|
|
|
# Get cpu name
|
|
|
|
|
cpu="$(sysctl -n hw.model)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cpu="${cpu/[0-9]\.*}"
|
|
|
|
|
cpu="${cpu/ @*}"
|
2016-01-18 23:33:41 -07:00
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
# Get cpu speed
|
2016-06-11 23:51:48 -06:00
|
|
|
|
speed="$(sysctl -n hw.cpuspeed)"
|
|
|
|
|
[ -z "$speed" ] && speed="$(sysctl -n hw.clockrate)"
|
|
|
|
|
speed="$((speed / 100))"
|
2016-04-04 05:18:17 -06:00
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
# Get cpu cores
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cores="$(sysctl -n hw.ncpu)"
|
2016-01-17 23:37:00 -07:00
|
|
|
|
;;
|
2016-08-02 04:52:01 -06:00
|
|
|
|
|
|
|
|
|
"Solaris")
|
|
|
|
|
# Get cpuname
|
|
|
|
|
cpu="$(psrinfo -pv | tail -1)"
|
|
|
|
|
cpu="${cpu/[0-9]\.*}"
|
|
|
|
|
cpu="${cpu/ @*}"
|
|
|
|
|
|
|
|
|
|
# Get cpu speed
|
2016-08-12 07:46:46 -06:00
|
|
|
|
speed="$(psrinfo -v | awk '/operates at/ {print $6}')"
|
2016-08-02 04:52:01 -06:00
|
|
|
|
speed="$((speed / 100))"
|
|
|
|
|
|
2016-10-21 03:27:35 -06:00
|
|
|
|
# Show/hide hyperthreaded cores
|
|
|
|
|
case "$cpu_cores" in
|
2016-11-06 02:04:24 -07:00
|
|
|
|
"logical" | "on") cores="$(kstat -m cpu_info | grep -c -F "chip_id")" ;;
|
2016-10-21 03:27:35 -06:00
|
|
|
|
"physical") cores="$(psrinfo -p)" ;;
|
|
|
|
|
esac
|
2016-08-02 04:52:01 -06:00
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
cpu="$(sysinfo -cpu | awk -F '\\"' '/CPU #0/ {print $2}')"
|
|
|
|
|
cpu="${cpu/@*}"
|
|
|
|
|
speed="$(sysinfo -cpu | awk '/running at/ {print $NF; exit}')"
|
|
|
|
|
speed="${speed/MHz}"
|
|
|
|
|
speed="$((speed / 100))"
|
2016-11-06 02:04:24 -07:00
|
|
|
|
cores="$(sysinfo -cpu | grep -c -F 'CPU #')"
|
2016-11-06 00:08:09 -06:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
# Format the output
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Mac OS X" | "iPhone OS") ;;
|
|
|
|
|
*)
|
|
|
|
|
# Fix for speeds under 1ghz
|
|
|
|
|
if [ -z "${speed:1}" ]; then
|
2016-11-04 18:46:08 -06:00
|
|
|
|
speed="0.${speed}"
|
|
|
|
|
else
|
|
|
|
|
speed="${speed:0:1}.${speed:1}"
|
|
|
|
|
fi
|
|
|
|
|
|
2016-11-06 00:08:09 -06:00
|
|
|
|
cpu="$cpu @ ${speed}GHz $temp"
|
2016-11-04 18:46:08 -06:00
|
|
|
|
;;
|
2015-12-30 05:58:20 -07:00
|
|
|
|
esac
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
|
|
|
|
# Remove uneeded patterns from cpu output
|
|
|
|
|
# This is faster than sed/gsub
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cpu="${cpu//(tm)}"
|
|
|
|
|
cpu="${cpu//(TM)}"
|
|
|
|
|
cpu="${cpu//(r)}"
|
|
|
|
|
cpu="${cpu//(R)}"
|
|
|
|
|
cpu="${cpu//CPU}"
|
|
|
|
|
cpu="${cpu//Processor}"
|
2016-11-06 00:08:09 -06:00
|
|
|
|
cpu="${cpu//Core}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cpu="${cpu//Dual-Core}"
|
|
|
|
|
cpu="${cpu//Quad-Core}"
|
2016-11-06 00:08:09 -06:00
|
|
|
|
cpu="${cpu//Six-Core}"
|
|
|
|
|
cpu="${cpu//Eight-Core}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cpu="${cpu//with Radeon HD Graphics}"
|
2016-03-12 05:01:20 -07:00
|
|
|
|
|
2016-03-15 01:55:35 -06:00
|
|
|
|
# Add cpu cores to output
|
2016-10-20 23:38:02 -06:00
|
|
|
|
[ "$cpu_cores" != "off" ] && [ "$cores" ] && \
|
2016-07-29 05:35:32 -06:00
|
|
|
|
cpu="${cpu/@/(${cores}) @}"
|
2016-03-15 01:55:35 -06:00
|
|
|
|
|
2016-10-22 16:45:03 -06:00
|
|
|
|
# Remove speed from output
|
|
|
|
|
[ "$cpu_speed" == "off" ] && \
|
|
|
|
|
cpu="${cpu/@ *GHz}"
|
|
|
|
|
|
2016-03-12 05:01:20 -07:00
|
|
|
|
# Make the output of cpu shorter
|
|
|
|
|
case "$cpu_shorthand" in
|
2016-06-11 23:51:48 -06:00
|
|
|
|
"name") cpu="${cpu/@*}" ;;
|
|
|
|
|
"speed") cpu="${cpu#*@ }" ;;
|
2016-03-12 05:01:20 -07:00
|
|
|
|
|
|
|
|
|
"on" | "tiny")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cpu="${cpu/Intel }"
|
|
|
|
|
cpu="${cpu/Core }"
|
|
|
|
|
cpu="${cpu/Core? Duo }"
|
|
|
|
|
cpu="${cpu/AMD }"
|
2016-03-12 05:01:20 -07:00
|
|
|
|
|
|
|
|
|
case "$cpu_shorthand" in
|
2016-06-11 23:51:48 -06:00
|
|
|
|
"tiny") cpu="${cpu/@*}" ;;
|
2016-03-12 05:01:20 -07:00
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2015-12-30 05:58:20 -07:00
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-06-13 04:22:38 -06:00
|
|
|
|
# CPU Usage {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getcpu_usage() {
|
2016-06-13 04:22:38 -06:00
|
|
|
|
case "$os" in
|
2016-06-13 05:21:32 -06:00
|
|
|
|
"Windows")
|
|
|
|
|
cpu_usage="$(wmic cpu get loadpercentage /value)"
|
|
|
|
|
cpu_usage="${cpu_usage/LoadPercentage'='}"
|
|
|
|
|
cpu_usage="${cpu_usage//[[:space:]]}"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "Mac OS X" | "iPhone OS" | "BSD" | "Solaris" | "GNU")
|
2016-06-13 04:22:38 -06:00
|
|
|
|
# Get cores if unset
|
|
|
|
|
if [ -z "$cores" ]; then
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux") cores="$(awk -F ': ' '/siblings/ {printf $2; exit}' /proc/cpuinfo)" ;;
|
2016-06-13 05:21:32 -06:00
|
|
|
|
"Mac OS X" | "BSD") cores="$(sysctl -n hw.ncpu)" ;;
|
2016-11-06 02:04:24 -07:00
|
|
|
|
"Solaris") cores="$(kstat -m cpu_info | grep -F "chip_id" | wc -l | tr -d ' ')" ;;
|
2016-11-05 18:27:43 -06:00
|
|
|
|
"iPhone OS") cores="${cpu/*\(}"; cores="${cores/\)*}" ;;
|
2016-06-13 04:22:38 -06:00
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
|
2016-06-13 06:33:34 -06:00
|
|
|
|
cpu_usage="$(ps aux | awk 'BEGIN {sum=0} {sum+=$3 }; END {print sum}')"
|
2016-06-13 04:22:38 -06:00
|
|
|
|
cpu_usage="$((${cpu_usage/\.*} / ${cores:-1}))"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
# Print the bar
|
|
|
|
|
case "$cpu_display" in
|
2016-11-06 03:21:23 -07:00
|
|
|
|
"bar") cpu_usage="$(bar "$cpu_usage" 100)" ;;
|
|
|
|
|
"infobar") cpu_usage="${cpu_usage}% $(bar "$cpu_usage" 100)" ;;
|
|
|
|
|
"barinfo") cpu_usage="$(bar "$cpu_usage" 100) ${cpu_usage}%" ;;
|
2016-09-03 01:46:59 -06:00
|
|
|
|
*) cpu_usage="${cpu_usage}%" ;;
|
2016-06-13 04:22:38 -06:00
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# GPU {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getgpu() {
|
2016-10-01 20:12:48 -06:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "GNU")
|
2016-10-26 06:22:08 -06:00
|
|
|
|
# Use cache if it exists
|
|
|
|
|
if [ -f "/tmp/neofetch/gpu" ]; then
|
|
|
|
|
source "/tmp/neofetch/gpu"
|
2016-01-30 18:52:28 -07:00
|
|
|
|
else
|
2016-11-06 02:04:24 -07:00
|
|
|
|
bdf_number="$(PATH="/sbin:$PATH" lspci -k | grep -A2 -F 'VGA' | grep -B2 -F 'Kernel driver in use' | awk '/^\w/ {print $1}')"
|
2016-11-05 17:15:43 -06:00
|
|
|
|
|
|
|
|
|
if [ -z "$bdf_number" ]; then
|
|
|
|
|
# Fallback if no kernel driver is in use
|
|
|
|
|
gpu="$(PATH="/sbin:$PATH" lspci -mm | awk -F '\\"|\\" \\"' '/3D|VGA/ {print $3 " " $4}')"
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
# Find the currently used GPU by its BDF
|
|
|
|
|
gpu="$(PATH="/sbin:$PATH" lspci -mm | awk -v bdf_number="$bdf_number" -F '\\"|\\" \\"' '$0 ~ bdf_number {print $3 " " $4}')"
|
|
|
|
|
fi
|
2016-02-11 06:00:41 -07:00
|
|
|
|
|
2016-10-26 06:22:08 -06:00
|
|
|
|
case "$gpu" in
|
|
|
|
|
intel*) gpu="Intel Integrated Graphics" ;;
|
2016-01-20 13:20:42 -07:00
|
|
|
|
|
2016-10-26 06:22:08 -06:00
|
|
|
|
advanced*)
|
|
|
|
|
gpu="${gpu/'[AMD/ATI]' }"
|
|
|
|
|
gpu="${gpu/'[AMD]' }"
|
|
|
|
|
gpu="${gpu/*\[}"
|
|
|
|
|
gpu="${gpu/\]*}"
|
2016-10-26 06:41:17 -06:00
|
|
|
|
gpu="${gpu/\/*}"
|
2016-10-26 06:22:08 -06:00
|
|
|
|
gpu="AMD $gpu"
|
|
|
|
|
;;
|
2016-01-25 18:58:46 -07:00
|
|
|
|
|
2016-10-26 06:22:08 -06:00
|
|
|
|
nvidia*)
|
|
|
|
|
gpu="${gpu/*\[}"
|
|
|
|
|
gpu="${gpu/\]*}"
|
|
|
|
|
gpu="NVIDIA $gpu"
|
|
|
|
|
;;
|
2016-01-20 13:20:42 -07:00
|
|
|
|
|
2016-10-26 06:22:08 -06:00
|
|
|
|
*virtualbox*)
|
|
|
|
|
gpu="VirtualBox Graphics Adapter"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
cache "gpu" "$gpu" "/tmp"
|
|
|
|
|
fi
|
2016-01-18 17:55:45 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Mac OS X")
|
2016-03-29 21:13:40 -06:00
|
|
|
|
# Use cache if it exists
|
2016-03-30 02:24:03 -06:00
|
|
|
|
if [ -f "/Library/Caches/neofetch/gpu" ]; then
|
|
|
|
|
source "/Library/Caches/neofetch/gpu"
|
2016-03-29 21:13:40 -06:00
|
|
|
|
else
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gpu="$(system_profiler SPDisplaysDataType | awk -F': ' '/^\ *Chipset Model:/ {printf $2 ", "}')"
|
|
|
|
|
gpu="${gpu//'/ $'}"
|
|
|
|
|
gpu="${gpu%,*}"
|
2016-03-30 02:24:03 -06:00
|
|
|
|
cache "gpu" "$gpu" "/Library/Caches/"
|
2016-03-29 21:13:40 -06:00
|
|
|
|
fi
|
2016-01-18 17:55:45 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-07 21:32:44 -06:00
|
|
|
|
"iPhone OS")
|
2016-11-06 02:34:51 -07:00
|
|
|
|
case "${ios_model:="$(uname -m)"}" in
|
2016-10-25 18:29:46 -06:00
|
|
|
|
"iPhone1,"[1-2]) gpu="PowerVR MBX Lite 3D" ;;
|
|
|
|
|
"iPhone5,"[1-4]) gpu="PowerVR SGX543MP3" ;;
|
|
|
|
|
"iPhone8,"[1-4]) gpu="PowerVR GT7600" ;;
|
|
|
|
|
"iPad3,"[1-3]) gpu="PowerVR SGX534MP4" ;;
|
|
|
|
|
"iPad3,"[4-6]) gpu="PowerVR SGX554MP4" ;;
|
|
|
|
|
"iPad5,"[3-4]) gpu="PowerVR GXA6850" ;;
|
|
|
|
|
"iPad6,"[3-8]) gpu="PowerVR 7XT" ;;
|
|
|
|
|
|
|
|
|
|
"iPhone2,1" | "iPhone3,"[1-3] | "iPod3,1" | "iPod4,1" | "iPad1,1")
|
2016-05-08 09:17:18 -06:00
|
|
|
|
gpu="PowerVR SGX535"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-10-25 18:29:46 -06:00
|
|
|
|
"iPhone4,1" | "iPad2,"[1-7] | "iPod5,1")
|
2016-05-07 22:44:15 -06:00
|
|
|
|
gpu="PowerVR SGX543MP2"
|
2016-05-08 09:17:18 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-25 18:29:46 -06:00
|
|
|
|
"iPhone6,"[1-2] | "iPad4,"[1-9])
|
2016-05-07 22:44:15 -06:00
|
|
|
|
gpu="PowerVR G6430"
|
2016-05-08 09:17:18 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-25 18:29:46 -06:00
|
|
|
|
"iPhone7,"[1-2] | "iPod7,1" | "iPad5,"[1-2])
|
2016-05-08 09:17:18 -06:00
|
|
|
|
gpu="PowerVR GX6450"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"iPod1,1" | "iPod2,1")
|
|
|
|
|
gpu="PowerVR MBX Lite"
|
|
|
|
|
;;
|
2016-05-07 22:44:15 -06:00
|
|
|
|
esac
|
2016-05-07 21:32:44 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-08-02 04:52:01 -06:00
|
|
|
|
"BSD" | "Solaris")
|
2016-01-18 17:55:45 -07:00
|
|
|
|
case "$distro" in
|
2016-10-30 10:40:48 -06:00
|
|
|
|
"FreeBSD"* | "DragonFlyBSD"* | "PacBSD"*)
|
2016-11-06 02:04:24 -07:00
|
|
|
|
gpu="$(pciconf -lv | grep -B 4 -F "VGA" | grep -F "device")"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gpu="${gpu/*device*= }"
|
|
|
|
|
gpu="${gpu//\'}"
|
2016-01-18 17:55:45 -07:00
|
|
|
|
;;
|
2016-05-05 11:39:28 -06:00
|
|
|
|
|
2016-05-05 11:44:09 -06:00
|
|
|
|
*)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gpu="$(glxinfo | grep -F 'OpenGL renderer string')"
|
|
|
|
|
gpu="${gpu/'OpenGL renderer string: '}"
|
2016-05-05 11:39:28 -06:00
|
|
|
|
;;
|
2016-01-18 17:55:45 -07:00
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Windows")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gpu="$(wmic path Win32_VideoController get caption /value)"
|
|
|
|
|
gpu="${gpu/Caption'='}"
|
2016-01-18 17:55:45 -07:00
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
2016-11-06 02:04:24 -07:00
|
|
|
|
gpu="$(listdev | grep -A2 -F 'device Display controller' | awk -F':' '/device beef/ {print $2}')"
|
2016-11-04 18:46:08 -06:00
|
|
|
|
;;
|
2016-01-18 17:55:45 -07:00
|
|
|
|
esac
|
2016-01-18 19:52:33 -07:00
|
|
|
|
|
2016-10-02 01:26:50 -06:00
|
|
|
|
if [ "$gpu_brand" == "off" ]; then
|
|
|
|
|
gpu="${gpu/AMD}"
|
|
|
|
|
gpu="${gpu/NVIDIA}"
|
|
|
|
|
gpu="${gpu/Intel}"
|
|
|
|
|
fi
|
2016-01-18 17:55:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Memory {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getmemory() {
|
2016-01-03 15:21:13 -07:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "Windows" | "GNU")
|
2016-10-22 18:03:46 -06:00
|
|
|
|
# MemUsed = Memtotal + Shmem - MemFree - Buffers - Cached - SReclaimable
|
|
|
|
|
# Source: https://github.com/KittyKatt/screenFetch/issues/386#issuecomment-249312716
|
|
|
|
|
while IFS=":" read -r a b; do
|
|
|
|
|
case "$a" in
|
|
|
|
|
"MemTotal") memused="$((memused+=${b/kB}))"; memtotal="${b/kB}" ;;
|
|
|
|
|
"Shmem") memused="$((memused+=${b/kB}))" ;;
|
|
|
|
|
"MemFree" | "Buffers" | "Cached" | "SReclaimable") memused="$((memused-=${b/kB}))" ;;
|
|
|
|
|
esac
|
|
|
|
|
done < /proc/meminfo
|
2016-05-06 02:35:09 -06:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
memused="$((memused / 1024))"
|
2016-10-22 18:03:46 -06:00
|
|
|
|
memtotal="$((memtotal / 1024))"
|
2016-01-03 15:21:13 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-07 05:14:46 -06:00
|
|
|
|
"Mac OS X" | "iPhone OS")
|
2016-06-12 01:13:26 -06:00
|
|
|
|
memtotal="$(($(sysctl -n hw.memsize) / 1024 / 1024))"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
memwired="$(vm_stat | awk '/wired/ { print $4 }')"
|
|
|
|
|
memactive="$(vm_stat | awk '/active / { printf $3 }')"
|
|
|
|
|
memcompressed="$(vm_stat | awk '/occupied/ { printf $5 }')"
|
|
|
|
|
memused="$(((${memwired//.} + ${memactive//.} + ${memcompressed//.}) * 4 / 1024))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"BSD")
|
2016-01-17 23:45:32 -07:00
|
|
|
|
case "$distro" in
|
2016-11-06 00:35:59 -06:00
|
|
|
|
"NetBSD"*)
|
|
|
|
|
memfree="$(($(awk -F ':|kB' '/MemFree:/ {printf $2}' /proc/meminfo) / 1024))"
|
|
|
|
|
memtotal="$(($(sysctl -n hw.physmem64) / 1024 / 1024))"
|
|
|
|
|
;;
|
2016-01-17 23:17:32 -07:00
|
|
|
|
|
2016-11-06 00:35:59 -06:00
|
|
|
|
*)
|
|
|
|
|
memfree="$(($(vmstat | awk 'END{printf $5}') / 1024))"
|
|
|
|
|
memtotal="$(($(sysctl -n hw.physmem) / 1024 / 1024))"
|
|
|
|
|
;;
|
2016-10-16 00:01:16 -06:00
|
|
|
|
esac
|
2016-11-02 18:14:34 -06:00
|
|
|
|
|
|
|
|
|
case "$distro" in
|
|
|
|
|
"OpenBSD"*) memused="$(($(vmstat | awk 'END {printf $4}') / 1024))" ;;
|
|
|
|
|
*) memused="$((memtotal - memfree))" ;;
|
|
|
|
|
esac
|
2016-01-17 18:09:37 -07:00
|
|
|
|
;;
|
2016-08-02 04:52:01 -06:00
|
|
|
|
|
|
|
|
|
"Solaris")
|
2016-11-06 02:04:24 -07:00
|
|
|
|
memtotal="$(prtconf | grep -F "Memory" | head -1 | awk 'BEGIN {FS=" "} {print $3}')"
|
2016-08-02 04:52:01 -06:00
|
|
|
|
memfree="$(($(sar -r 1 1 | tail -1 | awk 'BEGIN {FS=" "} {print $2}') / 1024))"
|
|
|
|
|
memused="$((memtotal - memfree))"
|
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
2016-11-04 19:03:00 -06:00
|
|
|
|
memtotal="$(($(sysinfo -mem | awk -F '\\/ |)' '{print $2; exit}') / 1024 / 1024))"
|
2016-11-04 18:46:08 -06:00
|
|
|
|
memused="$(sysinfo -mem | awk -F '\\/|)' '{print $2; exit}')"
|
|
|
|
|
memused="$((${memused/max} / 1024 / 1024))"
|
|
|
|
|
;;
|
2016-01-02 23:54:16 -07:00
|
|
|
|
esac
|
2016-03-27 03:28:43 -06:00
|
|
|
|
memory="${memused}MB / ${memtotal}MB"
|
2016-03-02 17:00:47 -07:00
|
|
|
|
|
2016-03-07 05:15:54 -07:00
|
|
|
|
# Progress bars
|
2016-03-12 13:58:46 -07:00
|
|
|
|
case "$memory_display" in
|
2016-03-12 06:00:02 -07:00
|
|
|
|
"bar") memory="$(bar "${memused}" "${memtotal}")" ;;
|
|
|
|
|
"infobar") memory="${memory} $(bar "${memused}" "${memtotal}")" ;;
|
|
|
|
|
"barinfo") memory="$(bar "${memused}" "${memtotal}") ${memory}" ;;
|
|
|
|
|
esac
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
2015-12-30 21:42:58 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Song {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getsong() {
|
2016-10-26 01:22:08 -06:00
|
|
|
|
# This is absurdly long.
|
2016-10-26 04:18:46 -06:00
|
|
|
|
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious/ {printf $5 " " $6; exit}')"
|
2016-03-12 15:30:53 -07:00
|
|
|
|
|
2016-10-26 01:09:59 -06:00
|
|
|
|
case "${player/*\/}" in
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"mpd"*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
song="$(mpc current)"
|
|
|
|
|
state="$(mpc | awk -F '\\[|\\]' '/\[/ {printf $2}')"
|
2016-10-25 22:18:11 -06:00
|
|
|
|
;;
|
2016-03-12 15:30:53 -07:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"cmus"*)
|
|
|
|
|
IFS=$'\n'
|
2016-11-06 02:04:24 -07:00
|
|
|
|
song=($(cmus-remote -Q | grep -F -e "tag artist" -e "tag title" -e "status" | sort))
|
2016-10-25 22:18:11 -06:00
|
|
|
|
state="${song[0]/status }"
|
|
|
|
|
artist="${song[1]/tag artist }"
|
|
|
|
|
title="${song[2]/tag title }"
|
|
|
|
|
song="${artist/tag title } - ${title/tag artist }"
|
|
|
|
|
;;
|
2016-03-24 16:54:32 -06:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"mocp"*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
song="$(mocp -Q "%artist - %song")"
|
|
|
|
|
state="$(mocp -Q "%state")"
|
2016-10-25 22:18:11 -06:00
|
|
|
|
;;
|
2016-03-12 01:11:17 -07:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"spotify"*)
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux")
|
|
|
|
|
# Thanks dbus
|
|
|
|
|
song="$(\
|
|
|
|
|
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 \
|
|
|
|
|
org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' |\
|
|
|
|
|
awk -F 'string "' '/string|array/ {printf "%s",$2; next}{print ""}' |\
|
|
|
|
|
awk -F '"' '/artist|title/ {printf $2 " - "}'
|
|
|
|
|
)"
|
|
|
|
|
song="${song% - }"
|
|
|
|
|
song="${song/'('*}"
|
|
|
|
|
song="${song//'['*}"
|
|
|
|
|
;;
|
2016-09-04 06:06:28 -06:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"Mac OS X")
|
|
|
|
|
song="$(osascript -e 'tell application "Spotify" to artist of current track as string & " - " & name of current track as string')"
|
|
|
|
|
state="$(osascript -e 'tell application "Spotify" to player state as string')"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
2016-09-04 06:28:08 -06:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"google play"*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
song="$(gpmdp-remote current)"
|
|
|
|
|
state="$(gpmdp-remote status)"
|
2016-10-25 22:18:11 -06:00
|
|
|
|
;;
|
2016-09-07 10:02:45 -06:00
|
|
|
|
|
2016-10-26 04:18:46 -06:00
|
|
|
|
"itunes"*)
|
2016-10-25 22:18:11 -06:00
|
|
|
|
song="$(osascript -e 'tell application "iTunes" to artist of current track as string & " - " & name of current track as string')"
|
|
|
|
|
state="$(osascript -e 'tell application "iTunes" to player state as string')"
|
|
|
|
|
;;
|
2016-09-11 10:37:23 -06:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"rhythmbox"*)
|
|
|
|
|
song="$(rhythmbox-client --print-playing)"
|
2016-10-26 01:22:08 -06:00
|
|
|
|
# Thanks dbus
|
2016-10-25 22:18:11 -06:00
|
|
|
|
state="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 \
|
|
|
|
|
org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string: 'PlayBackStatus' |\
|
|
|
|
|
awk -F 'string "' '{printf $2}')"
|
|
|
|
|
state="${state//\"}"
|
|
|
|
|
;;
|
2016-10-21 22:11:52 -06:00
|
|
|
|
|
2016-10-25 22:18:11 -06:00
|
|
|
|
"banshee"*)
|
|
|
|
|
artist="$(banshee --query-artist | awk -F':' '{print $2}')"
|
|
|
|
|
title="$(banshee --query-title | awk -F':' '{print $2}')"
|
|
|
|
|
song="$artist - $title"
|
|
|
|
|
state="$(banshee --query-current-state | awk -F':' '{print $2}')"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"amarok"*)
|
|
|
|
|
artist="$(qdbus org.kde.amarok /Player GetMetadata | awk -F':' '/^artist/ {print $2}')"
|
|
|
|
|
title="$(qdbus org.kde.amarok /Player GetMetadata | awk -F':' '/title/ {print $2}')"
|
|
|
|
|
song="$artist - $title"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"deadbeef"*)
|
|
|
|
|
song="$(deadbeef --nowplaying '%a - %t')"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"audacious"*)
|
|
|
|
|
song="$(audtool current-song)"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*) song="Not Playing" ;;
|
|
|
|
|
esac
|
2016-02-15 20:50:20 -07:00
|
|
|
|
|
|
|
|
|
case "$state" in
|
2016-09-04 06:06:28 -06:00
|
|
|
|
"paused" | "PAUSE" | "Paused")
|
2016-02-15 20:50:20 -07:00
|
|
|
|
song="Paused"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-09-04 06:06:28 -06:00
|
|
|
|
"stopped" | "STOP" | "Stopped")
|
2016-02-15 20:50:20 -07:00
|
|
|
|
song="Stopped"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-02-18 17:26:24 -07:00
|
|
|
|
|
2016-02-20 14:38:07 -07:00
|
|
|
|
# Display Artist and Title on seperate lines.
|
2016-08-19 07:01:18 -06:00
|
|
|
|
if [ "$song_shorthand" == "on" ]; then
|
2016-02-18 17:26:24 -07:00
|
|
|
|
artist="${song/ -*}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
song="${song/$artist - }"
|
2016-02-18 17:26:24 -07:00
|
|
|
|
|
|
|
|
|
if [ "$song" != "$artist" ]; then
|
2016-04-01 18:44:08 -06:00
|
|
|
|
prin "Artist" "$artist"
|
|
|
|
|
prin "Song" "$song"
|
2016-02-18 17:26:24 -07:00
|
|
|
|
else
|
2016-04-01 18:44:08 -06:00
|
|
|
|
prin "$subtitle" "$song"
|
2016-02-18 17:26:24 -07:00
|
|
|
|
fi
|
|
|
|
|
unset song
|
|
|
|
|
fi
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Resolution {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getresolution() {
|
2016-01-03 20:31:21 -07:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "BSD" | "Solaris" | "GNU")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p xrandr >/dev/null; then
|
2016-03-25 15:51:39 -06:00
|
|
|
|
case "$refresh_rate" in
|
2016-06-23 19:48:18 -06:00
|
|
|
|
"on") resolution="$(xrandr --nograb --current | awk 'match($0,/[0-9]*\.[0-9]*\*/) {printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')" ;;
|
2016-06-23 19:44:22 -06:00
|
|
|
|
"off") resolution="$(xrandr --nograb --current | awk '/\*/ {printf $1 ", "}')" ;;
|
2016-03-25 19:13:31 -06:00
|
|
|
|
esac
|
2016-06-11 23:51:48 -06:00
|
|
|
|
resolution="${resolution//\*}"
|
2016-06-24 18:56:23 -06:00
|
|
|
|
resolution="${resolution//\.[0-9][0-9]}"
|
2016-03-25 14:59:24 -06:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p xdpyinfo >/dev/null; then
|
|
|
|
|
resolution="$(xdpyinfo | awk '/dimensions:/ {printf $2}')"
|
2016-03-25 14:59:24 -06:00
|
|
|
|
fi
|
2016-01-03 20:31:21 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Mac OS X")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p screenresolution >/dev/null; then
|
|
|
|
|
resolution="$(screenresolution get | awk '/Display/ {printf $6 "Hz, "}')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
resolution="${resolution//x??@/ @ }"
|
2016-03-27 02:50:09 -06:00
|
|
|
|
|
|
|
|
|
else
|
2016-11-06 00:35:59 -06:00
|
|
|
|
resolution="$(system_profiler SPDisplaysDataType | awk '/Resolution:/ {printf $2"x"$4" @ "$6"Hz, "}')"
|
2016-03-27 02:50:09 -06:00
|
|
|
|
fi
|
2016-03-27 03:13:32 -06:00
|
|
|
|
|
2016-10-15 07:39:07 -06:00
|
|
|
|
scale_factor="$(/usr/libexec/PlistBuddy -c "Print DisplayAnyUserSets:0:0:Resolution" /Library/Preferences/com.apple.windowserver.plist)"
|
|
|
|
|
|
2016-10-15 07:45:27 -06:00
|
|
|
|
[ "${scale_factor%.*}" == "2" ] && \
|
2016-10-15 07:39:07 -06:00
|
|
|
|
resolution="${resolution// @/@2x @}"
|
|
|
|
|
|
2016-06-16 01:09:24 -06:00
|
|
|
|
if [ "$refresh_rate" == "off" ]; then
|
2016-06-15 05:02:33 -06:00
|
|
|
|
resolution="${resolution// @ [0-9][0-9]Hz}"
|
|
|
|
|
resolution="${resolution// @ [0-9][0-9][0-9]Hz}"
|
2016-06-15 04:18:57 -06:00
|
|
|
|
fi
|
2016-06-15 05:02:33 -06:00
|
|
|
|
|
|
|
|
|
[[ "$resolution" =~ "0Hz" ]] && \
|
|
|
|
|
resolution="${resolution// @ 0Hz}"
|
2016-01-03 20:31:21 -07:00
|
|
|
|
;;
|
2016-01-17 23:24:08 -07:00
|
|
|
|
|
2016-02-21 03:01:46 -07:00
|
|
|
|
"Windows")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
width="$(wmic path Win32_VideoController get CurrentHorizontalResolution /value)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
width="${width/CurrentHorizontalResolution'='/}"
|
2016-02-21 03:48:49 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
height="$(wmic path Win32_VideoController get CurrentVerticalResolution /value)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
height="${height/CurrentVerticalResolution'='/}"
|
2016-02-21 03:48:49 -07:00
|
|
|
|
|
2016-11-06 00:35:59 -06:00
|
|
|
|
[ "$width" ] && resolution="${width}x${height}"
|
2016-02-21 03:01:46 -07:00
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
resolution="$(screenmode | awk -F ' |, ' '{printf $2 "x" $3 " @ " $6 $7}')"
|
|
|
|
|
|
2016-11-06 00:35:59 -06:00
|
|
|
|
[ "$refresh_rate" == "off" ] && resolution="${resolution/ @*}"
|
2016-11-04 18:46:08 -06:00
|
|
|
|
;;
|
2016-01-29 06:34:48 -07:00
|
|
|
|
esac
|
2016-03-17 23:28:26 -06:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
resolution="${resolution%,*}"
|
2016-01-03 20:31:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-02-15 16:49:21 -07:00
|
|
|
|
# Theme/Icons/Font {{{
|
2016-01-26 05:06:53 -07:00
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getstyle() {
|
2016-02-08 08:21:12 -07:00
|
|
|
|
# Fix weird output when the function
|
|
|
|
|
# is run multiple times.
|
2016-02-19 05:18:02 -07:00
|
|
|
|
unset gtk2theme gtk3theme theme path
|
2016-02-08 08:21:12 -07:00
|
|
|
|
|
2016-01-12 22:36:07 -07:00
|
|
|
|
case "$1" in
|
2016-01-25 18:48:40 -07:00
|
|
|
|
theme)
|
|
|
|
|
name="gtk-theme-name"
|
|
|
|
|
gsettings="gtk-theme"
|
2016-02-08 05:29:48 -07:00
|
|
|
|
gconf="gtk_theme"
|
2016-10-13 06:47:35 -06:00
|
|
|
|
xfconf="/Net/ThemeName"
|
2016-02-15 16:19:28 -07:00
|
|
|
|
kde="widgetStyle"
|
2016-01-25 18:48:40 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
icons)
|
|
|
|
|
name="gtk-icon-theme-name"
|
|
|
|
|
gsettings="icon-theme"
|
2016-02-08 05:29:48 -07:00
|
|
|
|
gconf="icon_theme"
|
2016-10-13 06:47:35 -06:00
|
|
|
|
xfconf="/Net/IconThemeName"
|
2016-02-15 16:19:28 -07:00
|
|
|
|
kde="Theme"
|
2016-01-25 18:48:40 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
font)
|
|
|
|
|
name="gtk-font-name"
|
|
|
|
|
gsettings="font-name"
|
2016-02-08 05:29:48 -07:00
|
|
|
|
gconf="font_theme"
|
2016-10-13 06:47:35 -06:00
|
|
|
|
xfconf="/Gtk/FontName"
|
2016-02-15 16:19:28 -07:00
|
|
|
|
kde="font"
|
2016-01-25 18:48:40 -07:00
|
|
|
|
;;
|
2016-01-12 22:36:07 -07:00
|
|
|
|
esac
|
|
|
|
|
|
2016-02-20 14:38:07 -07:00
|
|
|
|
if [ -n "$DISPLAY" ] && [ "$os" != "Mac OS X" ]; then
|
2016-04-01 08:59:46 -06:00
|
|
|
|
# Get DE if user has disabled the function.
|
|
|
|
|
[ -z "$de" ] && getde
|
|
|
|
|
|
|
|
|
|
case "$de" in
|
2016-02-19 05:10:09 -07:00
|
|
|
|
"KDE"*)
|
2016-03-31 21:50:15 -06:00
|
|
|
|
kdeconfigdir
|
2016-02-15 16:31:13 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
if [ -f "${kde_config_dir}/share/config/kdeglobals" ]; then
|
|
|
|
|
kde_config_file="${kde_config_dir}/share/config/kdeglobals"
|
2016-02-15 16:31:13 -07:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
theme="$(grep "^[^#]*$kde" "$kde_config_file")"
|
|
|
|
|
theme="${theme/${kde}*=}"
|
2016-10-15 05:07:12 -06:00
|
|
|
|
[ "$version" -ge 4 ] && theme="${theme^}"
|
2016-02-15 16:49:21 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
gtk_shorthand="on"
|
|
|
|
|
return
|
|
|
|
|
fi
|
|
|
|
|
;;
|
2016-02-15 16:19:28 -07:00
|
|
|
|
|
2016-03-05 15:14:44 -07:00
|
|
|
|
*"Cinnamon")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p gsettings >/dev/null; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(gsettings get org.cinnamon.desktop.interface "$gsettings")"
|
|
|
|
|
gtk2theme="${gtk3theme}"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
fi
|
|
|
|
|
;;
|
2016-01-24 23:26:15 -07:00
|
|
|
|
|
2016-11-01 17:16:16 -06:00
|
|
|
|
"Gnome"* | "Unity"* | "Budgie"*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p gsettings >/dev/null; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(gsettings get org.gnome.desktop.interface "$gsettings")"
|
|
|
|
|
gtk2theme="${gtk3theme}"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p gconftool-2 >/dev/null; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk2theme="$(gconftool-2 -g /desktop/gnome/interface/"$gconf")"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Mate"*)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(gsettings get org.mate.interface "$gsettings")"
|
|
|
|
|
gtk2theme="${gtk3theme}"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
;;
|
2016-01-26 17:53:12 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
"Xfce"*)
|
2016-11-04 22:06:45 -06:00
|
|
|
|
type -p xfconf-query >/dev/null && \
|
2016-10-13 06:47:35 -06:00
|
|
|
|
gtk2theme="$(xfconf-query -c xsettings -p "$xfconf")"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-01-12 18:26:40 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Check for gtk2 theme
|
|
|
|
|
if [ -z "$gtk2theme" ]; then
|
2016-03-26 13:04:59 -06:00
|
|
|
|
if [ -f "${GTK2_RC_FILES:-$HOME/.gtkrc-2.0}" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk2theme="$(grep "^[^#]*$name" "${GTK2_RC_FILES:-$HOME/.gtkrc-2.0}")"
|
2016-01-27 17:34:41 -07:00
|
|
|
|
|
2016-03-16 00:12:21 -06:00
|
|
|
|
elif [ -f "/usr/share/gtk-2.0/gtkrc" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk2theme="$(grep "^[^#]*$name" /usr/share/gtk-2.0/gtkrc)"
|
2016-03-16 00:27:45 -06:00
|
|
|
|
|
|
|
|
|
elif [ -f "/etc/gtk-2.0/gtkrc" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk2theme="$(grep "^[^#]*$name" /etc/gtk-2.0/gtkrc)"
|
2016-02-08 05:29:48 -07:00
|
|
|
|
fi
|
2016-01-24 23:26:15 -07:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk2theme="${gtk2theme/${name}*=}"
|
2016-01-26 17:53:12 -07:00
|
|
|
|
fi
|
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Check for gtk3 theme
|
|
|
|
|
if [ -z "$gtk3theme" ]; then
|
2016-03-31 16:47:48 -06:00
|
|
|
|
if [ -f "$XDG_CONFIG_HOME/gtk-3.0/settings.ini" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(grep "^[^#]*$name" "$XDG_CONFIG_HOME/gtk-3.0/settings.ini")"
|
2016-01-12 18:26:40 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p gsettings >/dev/null; then
|
2016-11-06 03:21:23 -07:00
|
|
|
|
gtk3theme="$(gsettings get org.gnome.desktop.interface "$gsettings")"
|
2016-01-27 17:34:41 -07:00
|
|
|
|
|
2016-03-16 00:12:21 -06:00
|
|
|
|
elif [ -f "/usr/share/gtk-3.0/settings.ini" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(grep "^[^#]*$name" /usr/share/gtk-3.0/settings.ini)"
|
2016-03-16 00:27:45 -06:00
|
|
|
|
|
|
|
|
|
elif [ -f "/etc/gtk-3.0/settings.ini" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="$(grep "^[^#]*$name" /etc/gtk-3.0/settings.ini)"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
fi
|
2016-01-24 23:26:15 -07:00
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
gtk3theme="${gtk3theme/${name}*=}"
|
2016-01-26 17:53:12 -07:00
|
|
|
|
fi
|
2016-01-23 16:38:46 -07:00
|
|
|
|
|
2016-06-11 19:41:25 -06:00
|
|
|
|
# Remove quotes
|
|
|
|
|
gtk2theme=${gtk2theme//\"}
|
|
|
|
|
gtk2theme=${gtk2theme//\'}
|
|
|
|
|
gtk3theme=${gtk3theme//\"}
|
|
|
|
|
gtk3theme=${gtk3theme//\'}
|
|
|
|
|
|
2016-02-20 14:44:22 -07:00
|
|
|
|
# Uppercase the first letter of each gtk theme
|
2016-10-15 05:07:12 -06:00
|
|
|
|
if [ "$version" -ge 4 ]; then
|
|
|
|
|
gtk2theme="${gtk2theme^}"
|
|
|
|
|
gtk3theme="${gtk3theme^}"
|
|
|
|
|
fi
|
2016-02-20 14:44:22 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Toggle visibility of gtk themes.
|
|
|
|
|
[ "$gtk2" == "off" ] && unset gtk2theme
|
|
|
|
|
[ "$gtk3" == "off" ] && unset gtk3theme
|
2016-02-08 06:47:51 -07:00
|
|
|
|
|
2016-10-22 02:59:25 -06:00
|
|
|
|
# Trim whitespace
|
|
|
|
|
gtk2theme="$(trim "$gtk2theme")"
|
|
|
|
|
gtk3theme="$(trim "$gtk3theme")"
|
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Format the string based on which themes exist
|
|
|
|
|
if [ "$gtk2theme" ] && [ "$gtk2theme" == "$gtk3theme" ]; then
|
|
|
|
|
gtk3theme+=" [GTK2/3]"
|
|
|
|
|
unset gtk2theme
|
2016-01-24 23:26:15 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
elif [ "$gtk2theme" ] && [ "$gtk3theme" ]; then
|
|
|
|
|
gtk2theme+=" [GTK2], "
|
|
|
|
|
gtk3theme+=" [GTK3] "
|
|
|
|
|
else
|
|
|
|
|
[ "$gtk2theme" ] && gtk2theme+=" [GTK2] "
|
|
|
|
|
[ "$gtk3theme" ] && gtk3theme+=" [GTK3] "
|
|
|
|
|
fi
|
2016-01-12 18:26:40 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Final string
|
|
|
|
|
theme="${gtk2theme}${gtk3theme}"
|
2016-01-24 16:36:42 -07:00
|
|
|
|
|
2016-02-19 05:10:09 -07:00
|
|
|
|
# Make the output shorter by removing "[GTKX]" from the string
|
|
|
|
|
if [ "$gtk_shorthand" == "on" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
theme="${theme/ '[GTK2]'}"
|
|
|
|
|
theme="${theme/ '[GTK3]'}"
|
|
|
|
|
theme="${theme/ '[GTK2/3]'}"
|
2016-02-19 05:10:09 -07:00
|
|
|
|
fi
|
2016-01-12 18:26:40 -07:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
gettheme() {
|
2016-02-15 16:49:21 -07:00
|
|
|
|
getstyle theme
|
2016-01-12 22:36:07 -07:00
|
|
|
|
}
|
2016-01-12 18:26:40 -07:00
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
geticons() {
|
2016-02-15 16:49:21 -07:00
|
|
|
|
getstyle icons
|
|
|
|
|
icons="$theme"
|
2016-01-12 18:26:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getfont() {
|
2016-02-15 16:49:21 -07:00
|
|
|
|
getstyle font
|
|
|
|
|
font="$theme"
|
2016-01-25 18:48:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-05-16 05:35:29 -06:00
|
|
|
|
# Terminal Emulator {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getterm() {
|
2016-05-27 18:27:58 -06:00
|
|
|
|
# Check $PPID for terminal emulator.
|
2016-05-27 19:38:41 -06:00
|
|
|
|
case "$os" in
|
|
|
|
|
"Mac OS X")
|
2016-10-15 06:20:25 -06:00
|
|
|
|
# Workaround for macOS systems that
|
2016-05-27 19:38:41 -06:00
|
|
|
|
# don't support the block below.
|
|
|
|
|
case "$TERM_PROGRAM" in
|
|
|
|
|
"iTerm.app") term="iTerm2" ;;
|
|
|
|
|
"Terminal.app") term="Apple Terminal" ;;
|
2016-11-04 15:44:12 -06:00
|
|
|
|
"Hyper") term="HyperTerm" ;;
|
2016-05-27 19:38:41 -06:00
|
|
|
|
*) term="${TERM_PROGRAM/\.app}" ;;
|
|
|
|
|
esac
|
|
|
|
|
return
|
|
|
|
|
;;
|
2016-05-17 23:51:25 -06:00
|
|
|
|
|
2016-05-27 19:38:41 -06:00
|
|
|
|
"Windows")
|
2016-11-06 03:21:23 -07:00
|
|
|
|
parent="$(ps -p "${1:-$PPID}" | awk '{printf $2}')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
parent="${parent/'PPID'}"
|
2016-05-16 06:41:40 -06:00
|
|
|
|
|
2016-11-06 03:21:23 -07:00
|
|
|
|
name="$(ps -p "$parent" | awk '{printf $8}')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
name="${name/'COMMAND'}"
|
|
|
|
|
name="${name/*\/}"
|
2016-05-27 19:38:41 -06:00
|
|
|
|
;;
|
2016-05-27 18:14:45 -06:00
|
|
|
|
|
2016-10-28 23:02:24 -06:00
|
|
|
|
"Linux")
|
2016-11-06 02:04:24 -07:00
|
|
|
|
parent="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")"
|
2016-11-01 16:52:46 -06:00
|
|
|
|
name="$(< "/proc/$(trim "${parent/PPid:}")/comm")"
|
2016-05-27 19:38:41 -06:00
|
|
|
|
;;
|
2016-10-28 23:02:24 -06:00
|
|
|
|
|
|
|
|
|
*)
|
2016-11-06 03:21:23 -07:00
|
|
|
|
parent="$(ps -p "${1:-$PPID}" -o ppid=)"
|
|
|
|
|
name="$(ps -p "$parent" -o comm=)"
|
2016-10-28 23:02:24 -06:00
|
|
|
|
;;
|
2016-05-27 19:38:41 -06:00
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
case "${name// }" in
|
2016-10-03 00:20:20 -06:00
|
|
|
|
"${SHELL/*\/}" | *"sh" | "tmux"* | "screen") getterm "$parent" ;;
|
2016-10-21 01:37:59 -06:00
|
|
|
|
"login"* | *"Login"* | "init") term="$(tty)" ;;
|
2016-10-21 04:48:17 -06:00
|
|
|
|
"ruby" | "1" | "systemd" | "sshd"* | "python"* | "USER"*"PID"*) unset term ;;
|
2016-06-02 05:14:19 -06:00
|
|
|
|
"gnome-terminal-") term="gnome-terminal" ;;
|
2016-10-17 15:23:03 -06:00
|
|
|
|
*) term="${name##*/}" ;;
|
2016-05-27 19:38:41 -06:00
|
|
|
|
esac
|
2016-05-16 05:35:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Terminal Emulator Font {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
gettermfont() {
|
2016-05-16 05:35:29 -06:00
|
|
|
|
[ -z "$term" ] && getterm
|
|
|
|
|
|
|
|
|
|
case "$term" in
|
2016-05-16 14:54:57 -06:00
|
|
|
|
"urxvt" | "urxvtd" | "xterm")
|
2016-11-06 03:21:23 -07:00
|
|
|
|
termfont="$(grep -i -F "${term/d}*font" <<< "$(xrdb -query)")"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
termfont="${termfont/*font: }"
|
2016-05-16 08:30:11 -06:00
|
|
|
|
|
2016-05-16 08:38:07 -06:00
|
|
|
|
# Xresources has two different font syntax, this checks which
|
|
|
|
|
# one is in use and formats it accordingly.
|
2016-05-16 08:30:11 -06:00
|
|
|
|
case "$termfont" in
|
|
|
|
|
"xft:"*)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
termfont="${termfont/xft:}"
|
|
|
|
|
termfont="${termfont/:*}"
|
2016-05-16 08:30:11 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-16 08:38:07 -06:00
|
|
|
|
"-"*) termfont="$(awk -F '\\-' '{printf $3}' <<< "$termfont")" ;;
|
2016-05-16 08:30:11 -06:00
|
|
|
|
esac
|
2016-05-16 05:35:29 -06:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"xfce4-terminal")
|
2016-11-03 20:44:37 -06:00
|
|
|
|
termfont="$(awk -F '=' '/^FontName/ {a=$2} END{print a}' "${XDG_CONFIG_HOME}/xfce4/terminal/terminalrc")"
|
2016-05-16 05:35:29 -06:00
|
|
|
|
;;
|
2016-05-16 05:52:22 -06:00
|
|
|
|
|
|
|
|
|
"termite")
|
2016-11-03 20:44:37 -06:00
|
|
|
|
termfont="$(awk -F '= ' '/^font/ {a=$2} END{print a}' "${XDG_CONFIG_HOME}/termite/config")"
|
2016-05-16 05:52:22 -06:00
|
|
|
|
;;
|
2016-05-18 00:39:05 -06:00
|
|
|
|
|
|
|
|
|
"mintty")
|
|
|
|
|
termfont="$(awk -F '=' '!/^($|#)/ && /Font/ {printf $2; exit}' "${HOME}/.minttyrc")"
|
|
|
|
|
;;
|
2016-05-22 20:35:47 -06:00
|
|
|
|
|
|
|
|
|
"Apple_Terminal")
|
|
|
|
|
termfont="$(osascript -e 'tell application "Terminal" to font name of window frontmost')"
|
|
|
|
|
;;
|
2016-06-16 04:14:05 -06:00
|
|
|
|
|
|
|
|
|
"terminology")
|
2016-11-06 03:21:23 -07:00
|
|
|
|
termfont="$(strings "${XDG_CONFIG_HOME}/terminology/config/standard/base.cfg" | awk '/^font\.name$/{print a}{a=$0}')"
|
2016-06-16 04:14:05 -06:00
|
|
|
|
termfont="${termfont/.pcf}"
|
|
|
|
|
termfont="${termfont/:*}"
|
|
|
|
|
;;
|
2016-11-04 15:44:44 -06:00
|
|
|
|
|
2016-11-04 16:52:11 -06:00
|
|
|
|
"Hyper"*)
|
2016-11-04 15:44:44 -06:00
|
|
|
|
termfont="$(awk -F "," '/fontFamily/ {a=$1} END{print a}' "${HOME}/.hyper.js" | awk -F "'" '{a=$2} END{print a}')"
|
|
|
|
|
;;
|
2016-05-16 05:35:29 -06:00
|
|
|
|
esac
|
2016-10-15 04:45:19 -06:00
|
|
|
|
|
2016-10-15 05:07:12 -06:00
|
|
|
|
[ "$version" -ge 4 ] && termfont="${termfont^}"
|
2016-05-16 05:35:29 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Disk Usage {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getdisk() {
|
2016-01-26 04:52:05 -07:00
|
|
|
|
# df flags
|
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "iPhone OS" | "Windows" | "Solaris" | "GNU")
|
2016-08-25 20:07:26 -06:00
|
|
|
|
df_flags="-h -l --total"
|
|
|
|
|
df_dir="total"
|
|
|
|
|
|
|
|
|
|
case "$distro" in
|
|
|
|
|
"OpenWRT"*) df_flags="-h"; df_dir="rootfs" ;;
|
2016-08-27 17:03:40 -06:00
|
|
|
|
"Android"*) return ;;
|
2016-08-25 20:07:26 -06:00
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 15:56:48 -06:00
|
|
|
|
"Mac OS X" | "BSD" | "Haiku")
|
2016-03-26 06:36:37 -06:00
|
|
|
|
case "$distro" in
|
2016-10-16 15:07:04 -06:00
|
|
|
|
"FreeBSD"* | *"OS X"* | "Mac"* )
|
2016-08-25 21:03:22 -06:00
|
|
|
|
df_flags="-l -H /"
|
|
|
|
|
df_dir="/"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-03-26 22:21:11 -06:00
|
|
|
|
*) return ;;
|
2016-01-26 04:52:05 -07:00
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-01-26 03:25:28 -07:00
|
|
|
|
|
2016-01-26 04:52:05 -07:00
|
|
|
|
# Get the disk info
|
2016-11-04 22:06:45 -06:00
|
|
|
|
disk="$(df $df_flags | awk -v dir="$df_dir" '$0 ~ dir {print $2 ":" $3 ":" $5}')"
|
2016-08-25 20:07:26 -06:00
|
|
|
|
|
2016-01-26 04:52:05 -07:00
|
|
|
|
# Format the output
|
2016-06-11 23:51:48 -06:00
|
|
|
|
disk_used="${disk#*:}"
|
|
|
|
|
disk_used="${disk_used%%:*}"
|
|
|
|
|
disk_total="${disk%%:*}"
|
|
|
|
|
disk_total_per="${disk#*:*:}"
|
2016-01-26 03:25:28 -07:00
|
|
|
|
|
2016-01-26 04:52:05 -07:00
|
|
|
|
# Put it all together
|
|
|
|
|
disk="${disk_used} / ${disk_total} (${disk_total_per})"
|
2016-03-02 17:52:39 -07:00
|
|
|
|
|
2016-03-12 05:43:16 -07:00
|
|
|
|
# Add info bar
|
2016-06-11 23:51:48 -06:00
|
|
|
|
disk_used="${disk_used/G}"
|
|
|
|
|
disk_total="${disk_total/G}"
|
2016-03-14 04:21:43 -06:00
|
|
|
|
|
2016-06-12 01:06:31 -06:00
|
|
|
|
# Convert Terabytes to Gigabytes.
|
|
|
|
|
if [ "$disk_display" != "off" ]; then
|
|
|
|
|
disk_used="${disk_used/\.}"
|
|
|
|
|
disk_total="${disk_total/\.}"
|
2016-03-14 04:21:43 -06:00
|
|
|
|
|
2016-06-14 01:02:14 -06:00
|
|
|
|
[ "${disk_used: -1}" == "T" ] && \
|
2016-06-12 01:06:31 -06:00
|
|
|
|
disk_used="$((${disk_used/T} * 100))"
|
|
|
|
|
|
2016-06-14 01:02:14 -06:00
|
|
|
|
[ "${disk_total: -1}" == "T" ] && \
|
2016-06-12 01:06:31 -06:00
|
|
|
|
disk_total="$((${disk_total/T} * 100))"
|
|
|
|
|
fi
|
2016-03-12 13:58:46 -07:00
|
|
|
|
|
|
|
|
|
case "$disk_display" in
|
2016-03-14 04:39:02 -06:00
|
|
|
|
"bar") disk="$(bar "${disk_used/'.'*}" "${disk_total/'.'*}")" ;;
|
|
|
|
|
"infobar") disk+=" $(bar "${disk_used/'.'*}" "${disk_total/'.'*}")" ;;
|
|
|
|
|
"barinfo") disk="$(bar "${disk_used/'.'*}" "${disk_total/'.'*}") $disk" ;;
|
2016-03-25 08:02:01 -06:00
|
|
|
|
"perc") disk="$disk_total_per $(bar "${disk_used/'.'*}" "${disk_total/'.'*}")" ;;
|
2016-03-12 05:43:16 -07:00
|
|
|
|
esac
|
2016-01-26 03:25:28 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-02-01 07:56:33 -07:00
|
|
|
|
# Battery Usage {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getbattery() {
|
2016-02-01 07:56:33 -07:00
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux")
|
2016-10-26 00:56:50 -06:00
|
|
|
|
# We use 'prin' here and exit the function early so that we can
|
|
|
|
|
# do multi battery support with a single battery per line.
|
|
|
|
|
if [ -f /sys/class/power_supply/**/capacity ]; then
|
|
|
|
|
for bat in "/sys/class/power_supply/BAT"*; do
|
2016-11-06 03:21:23 -07:00
|
|
|
|
capacity="$(< "${bat}/capacity")"
|
|
|
|
|
status="$(< "${bat}/status")"
|
2016-10-26 00:56:50 -06:00
|
|
|
|
|
2016-10-28 18:41:50 -06:00
|
|
|
|
# Fix for bash on Windows 10 which includes /proc files
|
|
|
|
|
# for battery usage despite there not being a battery
|
|
|
|
|
# installed.
|
|
|
|
|
[ -z "$capacity" ] && return
|
|
|
|
|
|
2016-10-28 18:47:00 -06:00
|
|
|
|
battery="${capacity}% [${status}]"
|
|
|
|
|
|
2016-10-26 00:56:50 -06:00
|
|
|
|
case "$battery_display" in
|
|
|
|
|
"bar") battery="$(bar "$capacity" 100)" ;;
|
|
|
|
|
"infobar") battery+=" $(bar "$capacity" 100)" ;;
|
|
|
|
|
"barinfo") battery="$(bar "$capacity" 100) ${battery}" ;;
|
|
|
|
|
esac
|
2016-02-01 15:09:31 -07:00
|
|
|
|
|
2016-10-26 00:56:50 -06:00
|
|
|
|
prin "${subtitle}${bat: -1}" "$battery"
|
|
|
|
|
done
|
2016-02-01 07:56:33 -07:00
|
|
|
|
fi
|
2016-10-26 00:56:50 -06:00
|
|
|
|
unset battery
|
|
|
|
|
return
|
2016-02-01 07:56:33 -07:00
|
|
|
|
;;
|
2016-02-23 01:21:30 -07:00
|
|
|
|
|
2016-02-23 02:24:38 -07:00
|
|
|
|
"BSD")
|
2016-02-23 01:21:30 -07:00
|
|
|
|
case "$distro" in
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"FreeBSD"* | "DragonFly"*)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
battery="$(acpiconf -i 0 | awk -F ':\t' '/Remaining capacity/ {print $2}')"
|
|
|
|
|
battery_state="$(acpiconf -i 0 | awk -F ':\t\t\t' '/State/ {print $2}')"
|
2016-02-23 01:21:30 -07:00
|
|
|
|
;;
|
2016-02-27 02:25:39 -07:00
|
|
|
|
|
|
|
|
|
"NetBSD"*)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
battery="$(envstat | awk '\\(|\\)' '/charge:/ {print $2}')"
|
2016-05-12 17:14:02 -06:00
|
|
|
|
battery="${battery/\.*/%}"
|
2016-02-27 02:25:39 -07:00
|
|
|
|
;;
|
2016-02-23 02:21:16 -07:00
|
|
|
|
|
2016-10-15 20:48:25 -06:00
|
|
|
|
"OpenBSD"* | "Bitrig"*)
|
2016-09-02 08:06:03 -06:00
|
|
|
|
battery0full="$(sysctl -n hw.sensors.acpibat0.watthour0)"
|
|
|
|
|
battery0full="${battery0full/ Wh*}"
|
2016-02-23 02:21:16 -07:00
|
|
|
|
|
2016-09-02 08:06:03 -06:00
|
|
|
|
battery0now="$(sysctl -n hw.sensors.acpibat0.watthour3)"
|
|
|
|
|
battery0now="${battery0now/ Wh*}"
|
2016-02-23 02:24:38 -07:00
|
|
|
|
|
2016-09-02 08:06:03 -06:00
|
|
|
|
[ "$battery0full" ] && \
|
|
|
|
|
battery="$((100 * ${battery0now/\.} / ${battery0full/\.}))%"
|
2016-10-01 20:12:48 -06:00
|
|
|
|
;;
|
2016-09-02 08:06:03 -06:00
|
|
|
|
esac
|
2016-10-01 20:12:48 -06:00
|
|
|
|
;;
|
2016-02-02 15:26:47 -07:00
|
|
|
|
|
|
|
|
|
"Mac OS X")
|
|
|
|
|
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
2016-03-25 07:24:18 -06:00
|
|
|
|
battery_state="$(pmset -g batt | awk 'NR==2 {print $3}')"
|
2016-02-02 15:26:47 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Windows")
|
2016-02-03 19:41:16 -07:00
|
|
|
|
battery="$(wmic Path Win32_Battery get EstimatedChargeRemaining /value)"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
battery="${battery/EstimatedChargeRemaining'='}"
|
2016-11-06 00:35:59 -06:00
|
|
|
|
[ "$battery" ] && battery+="%"
|
2016-02-02 15:26:47 -07:00
|
|
|
|
;;
|
2016-11-04 15:46:29 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
2016-11-04 15:55:06 -06:00
|
|
|
|
battery0full="$(awk -F '[^0-9]*' 'NR==2 {print $4}' /dev/power/acpi_battery/0)"
|
|
|
|
|
battery0now="$(awk -F '[^0-9]*' 'NR==5 {print $4}' /dev/power/acpi_battery/0)"
|
2016-11-04 15:46:29 -06:00
|
|
|
|
battery="$((battery0full / battery0now * 100))%"
|
|
|
|
|
;;
|
2016-02-01 07:56:33 -07:00
|
|
|
|
esac
|
2016-03-02 17:09:40 -07:00
|
|
|
|
|
2016-11-06 00:35:59 -06:00
|
|
|
|
[ "$battery_state" ] && battery+=" Charging"
|
2016-03-25 07:18:16 -06:00
|
|
|
|
|
2016-03-12 13:58:46 -07:00
|
|
|
|
case "$battery_display" in
|
2016-06-11 22:35:29 -06:00
|
|
|
|
"bar") battery="$(bar "${battery/'%'*}" 100)" ;;
|
2016-03-25 08:26:42 -06:00
|
|
|
|
"infobar") battery="${battery} $(bar "${battery/'%'*}" 100)" ;;
|
|
|
|
|
"barinfo") battery="$(bar "${battery/'%'*}" 100) ${battery}" ;;
|
2016-03-12 06:05:48 -07:00
|
|
|
|
esac
|
2016-02-01 07:56:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-02-08 15:36:43 -07:00
|
|
|
|
# IP Address {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getlocalip() {
|
2016-02-08 15:36:43 -07:00
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux")
|
|
|
|
|
localip="$(ip route get 1 | awk '{print $NF;exit}')"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-05-07 05:20:03 -06:00
|
|
|
|
"Mac OS X" | "iPhone OS")
|
2016-02-08 16:48:37 -07:00
|
|
|
|
localip="$(ipconfig getifaddr en0)"
|
|
|
|
|
[ -z "$localip" ] && localip="$(ipconfig getifaddr en1)"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-02 04:52:01 -06:00
|
|
|
|
"BSD" | "Solaris")
|
2016-02-09 00:32:01 -07:00
|
|
|
|
localip="$(ifconfig | awk '/broadcast/ {print $2}')"
|
2016-02-08 23:53:52 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-02-08 15:36:43 -07:00
|
|
|
|
"Windows")
|
|
|
|
|
localip="$(ipconfig | awk -F ': ' '/IPv4 Address/ {printf $2}')"
|
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
localip="$(ifconfig | awk -F ': ' '/Bcast/ {print $2}')"
|
|
|
|
|
localip="${localip/', Bcast'}"
|
|
|
|
|
;;
|
2016-02-08 15:36:43 -07:00
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getpublicip() {
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p dig >/dev/null; then
|
|
|
|
|
publicip="$(dig +time=1 +tries=1 +short myip.opendns.com @resolver1.opendns.com)"
|
2016-03-31 02:37:18 -06:00
|
|
|
|
fi
|
2016-03-18 20:38:48 -06:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if [ -z "$publicip" ] && type -p curl >/dev/null; then
|
|
|
|
|
publicip="$(curl --max-time 10 -w '\n' "$public_ip_host")"
|
2016-03-31 02:37:18 -06:00
|
|
|
|
fi
|
2016-02-08 23:20:19 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if [ -z "$publicip" ] && type -p wget >/dev/null; then
|
|
|
|
|
publicip="$(wget -T 10 -qO- "$public_ip_host"; printf "%s")"
|
2016-02-08 23:20:19 -07:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-08 15:36:43 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-02-24 22:11:53 -07:00
|
|
|
|
# Logged In Users {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getusers() {
|
2016-02-24 22:11:53 -07:00
|
|
|
|
users="$(who | awk '!seen[$1]++ {printf $1 ", "}')"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
users="${users%\,*}"
|
2016-02-24 22:11:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-30 04:10:28 -07:00
|
|
|
|
# Birthday {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getbirthday() {
|
2016-01-30 04:10:28 -07:00
|
|
|
|
case "$os" in
|
2016-11-04 18:53:18 -06:00
|
|
|
|
"Linux" | "GNU" | "iPhone OS")
|
2016-05-06 19:29:55 -06:00
|
|
|
|
birthday="$(ls -alct --full-time / | awk '/lost\+found|private/ {printf $6 " " $7}')"
|
2016-03-25 21:22:10 -06:00
|
|
|
|
date_cmd="$(date -d"$birthday" "$birthday_format")"
|
2016-01-30 04:10:28 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-30 05:51:12 -07:00
|
|
|
|
"Mac OS X")
|
2016-03-11 16:17:26 -07:00
|
|
|
|
birthday="$(ls -lUT /var/log/install.log | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
|
|
|
|
|
|
|
|
|
# Split the string into Date + time
|
2016-06-11 23:51:48 -06:00
|
|
|
|
time="${birthday/*???? }"
|
|
|
|
|
birthday="${birthday/$time}"
|
2016-03-11 16:17:26 -07:00
|
|
|
|
|
|
|
|
|
case "${time/:*}" in
|
2016-04-02 20:01:25 -06:00
|
|
|
|
0? | 10 | 11) time+=" AM" ;;
|
|
|
|
|
*) time+=" PM" ;;
|
2016-03-11 16:17:26 -07:00
|
|
|
|
esac
|
|
|
|
|
birthday+="$time"
|
|
|
|
|
birthday_shorthand="on"
|
2016-01-30 16:31:29 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"BSD")
|
2016-01-30 16:38:20 -07:00
|
|
|
|
case "$distro" in
|
2016-10-15 20:48:25 -06:00
|
|
|
|
"OpenBSD"* | "Bitrig"*)
|
2016-01-30 16:38:20 -07:00
|
|
|
|
birthday="$(ls -alctT / | awk '/lost\+found/ {printf $6 " " $7 " " $9 " " $8}')"
|
2016-01-30 16:45:56 -07:00
|
|
|
|
birthday_shorthand="on"
|
2016-01-30 16:38:20 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-31 20:56:53 -07:00
|
|
|
|
"FreeBSD"*)
|
2016-01-30 16:38:20 -07:00
|
|
|
|
birthday="$(ls -alctT /etc/hostid | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
2016-03-26 22:04:44 -06:00
|
|
|
|
date_cmd="$(date -j -f "%b %d %Y" "$birthday" "$birthday_format")"
|
2016-01-30 16:38:20 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"NetBSD"* | "DragonFly"*)
|
2016-01-30 17:02:32 -07:00
|
|
|
|
birthday="$(ls -alctT /etc/defaults/rc.conf | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
|
|
|
|
birthday_shorthand="on"
|
|
|
|
|
;;
|
2016-01-30 16:38:20 -07:00
|
|
|
|
esac
|
2016-01-30 04:10:28 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-30 17:10:13 -07:00
|
|
|
|
"Windows")
|
|
|
|
|
birthday="$(ls -alct --full-time /cygdrive/c/Windows/explorer.exe | awk '{printf $8 " " $9}')"
|
2016-03-26 22:04:44 -06:00
|
|
|
|
date_cmd="$(date -d"$birthday" "$birthday_format")"
|
2016-01-30 17:10:13 -07:00
|
|
|
|
;;
|
2016-08-02 04:52:01 -06:00
|
|
|
|
|
|
|
|
|
"Solaris")
|
|
|
|
|
birthday="$(ls -alct --full-time /var/sadm/system/logs/install_log | awk '{printf $6 " " $7}')"
|
|
|
|
|
date_cmd="$(date -d"$birthday" "$birthday_format")"
|
|
|
|
|
;;
|
2016-11-04 18:46:08 -06:00
|
|
|
|
|
|
|
|
|
"Haiku")
|
|
|
|
|
birthday="$(ls -alctd --full-time /boot | awk '{printf $6 " " $7}')"
|
|
|
|
|
date_cmd="$(date -d"$birthday" "$birthday_format")"
|
|
|
|
|
;;
|
2016-01-30 04:10:28 -07:00
|
|
|
|
esac
|
2016-01-30 04:41:58 -07:00
|
|
|
|
|
|
|
|
|
# Strip seconds from time output
|
2016-06-11 23:51:48 -06:00
|
|
|
|
birthday="${birthday/:?? / }"
|
2016-01-30 04:41:58 -07:00
|
|
|
|
|
|
|
|
|
# Pretty output
|
2016-03-05 16:01:57 -07:00
|
|
|
|
[ "$birthday_shorthand" == "off" ] && \
|
2016-06-11 23:51:48 -06:00
|
|
|
|
birthday="${date_cmd//+( )/ }"
|
2016-01-30 04:41:58 -07:00
|
|
|
|
|
|
|
|
|
# Toggle showing the time
|
2016-01-31 17:44:03 -07:00
|
|
|
|
[ "$birthday_time" == "off" ] && \
|
2016-06-11 23:51:48 -06:00
|
|
|
|
birthday="${birthday/??:??*}"
|
2016-01-30 04:10:28 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Terminal colors {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getcols() {
|
2016-01-02 23:54:16 -07:00
|
|
|
|
if [ "$color_blocks" == "on" ]; then
|
2016-05-27 17:53:35 -06:00
|
|
|
|
# Convert the width to space chars.
|
2016-10-15 17:44:05 -06:00
|
|
|
|
block_width="$(printf "%${block_width}s")"
|
|
|
|
|
block_width="${block_width// /█}"
|
2016-05-27 17:53:35 -06:00
|
|
|
|
|
|
|
|
|
# Generate the string.
|
2016-11-06 03:21:23 -07:00
|
|
|
|
while [ "$start" -le "$end" ]; do
|
2016-03-31 02:57:57 -06:00
|
|
|
|
case "$start" in
|
2016-10-15 17:44:05 -06:00
|
|
|
|
[0-6]) blocks+="${reset}\033[3${start}m\033[4${start}m${block_width}" ;;
|
|
|
|
|
7) blocks+="${reset}\033[3${start}m\033[4${start}m${block_width}" ;;
|
|
|
|
|
*) blocks2+="\033[38;5;${start}m\033[48;5;${start}m${block_width}" ;;
|
2016-03-31 02:57:57 -06:00
|
|
|
|
esac
|
2016-06-11 23:51:48 -06:00
|
|
|
|
start="$((start+=1))"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
done
|
|
|
|
|
|
2016-05-27 17:53:35 -06:00
|
|
|
|
# Convert height into spaces.
|
2016-05-28 18:03:18 -06:00
|
|
|
|
spaces="$(printf "%${block_height}s")"
|
|
|
|
|
|
|
|
|
|
# Convert the spaces into rows of blocks.
|
2016-08-13 19:04:25 -06:00
|
|
|
|
[ "$blocks" ] && cols+="${spaces// /${blocks}${reset}nl}"
|
|
|
|
|
[ "$blocks2" ] && cols+="${spaces// /${blocks2}${reset}nl}"
|
2016-05-27 17:53:35 -06:00
|
|
|
|
|
2016-05-28 18:03:18 -06:00
|
|
|
|
# Add newlines to the string.
|
2016-06-11 23:51:48 -06:00
|
|
|
|
cols="${cols%%'nl'}"
|
2016-10-21 01:35:17 -06:00
|
|
|
|
cols="${cols//nl/\\n${padding}${zws}}"
|
2015-12-30 21:42:58 -07:00
|
|
|
|
fi
|
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-03-02 16:37:18 -07:00
|
|
|
|
# }}}
|
2016-01-06 20:37:24 -07:00
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# }}}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# Images {{{
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Wallpaper {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getwallpaper() {
|
2016-01-05 00:19:38 -07:00
|
|
|
|
case "$os" in
|
2016-05-12 03:49:08 -06:00
|
|
|
|
"Linux" | "BSD")
|
2016-11-04 22:06:45 -06:00
|
|
|
|
if type -p feh >/dev/null && [ -f "$HOME/.fehbg" ]; then
|
2016-01-20 03:35:32 -07:00
|
|
|
|
img="$(awk -F\' '/feh/ {printf $2}' "$HOME/.fehbg")"
|
2016-01-24 04:59:35 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p nitrogen >/dev/null; then
|
2016-03-31 16:47:48 -06:00
|
|
|
|
img="$(awk -F'=' '/file/ {printf $2;exit;}' "$XDG_CONFIG_HOME/nitrogen/bg-saved.cfg")"
|
2016-01-24 04:59:35 -07:00
|
|
|
|
|
2016-11-04 22:06:45 -06:00
|
|
|
|
elif type -p gsettings >/dev/null; then
|
2016-04-01 08:59:46 -06:00
|
|
|
|
# Get DE if user has disabled the function.
|
|
|
|
|
[ -z "$de" ] && getde
|
|
|
|
|
|
|
|
|
|
case "$de" in
|
2016-11-04 22:06:45 -06:00
|
|
|
|
"MATE"*) img="$(gsettings get org.mate.background picture-filename)" ;;
|
|
|
|
|
*) img="$(gsettings get org.gnome.desktop.background picture-uri)" ;;
|
2016-02-09 03:12:09 -07:00
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
# Strip quotes etc from the path.
|
2016-06-11 23:51:48 -06:00
|
|
|
|
img="${img/'file://'}"
|
|
|
|
|
img="${img//\'}"
|
2016-10-02 17:03:41 -06:00
|
|
|
|
img="${img//\%20/ }"
|
2016-01-20 03:35:32 -07:00
|
|
|
|
fi
|
2016-01-05 00:19:38 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-17 14:37:37 -07:00
|
|
|
|
"Mac OS X")
|
2016-03-28 18:40:30 -06:00
|
|
|
|
img="$(osascript -e 'tell application "System Events" to picture of current desktop')"
|
2016-01-17 14:37:37 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-01-05 00:50:06 -07:00
|
|
|
|
"Windows")
|
|
|
|
|
case "$distro" in
|
|
|
|
|
"Windows XP")
|
2016-01-05 18:03:29 -07:00
|
|
|
|
img="/cygdrive/c/Documents and Settings/${USER}"
|
|
|
|
|
img+="/Local Settings/Application Data/Microsoft"
|
|
|
|
|
img+="/Wallpaper1.bmp"
|
2016-01-05 00:50:06 -07:00
|
|
|
|
;;
|
2016-01-05 00:19:38 -07:00
|
|
|
|
|
2016-01-05 00:50:06 -07:00
|
|
|
|
"Windows"*)
|
2016-01-05 18:03:29 -07:00
|
|
|
|
img="$APPDATA/Microsoft/Windows/Themes"
|
|
|
|
|
img+="/TranscodedWallpaper.jpg"
|
2016-01-05 00:50:06 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-01-05 00:19:38 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2016-02-09 03:30:41 -07:00
|
|
|
|
|
|
|
|
|
# If img is an xml file don't use it.
|
|
|
|
|
[ "${img/*\./}" == "xml" ] && img=""
|
2016-04-23 22:14:35 -06:00
|
|
|
|
|
2016-04-23 22:16:38 -06:00
|
|
|
|
# Error msg
|
2016-10-21 08:27:39 -06:00
|
|
|
|
[ -z "$img" ] && err "Image: Wallpaper detection failed, falling back to ascii mode."
|
2016-01-05 00:19:38 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-27 04:33:22 -07:00
|
|
|
|
# Ascii {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getascii() {
|
2016-02-27 23:02:05 -07:00
|
|
|
|
if [ ! -f "$ascii" ] || [ "$ascii" == "distro" ]; then
|
2016-04-23 22:14:35 -06:00
|
|
|
|
# Error message
|
2016-04-23 22:22:26 -06:00
|
|
|
|
[ "$ascii" != "distro" ] && \
|
2016-10-21 08:27:39 -06:00
|
|
|
|
[ ! -f "$ascii" ] && err "Ascii: Ascii file not found, using distro ascii"
|
2016-04-23 22:14:35 -06:00
|
|
|
|
|
2016-01-28 15:45:35 -07:00
|
|
|
|
# Lowercase the distro name
|
2016-02-23 15:30:11 -07:00
|
|
|
|
if [ "$version" -le 3 ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
ascii="$(tr '[:upper:]' '[:lower:]' <<< "$ascii_distro")"
|
2016-02-23 15:30:11 -07:00
|
|
|
|
else
|
2016-06-11 23:51:48 -06:00
|
|
|
|
ascii="${ascii_distro,,}"
|
2016-02-23 15:30:11 -07:00
|
|
|
|
fi
|
2016-01-28 08:03:15 -07:00
|
|
|
|
|
2016-10-04 15:15:20 -06:00
|
|
|
|
if [ "$ascii_logo_size" == "small" ]; then
|
2016-02-27 19:07:10 -07:00
|
|
|
|
ascii="${ascii/ *}_small"
|
2016-10-04 15:15:20 -06:00
|
|
|
|
prompt_loc="3"
|
|
|
|
|
fi
|
2016-02-27 19:07:10 -07:00
|
|
|
|
|
2016-02-27 17:44:45 -07:00
|
|
|
|
if [ -f "/usr/share/neofetch/ascii/distro/${ascii/ *}" ]; then
|
|
|
|
|
ascii="/usr/share/neofetch/ascii/distro/${ascii/ *}"
|
2016-02-16 16:23:52 -07:00
|
|
|
|
|
2016-02-27 17:44:45 -07:00
|
|
|
|
elif [ -f "/usr/local/share/neofetch/ascii/distro/${ascii/ *}" ]; then
|
|
|
|
|
ascii="/usr/local/share/neofetch/ascii/distro/${ascii/ *}"
|
2016-02-16 16:23:52 -07:00
|
|
|
|
|
2016-11-01 19:21:15 -06:00
|
|
|
|
elif [ -f "/data/data/com.termux/files/usr/share/neofetch/ascii/distro/${ascii/ *}" ]; then
|
|
|
|
|
ascii="/data/data/com.termux/files/usr/share/neofetch/ascii/distro/${ascii/ *}"
|
|
|
|
|
|
2016-01-28 15:45:35 -07:00
|
|
|
|
else
|
2016-05-14 17:10:37 -06:00
|
|
|
|
getscriptdir 2>/dev/null
|
2016-01-28 15:45:35 -07:00
|
|
|
|
|
2016-02-24 03:15:30 -07:00
|
|
|
|
# If the ascii file doesn't exist fallback to text mode.
|
2016-01-29 08:14:29 -07:00
|
|
|
|
if [ ! -f "$script_dir/ascii/distro/${ascii/ *}" ]; then
|
2016-01-28 15:45:35 -07:00
|
|
|
|
padding="\033[0C"
|
2016-01-28 17:06:26 -07:00
|
|
|
|
image="off"
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Ascii: Ascii file not found, falling back to text mode."
|
2016-01-28 15:45:35 -07:00
|
|
|
|
return
|
|
|
|
|
fi
|
2016-01-28 23:56:39 -07:00
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
ascii="$script_dir/ascii/distro/${ascii/ *}"
|
2016-01-28 15:45:35 -07:00
|
|
|
|
fi
|
2016-01-28 02:04:47 -07:00
|
|
|
|
fi
|
|
|
|
|
|
2016-08-03 16:34:52 -06:00
|
|
|
|
# Eval colors
|
|
|
|
|
print="$(eval printf "$(<"$ascii")")"
|
|
|
|
|
|
2016-02-09 16:20:51 -07:00
|
|
|
|
# Set locale to get correct padding
|
2016-02-10 04:54:07 -07:00
|
|
|
|
export LC_ALL="$SYS_LOCALE"
|
2016-02-09 16:20:51 -07:00
|
|
|
|
|
2016-02-24 03:15:30 -07:00
|
|
|
|
# Turn the file into a variable and strip escape codes.
|
2016-06-11 23:51:48 -06:00
|
|
|
|
ascii_strip="$(<"$ascii")"
|
|
|
|
|
ascii_strip="${ascii_strip//\$\{??\}}"
|
|
|
|
|
ascii_strip="${ascii_strip//'\\'/ }"
|
|
|
|
|
ascii_strip="${ascii_strip//'\'}"
|
2016-05-18 01:07:55 -06:00
|
|
|
|
|
2016-10-20 00:32:29 -06:00
|
|
|
|
# Get lines/columns of the ascii file.
|
2016-08-25 19:10:55 -06:00
|
|
|
|
lines=1
|
|
|
|
|
while IFS='\n' read -r line 2>/dev/null; do
|
2016-10-21 01:02:04 -06:00
|
|
|
|
[ "${#line}" -gt "${ascii_length:-0}" ] && ascii_length="${#line}"
|
2016-10-20 00:32:29 -06:00
|
|
|
|
lines="$((lines+=1))"
|
2016-08-25 19:10:55 -06:00
|
|
|
|
done <<< "$ascii_strip"
|
2016-01-27 06:26:35 -07:00
|
|
|
|
|
2016-10-21 02:01:25 -06:00
|
|
|
|
# Overwrite padding if ascii_length_force is set.
|
|
|
|
|
[ "$ascii_length_force" ] && ascii_length="$ascii_length_force"
|
|
|
|
|
|
2016-03-29 01:04:36 -06:00
|
|
|
|
padding="\033[$((ascii_length + gap))C"
|
2016-01-28 02:04:47 -07:00
|
|
|
|
printf "%b%s" "$print"
|
2016-02-09 16:20:51 -07:00
|
|
|
|
export LC_ALL=C
|
2016-01-27 04:33:22 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Image {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getimage() {
|
2016-01-28 06:00:08 -07:00
|
|
|
|
# Fallback to ascii mode if imagemagick isn't installed.
|
2016-02-19 16:39:33 -07:00
|
|
|
|
type -p convert >/dev/null 2>&1 || image="ascii"
|
2016-01-28 06:00:08 -07:00
|
|
|
|
|
2016-01-07 19:29:24 -07:00
|
|
|
|
case "$image" in
|
2016-11-04 22:06:45 -06:00
|
|
|
|
"wall") getwallpaper 2>/dev/null ;;
|
2016-02-19 16:39:33 -07:00
|
|
|
|
"ascii") getascii; return ;;
|
2016-03-25 04:22:58 -06:00
|
|
|
|
*)
|
2016-06-10 03:46:00 -06:00
|
|
|
|
if [ -d "$image" ]; then
|
2016-06-10 07:10:54 -06:00
|
|
|
|
files=("${image%/}"/*.{png,jpg,jpeg})
|
2016-05-16 23:06:59 -06:00
|
|
|
|
img="$(printf "%s" "${files[RANDOM % (${#files[@]} - 1)]}")"
|
2016-03-25 04:22:58 -06:00
|
|
|
|
else
|
|
|
|
|
img="$image"
|
|
|
|
|
fi
|
|
|
|
|
;;
|
2016-01-07 19:29:24 -07:00
|
|
|
|
esac
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
if [ -n "$TMUX" ]; then
|
|
|
|
|
printf "%b%s" "\033Ptmux;\033\033[14t\033\033[c\033\\"
|
|
|
|
|
read_flags="-d c"
|
2016-06-10 01:58:24 -06:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
elif [ "$image_backend" == "tycat" ]; then
|
|
|
|
|
printf "%b%s" "\033}qs\000"
|
2016-06-10 01:58:24 -06:00
|
|
|
|
|
2016-02-20 17:32:02 -07:00
|
|
|
|
else
|
2016-10-30 21:57:04 -06:00
|
|
|
|
printf "%b%s" "\033[14t\033[c"
|
|
|
|
|
read_flags="-d c"
|
|
|
|
|
fi
|
2016-02-17 20:19:41 -07:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
# The escape code above prints the output AFTER the prompt so this
|
|
|
|
|
builtin read -s -t 1 ${read_flags} -r term_size
|
2016-01-20 03:46:20 -07:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
# Split the string
|
|
|
|
|
if [ "$image_backend" == "tycat" ]; then
|
|
|
|
|
term_size=(${term_size//;/ })
|
|
|
|
|
term_width="$((term_size[2] * term_size[0]))"
|
|
|
|
|
term_height="$((term_size[3] * term_size[1]))"
|
2016-02-20 20:37:17 -07:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
else
|
|
|
|
|
term_size="${term_size//'['}"
|
|
|
|
|
term_size="${term_size/';'}"
|
|
|
|
|
term_size="${term_size/$'\E4'}"
|
|
|
|
|
term_size="${term_size/t*}"
|
|
|
|
|
term_height="${term_size/';'*}"
|
|
|
|
|
term_width="${term_size/*';'}"
|
|
|
|
|
fi
|
2016-10-21 04:25:43 -06:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
# Get terminal width and height if \033[14t is unsupported.
|
|
|
|
|
if [ "${#term_size}" -le 5 ] && [ "$image_backend" != "tycat" ]; then
|
|
|
|
|
if type -p xdotool >/dev/null 2>&1 && \
|
|
|
|
|
[ "$image_backend" != "iterm2" ]; then
|
|
|
|
|
|
|
|
|
|
current_window="$(xdotool getactivewindow)"
|
|
|
|
|
eval "$(xdotool getwindowgeometry --shell "$current_window")"
|
|
|
|
|
term_height="$HEIGHT"
|
|
|
|
|
term_width="$WIDTH"
|
|
|
|
|
|
|
|
|
|
elif type -p xwininfo >/dev/null 2>&1 && \
|
|
|
|
|
type -p xdpyinfo >/dev/null 2>&1 || \
|
|
|
|
|
type -p xprop >/dev/null 2>&1 && \
|
|
|
|
|
[ "$image_backend" != "iterm2" ]; then
|
|
|
|
|
|
|
|
|
|
if type -p xdpyinfo >/dev/null 2>&1; then
|
2016-11-06 02:04:24 -07:00
|
|
|
|
current_window="$(xdpyinfo | grep -F "focus" | grep -E -o 0x[0-9a-f]+)"
|
2016-10-30 21:57:04 -06:00
|
|
|
|
elif type -p xprop >/dev/null 2>&1; then
|
|
|
|
|
current_window="$(xprop -root | awk '/_NET_ACTIVE_WINDOW\(WINDOW\)/{print $NF}')"
|
|
|
|
|
fi
|
2016-10-21 04:25:43 -06:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
term_size="$(xwininfo -id "$current_window" | awk -F ': ' '/Width|Height/ {printf $2 " "}')"
|
|
|
|
|
term_width="${term_size/ *}"
|
|
|
|
|
term_height="${term_size/${term_width}}"
|
2016-10-21 04:25:43 -06:00
|
|
|
|
fi
|
2016-06-10 01:58:24 -06:00
|
|
|
|
fi
|
2016-02-20 21:35:13 -07:00
|
|
|
|
|
2016-10-30 21:57:04 -06:00
|
|
|
|
# If $img isn't a file fallback to ascii mode.
|
2016-11-01 16:44:25 -06:00
|
|
|
|
if [ ! -f "$img" ] || [ -z "$term_width" ] || [ "$term_width" -le 10 ]; then
|
2016-02-20 21:35:13 -07:00
|
|
|
|
image="ascii"
|
|
|
|
|
getascii
|
2016-04-23 22:14:35 -06:00
|
|
|
|
|
|
|
|
|
# Error messages
|
2016-10-21 08:27:39 -06:00
|
|
|
|
[ ! -f "$img" ] && err "Image: \$img, isn't a file, falling back to ascii mode."
|
|
|
|
|
[ "${#term_size}" -le 5 ] && err "Image: Your terminal doesn't support \\\033[14t, falling back to ascii mode."
|
2016-04-23 22:14:35 -06:00
|
|
|
|
|
2016-02-20 21:35:13 -07:00
|
|
|
|
return
|
2016-09-30 20:57:54 -06:00
|
|
|
|
else
|
|
|
|
|
clear
|
2016-10-21 01:35:17 -06:00
|
|
|
|
zws=" "
|
2016-02-20 21:35:13 -07:00
|
|
|
|
fi
|
|
|
|
|
|
2016-05-26 22:56:09 -06:00
|
|
|
|
# Get terminal lines and columns
|
2016-08-18 18:29:27 -06:00
|
|
|
|
term_blocks="$(stty size)"
|
|
|
|
|
columns="${term_blocks/* }"
|
|
|
|
|
lines="${term_blocks/ *}"
|
2016-01-31 17:05:46 -07:00
|
|
|
|
|
2016-02-17 20:19:41 -07:00
|
|
|
|
# Calculate font size
|
2016-06-11 23:51:48 -06:00
|
|
|
|
font_width="$((term_width / columns))"
|
2016-08-03 17:20:42 -06:00
|
|
|
|
font_height="$((term_height / lines))"
|
2016-02-17 20:19:41 -07:00
|
|
|
|
|
2016-01-31 14:53:00 -07:00
|
|
|
|
# Image size is half of the terminal
|
2016-02-19 19:35:07 -07:00
|
|
|
|
case "$image_size" in
|
|
|
|
|
"auto")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
image_size="$((columns * font_width / 2))"
|
|
|
|
|
term_height="$((term_height - term_height / 4))"
|
2016-01-31 14:53:00 -07:00
|
|
|
|
|
2016-02-20 14:53:30 -07:00
|
|
|
|
[ "$term_height" -lt "$image_size" ] && \
|
|
|
|
|
image_size="$term_height"
|
2016-02-19 19:35:07 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*"%")
|
2016-06-11 23:51:48 -06:00
|
|
|
|
percent="${image_size/\%}"
|
|
|
|
|
image_size="$((percent * term_width / 100))"
|
2016-02-19 19:35:07 -07:00
|
|
|
|
|
|
|
|
|
[ "$((percent * term_height / 50))" -lt "$image_size" ] && \
|
2016-06-11 23:51:48 -06:00
|
|
|
|
image_size="$((percent * term_height / 100))"
|
2016-02-19 19:35:07 -07:00
|
|
|
|
;;
|
2016-04-11 23:50:19 -06:00
|
|
|
|
|
2016-05-26 22:56:09 -06:00
|
|
|
|
"none")
|
|
|
|
|
# Get image size so that we can do a better crop
|
2016-06-11 23:51:48 -06:00
|
|
|
|
size="$(identify -format "%w %h" "$img")"
|
|
|
|
|
width="${size%% *}"
|
|
|
|
|
height="${size##* }"
|
2016-05-26 22:56:09 -06:00
|
|
|
|
crop_mode="none"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-06-11 23:51:48 -06:00
|
|
|
|
*) image_size="${image_size/px}" ;;
|
2016-02-19 19:35:07 -07:00
|
|
|
|
esac
|
2016-02-17 20:19:41 -07:00
|
|
|
|
|
2016-05-26 22:56:09 -06:00
|
|
|
|
# Fallback if width / height are empty.
|
2016-06-11 23:51:48 -06:00
|
|
|
|
width="${width:-$image_size}"
|
|
|
|
|
height="${height:-$image_size}"
|
2016-05-26 22:56:09 -06:00
|
|
|
|
|
2016-06-13 03:08:03 -06:00
|
|
|
|
# Padding is half the terminal width + gap
|
|
|
|
|
padding="\033[$((width / font_width + gap + xoffset/font_width))C"
|
2016-01-31 14:53:00 -07:00
|
|
|
|
|
2016-01-30 22:25:11 -07:00
|
|
|
|
# Make the directory if it doesn't exist
|
2016-01-31 03:33:02 -07:00
|
|
|
|
mkdir -p "$thumbnail_dir"
|
2016-01-30 22:25:11 -07:00
|
|
|
|
|
2016-02-19 16:39:33 -07:00
|
|
|
|
# Check to see if the image has a file extension, if it doesn't
|
|
|
|
|
# then add one.
|
2016-01-23 17:17:48 -07:00
|
|
|
|
case "${img##*/}" in
|
2016-05-26 23:13:37 -06:00
|
|
|
|
*"."*) imgname="$crop_mode-$crop_offset-$width-$height-${img##*/}" ;;
|
|
|
|
|
*) imgname="$crop_mode-$crop_offset-$width-$height-${img##*/}.jpg" ;;
|
2016-01-23 17:17:48 -07:00
|
|
|
|
esac
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
|
|
|
|
# Check to see if the thumbnail exists before we do any cropping.
|
2016-01-31 03:33:02 -07:00
|
|
|
|
if [ ! -f "$thumbnail_dir/$imgname" ]; then
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# Get image size so that we can do a better crop
|
2016-05-26 23:13:37 -06:00
|
|
|
|
if [ -z "$size" ]; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
size="$(identify -format "%w %h" "$img")"
|
|
|
|
|
og_width="${size%% *}"
|
|
|
|
|
og_height="${size##* }"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
2016-05-27 22:07:19 -06:00
|
|
|
|
# This checks to see if height is geater than width
|
|
|
|
|
# so we can do a better crop of portrait images.
|
2016-06-11 23:51:48 -06:00
|
|
|
|
size="$og_height"
|
|
|
|
|
[ "$og_height" -gt "$og_width" ] && size="$og_width"
|
2016-05-27 22:07:19 -06:00
|
|
|
|
fi
|
2016-01-02 23:54:16 -07:00
|
|
|
|
|
|
|
|
|
case "$crop_mode" in
|
|
|
|
|
fit)
|
2016-06-11 23:51:48 -06:00
|
|
|
|
c="$(convert "$img" \
|
2016-01-05 18:03:29 -07:00
|
|
|
|
-colorspace srgb \
|
2016-06-11 23:51:48 -06:00
|
|
|
|
-format "%[pixel:p{0,0}]" info:)"
|
2016-01-05 18:03:29 -07:00
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
convert \
|
|
|
|
|
"$img" \
|
|
|
|
|
-trim +repage \
|
|
|
|
|
-gravity south \
|
|
|
|
|
-background "$c" \
|
|
|
|
|
-extent "$size"x"$size" \
|
2016-05-26 22:56:09 -06:00
|
|
|
|
-scale "$width"x"$height" \
|
2016-01-31 03:33:02 -07:00
|
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
fill)
|
|
|
|
|
convert \
|
|
|
|
|
"$img" \
|
|
|
|
|
-trim +repage \
|
2016-05-26 22:56:09 -06:00
|
|
|
|
-scale "$width"x"$height"^ \
|
|
|
|
|
-extent "$width"x"$height" \
|
2016-01-31 03:33:02 -07:00
|
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-26 22:56:09 -06:00
|
|
|
|
none) cp "$img" "$thumbnail_dir/$imgname" ;;
|
2016-01-02 23:54:16 -07:00
|
|
|
|
*)
|
|
|
|
|
convert \
|
|
|
|
|
"$img" \
|
2016-11-06 02:11:12 -07:00
|
|
|
|
-gravity "$crop_offset" \
|
2016-01-02 23:54:16 -07:00
|
|
|
|
-crop "$size"x"$size"+0+0 \
|
2016-01-05 18:49:21 -07:00
|
|
|
|
-quality 95 \
|
2016-05-26 22:56:09 -06:00
|
|
|
|
-scale "$width"x"$height" \
|
2016-01-31 03:33:02 -07:00
|
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-02 23:54:16 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# The final image
|
2016-01-31 03:33:02 -07:00
|
|
|
|
img="$thumbnail_dir/$imgname"
|
2015-12-30 03:18:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-29 23:44:52 -07:00
|
|
|
|
# Find w3m-img {{{
|
|
|
|
|
|
|
|
|
|
# Find w3mimgdisplay automatically
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getw3m_img_path() {
|
2016-01-29 23:44:52 -07:00
|
|
|
|
if [ -x "$w3m_img_path" ]; then
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
elif [ -x "/usr/lib/w3m/w3mimgdisplay" ]; then
|
|
|
|
|
w3m_img_path="/usr/lib/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
|
|
elif [ -x "/usr/libexec/w3m/w3mimgdisplay" ]; then
|
|
|
|
|
w3m_img_path="/usr/libexec/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
|
|
elif [ -x "/usr/lib64/w3m/w3mimgdisplay" ]; then
|
|
|
|
|
w3m_img_path="/usr/lib64/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
|
|
elif [ -x "/usr/libexec64/w3m/w3mimgdisplay" ]; then
|
|
|
|
|
w3m_img_path="/usr/libexec64/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
image="ascii"
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Image: w3m-img wasn't found on your system, falling back to ascii mode."
|
2016-01-29 23:44:52 -07:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Display image {{{
|
|
|
|
|
|
|
|
|
|
displayimage() {
|
|
|
|
|
if [ "$image" != "ascii" ]; then
|
|
|
|
|
case "$image_backend" in
|
|
|
|
|
"w3m")
|
2016-10-03 01:08:47 -06:00
|
|
|
|
# Add a tiny delay to fix issues with images not
|
|
|
|
|
# appearing in specific terminal emulators.
|
2016-10-03 00:59:56 -06:00
|
|
|
|
sleep 0.05
|
2016-08-13 03:42:31 -06:00
|
|
|
|
printf "%b%s\n" "0;1;$xoffset;$yoffset;$width;$height;;;;;$img\n4;\n3;" |\
|
2016-11-06 02:11:12 -07:00
|
|
|
|
"$w3m_img_path" -bg "$background_color" >/dev/null & 2>&1 || padding="\033[0C"
|
2016-08-13 03:42:31 -06:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"iterm2")
|
|
|
|
|
printf "%b%s\a\n" "\033]1337;File=width=${width}px;height=${height}px;inline=1:$(base64 < "$img")"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"tycat")
|
|
|
|
|
tycat "$img"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Get image backend {{{
|
|
|
|
|
|
|
|
|
|
getimagebackend() {
|
|
|
|
|
if [ -n "$ITERM_PROFILE" ]; then
|
|
|
|
|
image_backend="iterm2"
|
|
|
|
|
|
|
|
|
|
elif [ "$(tycat 2>/dev/null)" ]; then
|
|
|
|
|
image_backend="tycat"
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
image_backend="w3m"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-10-02 02:29:13 -06:00
|
|
|
|
# Screenshot {{{
|
|
|
|
|
|
|
|
|
|
takescrot() {
|
2016-11-06 02:16:50 -07:00
|
|
|
|
$scrot_cmd "${scrot_dir}${scrot_name}"
|
2016-10-02 03:23:02 -06:00
|
|
|
|
[ "$scrot_upload" == "on" ] && scrot_upload
|
2016-10-02 02:29:13 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Screenshot Upload {{{
|
|
|
|
|
|
|
|
|
|
scrot_upload() {
|
2016-10-02 05:03:17 -06:00
|
|
|
|
if ! type -p curl >/dev/null 2>&1; then
|
|
|
|
|
printf "%s\n" "[!] Install curl to upload images"
|
|
|
|
|
return
|
|
|
|
|
fi
|
|
|
|
|
|
2016-10-02 02:29:13 -06:00
|
|
|
|
image_file="${scrot_dir}${scrot_name}"
|
2016-10-02 03:23:02 -06:00
|
|
|
|
printf "%s\n" "Uploading image..."
|
2016-10-02 02:29:13 -06:00
|
|
|
|
|
|
|
|
|
case "$image_host" in
|
|
|
|
|
"teknik")
|
2016-10-02 04:57:52 -06:00
|
|
|
|
image_url="$(curl -sf -F file="@${image_file}" "https://api.teknik.io/v1/Upload")"
|
2016-10-02 03:23:02 -06:00
|
|
|
|
image_url="$(awk -F 'url:|,' '{printf $2}' <<< "${image_url//\"}")"
|
2016-10-02 02:29:13 -06:00
|
|
|
|
;;
|
2016-10-02 04:57:52 -06:00
|
|
|
|
|
|
|
|
|
"imgur")
|
2016-10-02 06:46:22 -06:00
|
|
|
|
image_url="$(curl -sH "Authorization: Client-ID $imgur_client_id" -F image="@${image_file}" "https://api.imgur.com/3/upload")"
|
2016-10-02 04:57:52 -06:00
|
|
|
|
image_url="$(awk -F 'id:|,' '{printf $2}' <<< "${image_url//\"}")"
|
2016-10-02 05:46:51 -06:00
|
|
|
|
[ "$image_url" ] && image_url="https://i.imgur.com/${image_url}.png"
|
2016-10-02 04:57:52 -06:00
|
|
|
|
;;
|
2016-10-02 02:29:13 -06:00
|
|
|
|
esac
|
|
|
|
|
|
2016-10-25 22:38:45 -06:00
|
|
|
|
printf "%s\n" "${image_url:-'[!] Image failed to upload'}"
|
2016-10-02 02:29:13 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# Text Formatting {{{
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# Info {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
info() {
|
2016-02-01 07:56:33 -07:00
|
|
|
|
# $1 is the subtitle
|
|
|
|
|
subtitle="$1"
|
|
|
|
|
|
2016-01-20 14:58:50 -07:00
|
|
|
|
# Call the function and update variable
|
2016-11-05 23:25:53 -06:00
|
|
|
|
"get${2:-$1}" 2>/dev/null
|
2016-11-06 03:21:23 -07:00
|
|
|
|
eval output="\$${2:-"$1"}"
|
2016-01-20 14:58:50 -07:00
|
|
|
|
|
2016-11-04 03:09:27 -06:00
|
|
|
|
# Trim whitespace
|
|
|
|
|
output="$(trim "$output")"
|
|
|
|
|
|
2016-11-05 23:25:53 -06:00
|
|
|
|
# If prin was used in the function, stop here.
|
|
|
|
|
[ "$prin" ] && \
|
|
|
|
|
unset prin && return
|
|
|
|
|
|
|
|
|
|
# If the output is empty, don't print anything.
|
2016-11-06 02:46:41 -07:00
|
|
|
|
[ -z "${output// }" ] && \
|
2016-11-05 23:25:53 -06:00
|
|
|
|
err "Info: Couldn't detect $subtitle" && return
|
2016-02-01 00:50:10 -07:00
|
|
|
|
|
2016-01-20 14:58:50 -07:00
|
|
|
|
case "$1" in
|
|
|
|
|
title)
|
2016-05-13 18:54:53 -06:00
|
|
|
|
string="${title_color}${bold}${output}"
|
|
|
|
|
string="${string/@/${at_color}@${title_color}${bold}}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
length="${#output}"
|
2016-01-20 14:58:50 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-05 23:25:53 -06:00
|
|
|
|
underline) string="${underline_color}${output}" ;;
|
2016-01-20 14:58:50 -07:00
|
|
|
|
|
|
|
|
|
*)
|
2016-08-13 19:04:25 -06:00
|
|
|
|
string="${subtitle_color}${bold}${subtitle}${reset}"
|
2016-01-20 14:58:50 -07:00
|
|
|
|
string+="${colon_color}: ${info_color}${output}"
|
2016-06-11 23:51:48 -06:00
|
|
|
|
length="$((${#subtitle} + ${#output} + 2))"
|
2016-01-20 14:58:50 -07:00
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
2016-02-04 22:29:11 -07:00
|
|
|
|
# If there's no subtitle don't print one
|
2016-06-11 23:51:48 -06:00
|
|
|
|
[ -z "$2" ] && string="${string/*: }"
|
2016-02-04 22:29:11 -07:00
|
|
|
|
|
2016-02-01 07:56:33 -07:00
|
|
|
|
# Print the string
|
2016-10-21 01:35:17 -06:00
|
|
|
|
printf "%b%s\n" "${padding}${zws}${string}${reset} "
|
2016-09-30 20:28:21 -06:00
|
|
|
|
|
|
|
|
|
# Calculate info height
|
2016-09-30 20:30:59 -06:00
|
|
|
|
info_height="$((info_height+=1))"
|
2016-10-04 04:29:06 -06:00
|
|
|
|
|
|
|
|
|
# Fix rendering issues with w3m and lines that
|
|
|
|
|
# wrap to the next line by adding a max line
|
|
|
|
|
# length.
|
|
|
|
|
if [ "$image" != "off" ] && [ "$image" != "ascii" ] && [ "$1" != "cols" ]; then
|
|
|
|
|
padding_num="${padding/\\033\[}"
|
|
|
|
|
output="$(printf "%.$((columns - ${padding_num/C} - gap - ${#subtitle}))s" "$output")"
|
|
|
|
|
fi
|
2016-01-20 14:58:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Prin {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
prin() {
|
2016-11-06 03:21:23 -07:00
|
|
|
|
string="${1//$'\033[0m'}${2:+: "$2"}"
|
2016-01-20 14:58:50 -07:00
|
|
|
|
|
2016-08-02 07:50:05 -06:00
|
|
|
|
# If $2 doesn't exist we format $1 as info
|
2016-11-01 07:54:52 -06:00
|
|
|
|
[ -z "$2" ] && local subtitle_color="$info_color"
|
2016-08-02 07:50:05 -06:00
|
|
|
|
|
2016-08-02 07:44:10 -06:00
|
|
|
|
# Format the output
|
2016-08-13 18:55:01 -06:00
|
|
|
|
string="${string/:/${reset}${colon_color}:${info_color}}"
|
2016-08-02 07:44:10 -06:00
|
|
|
|
string="${subtitle_color}${bold}${string}"
|
|
|
|
|
|
2016-06-11 19:06:35 -06:00
|
|
|
|
# Trim whitespace
|
|
|
|
|
string="$(trim "$string")"
|
|
|
|
|
|
2016-02-05 07:04:41 -07:00
|
|
|
|
# Print the info
|
2016-10-21 01:35:17 -06:00
|
|
|
|
printf "%b%s\n" "${padding}${zws}${string}${reset} "
|
2016-09-30 20:28:21 -06:00
|
|
|
|
|
|
|
|
|
# Calculate info height
|
2016-09-30 20:30:59 -06:00
|
|
|
|
info_height="$((info_height+=1))"
|
2016-10-04 04:29:06 -06:00
|
|
|
|
|
|
|
|
|
# Fix rendering issues with w3m and lines that
|
|
|
|
|
# wrap to the next line by adding a max line
|
|
|
|
|
# length.
|
|
|
|
|
if [ "$image" != "off" ] && [ "$image" != "ascii" ]; then
|
|
|
|
|
padding_num="${padding/\\033\[}"
|
|
|
|
|
string="$(printf "%.$((columns - ${padding_num/C} - gap))s" "$string")"
|
|
|
|
|
fi
|
2016-11-05 23:25:53 -06:00
|
|
|
|
|
|
|
|
|
# Tell info() that prin() was used.
|
|
|
|
|
prin=1
|
2016-01-20 14:58:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Underline {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getunderline() {
|
2016-11-06 01:06:23 -06:00
|
|
|
|
if [ "$underline_enabled" == "on" ]; then
|
|
|
|
|
underline="$(printf %"$length"s)"
|
|
|
|
|
underline="${underline// /$underline_char}"
|
|
|
|
|
fi
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Colors {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
colors() {
|
2016-08-13 19:04:25 -06:00
|
|
|
|
# Reset colors/bold
|
|
|
|
|
reset="\033[0m"
|
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
# Change color of logo based on distro
|
|
|
|
|
case "$ascii_distro" in
|
2016-02-22 23:13:23 -07:00
|
|
|
|
"Arch"* | "Antergos"*)
|
2016-02-22 22:52:25 -07:00
|
|
|
|
setcolors 6 4
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-05 17:05:18 -06:00
|
|
|
|
"BlankOn"* | "DracOS"*)
|
2016-11-02 00:40:50 -06:00
|
|
|
|
setcolors 1 7
|
|
|
|
|
;;
|
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
"CentOS"*)
|
|
|
|
|
setcolors 3 2 4 5 7
|
|
|
|
|
;;
|
|
|
|
|
|
2016-03-25 02:34:05 -06:00
|
|
|
|
"CRUX"* | "Chakra"* | "gNewSense"* | "SailfishOS"* | "Alpine"* | "Ubuntu-GNOME"* | "Qubes"*)
|
2016-05-14 08:04:32 -06:00
|
|
|
|
setcolors 4 5 7 6
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Chrom"*)
|
|
|
|
|
setcolors 2 1 3 4 7
|
|
|
|
|
ascii_distro="chrome"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-11 11:02:33 -06:00
|
|
|
|
"Debian"* | "Ubuntu"* | "DragonFly"* | "PacBSD"* | "Oracle"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 1 7 3
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-31 18:43:06 -06:00
|
|
|
|
"Red Star"* | "Redstar")
|
2016-10-31 06:23:09 -06:00
|
|
|
|
setcolors 1 7 3
|
2016-10-31 18:43:06 -06:00
|
|
|
|
ascii_distro="redstar"
|
2016-10-31 06:23:09 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-05-13 23:44:05 -06:00
|
|
|
|
"FreeBSD"* | "PCBSD"*)
|
2016-05-12 04:21:27 -06:00
|
|
|
|
setcolors 1 7 3
|
2016-06-01 01:43:44 -06:00
|
|
|
|
ascii_distro="freebsd"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-02-22 23:13:23 -07:00
|
|
|
|
"Red"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 1 7 3
|
2016-02-22 22:52:25 -07:00
|
|
|
|
ascii_distro="redhat"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 00:23:54 -06:00
|
|
|
|
"Kogaion"* | "Elementary"* | "GalliumOS"* | "Rosa"* | "OpenWrt"* | "Netrunner"*)
|
2016-05-05 18:21:15 -06:00
|
|
|
|
setcolors 4 7
|
2016-05-05 11:24:48 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 00:09:30 -06:00
|
|
|
|
"Fedora"* | "Korora"* | "Sabayon"* | "Frugalware"* | "Exherbo"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 4 7 1
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-06-01 01:43:44 -06:00
|
|
|
|
"Gentoo"* | "Funtoo"* | "SteamOS"* | "Devuan"*)
|
2016-06-01 01:19:40 -06:00
|
|
|
|
setcolors 5 7
|
|
|
|
|
;;
|
|
|
|
|
|
2016-04-20 17:05:11 -06:00
|
|
|
|
"KDE"*)
|
|
|
|
|
setcolors 2 7
|
|
|
|
|
ascii_distro="kde"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
"Kali"*)
|
|
|
|
|
setcolors 4 8
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-13 22:33:36 -06:00
|
|
|
|
*"OS X"* | *"iOS"* | "Mac" | *"macOS"*)
|
2016-02-22 22:52:25 -07:00
|
|
|
|
setcolors 2 3 1 1 5 4
|
2016-03-13 05:49:37 -06:00
|
|
|
|
ascii_distro="mac"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"OpenMandriva"*)
|
|
|
|
|
setcolors 4 3
|
|
|
|
|
;;
|
|
|
|
|
|
2016-10-21 22:19:56 -06:00
|
|
|
|
"Mageia"* | "Porteus"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 6 7
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Peppermint"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 1 7
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*"Mint"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 2 7
|
2016-02-22 22:52:25 -07:00
|
|
|
|
ascii_distro="mint"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-10-15 20:48:25 -06:00
|
|
|
|
"LMDE"* | "Chapeau"* | "Bitrig"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 2 7
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-21 02:01:25 -06:00
|
|
|
|
"Android"*)
|
2016-06-01 01:43:44 -06:00
|
|
|
|
setcolors 2 7
|
2016-10-21 02:01:25 -06:00
|
|
|
|
ascii_length_force="19"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"NetBSD"* | "Parabola"* | "Tails"* | "BLAG"*)
|
|
|
|
|
setcolors 5 7
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-27 02:42:56 -06:00
|
|
|
|
"OpenBSD"* | "GuixSD"*)
|
2016-04-24 19:59:29 -06:00
|
|
|
|
setcolors 3 7 6 1 8
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-24 08:53:13 -06:00
|
|
|
|
*"SUSE"* | "Manjaro"* | "Deepin"*)
|
2016-02-22 22:52:25 -07:00
|
|
|
|
setcolors 2 7
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-11 17:26:59 -06:00
|
|
|
|
"PCLinuxOS"* | "Slackware"* | "KaOS"* | "Kubuntu"* | "Lubuntu"* | "Xubuntu"* | "OpenIndiana"*)
|
2016-02-23 03:20:36 -07:00
|
|
|
|
setcolors 4 7 1
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-03-26 05:32:31 -06:00
|
|
|
|
"Puppy"* | "Quirky Werewolf"* | "Precise Puppy"*)
|
|
|
|
|
setcolors 4
|
|
|
|
|
ascii_distro="puppy"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-10-15 16:38:56 -06:00
|
|
|
|
"Sparky"*)
|
|
|
|
|
setcolors 1 7
|
|
|
|
|
ascii_distro="sparky"
|
|
|
|
|
;;
|
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
"Scientific"*)
|
|
|
|
|
setcolors 4 1 7
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Solus"*)
|
2016-10-26 15:20:20 -06:00
|
|
|
|
setcolors 4 7
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Trisquel"* | "NixOS"* | "Zorin"*)
|
|
|
|
|
setcolors 4 6
|
|
|
|
|
;;
|
|
|
|
|
|
2016-03-25 22:22:24 -06:00
|
|
|
|
"Travis")
|
2016-08-04 18:37:13 -06:00
|
|
|
|
setcolors 1 2 3 4 5 6
|
2016-03-25 22:22:24 -06:00
|
|
|
|
;;
|
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
"void"*)
|
2016-03-02 15:40:16 -07:00
|
|
|
|
setcolors 2 8
|
2016-02-22 22:52:25 -07:00
|
|
|
|
;;
|
|
|
|
|
|
2016-10-01 18:33:31 -06:00
|
|
|
|
"Windows 8"* | "Windows 10"*)
|
2016-02-22 22:52:25 -07:00
|
|
|
|
setcolors 6
|
|
|
|
|
ascii_distro="windows10"
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
"Windows"*)
|
|
|
|
|
setcolors 1 2 4 3
|
|
|
|
|
;;
|
2016-02-22 23:24:12 -07:00
|
|
|
|
|
2016-11-04 18:46:08 -06:00
|
|
|
|
"Haiku"*)
|
|
|
|
|
setcolors 2 0
|
|
|
|
|
;;
|
|
|
|
|
|
2016-11-04 17:29:21 -06:00
|
|
|
|
"Raspbian"*)
|
2016-02-22 23:24:12 -07:00
|
|
|
|
setcolors 2 1
|
|
|
|
|
;;
|
2016-11-04 17:29:21 -06:00
|
|
|
|
|
|
|
|
|
"Linux")
|
|
|
|
|
setcolors fg 8 3
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*)
|
|
|
|
|
case "$os" in
|
|
|
|
|
"Linux")
|
|
|
|
|
ascii_distro="linux"
|
|
|
|
|
setcolors fg 8 3
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
2016-02-22 22:52:25 -07:00
|
|
|
|
esac
|
2016-02-23 02:06:35 -07:00
|
|
|
|
|
|
|
|
|
# Overwrite distro colors if '$ascii_colors' doesn't
|
|
|
|
|
# equal 'distro'.
|
|
|
|
|
[ "${ascii_colors[0]}" != "distro" ] && \
|
|
|
|
|
setcolors ${ascii_colors[@]}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
setcolors() {
|
2016-06-11 22:35:29 -06:00
|
|
|
|
c1="$(color "$1")${ascii_bold}"
|
|
|
|
|
c2="$(color "$2")${ascii_bold}"
|
|
|
|
|
c3="$(color "$3")${ascii_bold}"
|
|
|
|
|
c4="$(color "$4")${ascii_bold}"
|
|
|
|
|
c5="$(color "$5")${ascii_bold}"
|
|
|
|
|
c6="$(color "$6")${ascii_bold}"
|
2016-03-29 02:54:09 -06:00
|
|
|
|
|
2016-02-22 22:52:25 -07:00
|
|
|
|
if [ "${colors[0]}" == "distro" ]; then
|
2016-11-06 02:12:25 -07:00
|
|
|
|
title_color="$(color "$1")"
|
2016-08-13 19:04:25 -06:00
|
|
|
|
at_color="$reset"
|
|
|
|
|
underline_color="$reset"
|
2016-11-06 02:12:25 -07:00
|
|
|
|
subtitle_color="$(color "$2")"
|
2016-08-13 19:04:25 -06:00
|
|
|
|
colon_color="$reset"
|
|
|
|
|
info_color="$reset"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
|
|
|
|
|
# If the second color is white use the first for the subtitle
|
2016-08-13 19:04:25 -06:00
|
|
|
|
[ "$2" == 7 ] && subtitle_color="$(color "$1")"
|
|
|
|
|
[ "$1" == 7 ] && title_color="$reset"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
else
|
2016-06-11 22:35:29 -06:00
|
|
|
|
title_color="$(color "${colors[0]}")"
|
|
|
|
|
at_color="$(color "${colors[1]}")"
|
|
|
|
|
underline_color="$(color "${colors[2]}")"
|
|
|
|
|
subtitle_color="$(color "${colors[3]}")"
|
|
|
|
|
colon_color="$(color "${colors[4]}")"
|
|
|
|
|
info_color="$(color "${colors[5]}")"
|
2016-02-22 22:52:25 -07:00
|
|
|
|
fi
|
2016-03-27 03:46:05 -06:00
|
|
|
|
|
2016-03-29 06:02:23 -06:00
|
|
|
|
if [ "$progress_color_elapsed" == "distro" ]; then
|
2016-04-23 19:10:57 -06:00
|
|
|
|
progress_color_elapsed="$(color fg)"
|
2016-03-29 06:02:23 -06:00
|
|
|
|
else
|
2016-06-11 22:35:29 -06:00
|
|
|
|
progress_color_elapsed="$(color "$progress_color_elapsed")"
|
2016-03-27 03:49:06 -06:00
|
|
|
|
fi
|
2016-03-27 03:46:05 -06:00
|
|
|
|
|
2016-03-29 06:31:08 -06:00
|
|
|
|
case "$progress_color_total $1" in
|
|
|
|
|
distro\ [736]) progress_color_total="$c2" ;;
|
|
|
|
|
distro\ [0-9]) progress_color_total="$c1" ;;
|
2016-06-11 22:35:29 -06:00
|
|
|
|
*) progress_color_total="$(color "$progress_color_total")" ;;
|
2016-03-29 06:31:08 -06:00
|
|
|
|
esac
|
2016-01-20 15:49:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
color() {
|
2016-04-23 17:34:02 -06:00
|
|
|
|
case "$1" in
|
2016-11-01 07:41:52 -06:00
|
|
|
|
[0-6]) printf "%b%s" "${reset}\033[3${1}m" ;;
|
2016-10-26 15:20:20 -06:00
|
|
|
|
7 | "fg") printf "%b%s" "$reset" ;;
|
2016-04-23 17:34:02 -06:00
|
|
|
|
*) printf "%b%s" "\033[38;5;${1}m" ;;
|
|
|
|
|
esac
|
2016-03-03 19:15:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Bold {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
bold() {
|
2016-05-14 09:13:33 -06:00
|
|
|
|
case "$ascii_bold" in
|
|
|
|
|
"on") ascii_bold="\033[1m" ;;
|
|
|
|
|
"off") ascii_bold="" ;;
|
|
|
|
|
esac
|
|
|
|
|
|
2016-01-31 19:19:09 -07:00
|
|
|
|
case "$bold" in
|
|
|
|
|
"on") bold="\033[1m" ;;
|
|
|
|
|
"off") bold="" ;;
|
|
|
|
|
esac
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-26 05:06:53 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-29 05:54:12 -07:00
|
|
|
|
# Linebreak {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getlinebreak() {
|
2016-11-04 03:09:27 -06:00
|
|
|
|
linebreak=" "
|
2016-10-21 17:11:18 -06:00
|
|
|
|
|
|
|
|
|
# Calculate info height
|
|
|
|
|
info_height="$((info_height+=1))"
|
2016-01-29 05:54:12 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
2016-01-26 05:06:53 -07:00
|
|
|
|
|
2016-06-11 19:06:35 -06:00
|
|
|
|
# Trim whitespace {{{
|
|
|
|
|
|
2016-06-11 19:57:10 -06:00
|
|
|
|
# When a string is passed to 'echo' all trailing and leading
|
|
|
|
|
# whitespace is removed and inside the string multiple spaces are
|
|
|
|
|
# condensed into single spaces.
|
|
|
|
|
#
|
|
|
|
|
# The 'set -f/+f' is here so that 'echo' doesn't cause any expansion
|
|
|
|
|
# of special characters.
|
|
|
|
|
#
|
|
|
|
|
# The whitespace trim doesn't work with multiline strings so we use
|
|
|
|
|
# '${1//[[:space:]]/ }' to remove newlines beofre we trim the whitespace.
|
2016-06-11 19:06:35 -06:00
|
|
|
|
trim() {
|
|
|
|
|
set -f
|
2016-06-11 19:57:10 -06:00
|
|
|
|
builtin echo -E ${1//[[:space:]]/ }
|
2016-06-11 19:06:35 -06:00
|
|
|
|
set +f
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2015-12-30 03:18:17 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
# Other {{{
|
|
|
|
|
|
2016-08-11 19:20:32 -06:00
|
|
|
|
# Error {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
err() {
|
2016-08-13 21:13:21 -06:00
|
|
|
|
err+="$(color 1)[!]\033[0m $1
|
2016-08-12 00:45:36 -06:00
|
|
|
|
"
|
2016-08-11 19:20:32 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-10-14 20:08:12 -06:00
|
|
|
|
# Check for old flags {{{
|
|
|
|
|
|
|
|
|
|
checkoldflags() {
|
2016-10-21 08:27:39 -06:00
|
|
|
|
[ -n "$osx_buildversion" ] && err "Config: \$osx_buildversion is deprecated, use \$distro_shorthand instead."
|
|
|
|
|
[ -n "$osx_codename" ] && err "Config: \$osx_codename is deprecated, use \$distro_shorthand instead."
|
|
|
|
|
[ -n "$progress_char" ] && err "Config: \$progress_char is deprecated, use \$progress_char_elapsed and \$progress_char_total instead."
|
|
|
|
|
[ "$cpu_cores" == "on" ] && err "Config: \$cpu_cores='on' is deprecated, use \$cpu_cores='logical|physical|off' instead."
|
2016-10-14 20:08:12 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
# Get script directory {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getscriptdir() {
|
2016-08-11 17:47:09 -06:00
|
|
|
|
[ "$script_dir" ] && return
|
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
# Use $0 to get the script's physical path.
|
2016-01-29 22:31:22 -07:00
|
|
|
|
cd "${0%/*}" || exit
|
2016-06-11 23:51:48 -06:00
|
|
|
|
script_dir="${0##*/}"
|
2016-01-29 08:14:29 -07:00
|
|
|
|
|
|
|
|
|
# Iterate down a (possible) chain of symlinks.
|
|
|
|
|
while [ -L "$script_dir" ]; do
|
2016-01-29 22:31:22 -07:00
|
|
|
|
script_dir="$(readlink "$script_dir")"
|
|
|
|
|
cd "${script_dir%/*}" || exit
|
2016-01-29 08:14:29 -07:00
|
|
|
|
script_dir="${script_dir##*/}"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Final directory
|
|
|
|
|
script_dir="$(pwd -P)"
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 19:20:32 -06:00
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
# Source default config {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getdefaultconfig() {
|
2016-08-11 19:20:32 -06:00
|
|
|
|
if [ -f "/usr/share/neofetch/config" ]; then
|
|
|
|
|
default_config="/usr/share/neofetch/config"
|
|
|
|
|
|
|
|
|
|
elif [ -f "/usr/local/share/neofetch/config" ]; then
|
|
|
|
|
default_config="/usr/local/share/neofetch/config"
|
|
|
|
|
|
2016-11-02 09:18:45 -06:00
|
|
|
|
elif [ -f "/data/data/com.termux/files/usr/share/neofetch/config" ]; then
|
|
|
|
|
default_config="/data/data/com.termux/files/usr/share/neofetch/config"
|
|
|
|
|
|
2016-08-11 19:20:32 -06:00
|
|
|
|
else
|
|
|
|
|
getscriptdir
|
|
|
|
|
default_config="${script_dir}/config/config"
|
2016-11-04 00:42:32 -06:00
|
|
|
|
travis_config="${script_dir}/config/travis"
|
2016-08-11 19:20:32 -06:00
|
|
|
|
fi
|
|
|
|
|
|
2016-08-11 19:38:32 -06:00
|
|
|
|
if source "$default_config"; then
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Config: Sourced default config ($default_config)"
|
2016-08-11 19:20:32 -06:00
|
|
|
|
else
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Config: Default config not found, continuing..."
|
2016-08-11 19:20:32 -06:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Source config {{{
|
2016-01-29 08:14:29 -07:00
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
getuserconfig() {
|
2016-01-29 18:05:53 -07:00
|
|
|
|
# Check $config_file
|
2016-01-29 08:14:29 -07:00
|
|
|
|
if [ -f "$config_file" ]; then
|
|
|
|
|
source "$config_file"
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Config: Sourced user config ($config_file)"
|
2016-01-29 08:14:29 -07:00
|
|
|
|
return
|
2016-11-04 00:42:32 -06:00
|
|
|
|
|
|
|
|
|
elif [ "$config_file" == "travis" ]; then
|
|
|
|
|
source "$travis_config"
|
|
|
|
|
err "Config: Sourced user config ($travis_config)"
|
|
|
|
|
return
|
2016-01-29 08:14:29 -07:00
|
|
|
|
fi
|
2016-03-31 16:47:48 -06:00
|
|
|
|
mkdir -p "$XDG_CONFIG_HOME/neofetch/"
|
2016-01-29 08:14:29 -07:00
|
|
|
|
|
2016-03-31 16:47:48 -06:00
|
|
|
|
# Check $XDG_CONFIG_HOME/neofetch and create the
|
2016-01-29 08:14:29 -07:00
|
|
|
|
# dir/files if they don't exist.
|
2016-03-31 16:47:48 -06:00
|
|
|
|
if [ -f "$XDG_CONFIG_HOME/neofetch/config" ]; then
|
2016-08-11 19:25:59 -06:00
|
|
|
|
config_file="$XDG_CONFIG_HOME/neofetch/config"
|
2016-01-29 08:18:27 -07:00
|
|
|
|
|
2016-02-27 17:44:45 -07:00
|
|
|
|
elif [ -f "/usr/share/neofetch/config" ]; then
|
2016-03-31 16:47:48 -06:00
|
|
|
|
cp "/usr/share/neofetch/config" "$XDG_CONFIG_HOME/neofetch"
|
2016-08-11 19:25:59 -06:00
|
|
|
|
config_file="$XDG_CONFIG_HOME/neofetch/config"
|
2016-01-29 08:18:27 -07:00
|
|
|
|
|
2016-02-27 17:44:45 -07:00
|
|
|
|
elif [ -f "/usr/local/share/neofetch/config" ]; then
|
2016-03-31 16:47:48 -06:00
|
|
|
|
cp "/usr/local/share/neofetch/config" "$XDG_CONFIG_HOME/neofetch"
|
2016-08-11 19:25:59 -06:00
|
|
|
|
config_file="$XDG_CONFIG_HOME/neofetch/config"
|
2016-02-08 04:02:49 -07:00
|
|
|
|
|
2016-01-29 08:14:29 -07:00
|
|
|
|
else
|
|
|
|
|
getscriptdir
|
|
|
|
|
|
2016-03-31 16:47:48 -06:00
|
|
|
|
cp "$script_dir/config/config" "$XDG_CONFIG_HOME/neofetch"
|
2016-08-11 19:25:59 -06:00
|
|
|
|
config_file="$XDG_CONFIG_HOME/neofetch/config"
|
2016-01-29 08:14:29 -07:00
|
|
|
|
fi
|
2016-08-11 19:25:59 -06:00
|
|
|
|
|
|
|
|
|
source "$config_file"
|
2016-10-21 08:27:39 -06:00
|
|
|
|
err "Config: Sourced user config ($config_file)"
|
2016-01-29 08:14:29 -07:00
|
|
|
|
}
|
2016-01-29 17:30:21 -07:00
|
|
|
|
|
2016-08-11 17:47:09 -06:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Progress bars {{{
|
2016-03-02 16:12:21 -07:00
|
|
|
|
|
|
|
|
|
bar() {
|
|
|
|
|
# Get the values
|
2016-06-11 23:51:48 -06:00
|
|
|
|
elapsed="$(($1 * progress_length / $2))"
|
2016-03-02 16:12:21 -07:00
|
|
|
|
|
|
|
|
|
# Create the bar with spaces
|
2016-06-11 23:51:48 -06:00
|
|
|
|
prog="$(printf %"$elapsed"s)"
|
|
|
|
|
total="$(printf %"$((progress_length - elapsed))"s)"
|
2016-03-02 16:12:21 -07:00
|
|
|
|
|
|
|
|
|
# Set the colors and swap the spaces for $progress_char
|
2016-04-24 02:30:57 -06:00
|
|
|
|
bar+="${progress_color_elapsed}${prog// /$progress_char_elapsed}"
|
|
|
|
|
bar+="${progress_color_total}${total// /$progress_char_total}"
|
|
|
|
|
|
|
|
|
|
# Borders
|
|
|
|
|
if [ "$progress_border" == "on" ]; then
|
|
|
|
|
bar+="$(color fg)]"
|
|
|
|
|
bar="$(color fg)[$bar"
|
|
|
|
|
fi
|
|
|
|
|
|
2016-06-13 05:59:54 -06:00
|
|
|
|
printf "%b%s\n" "${bar}${info_color}"
|
2016-03-02 16:12:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
2016-01-29 08:14:29 -07:00
|
|
|
|
|
2016-03-29 21:00:13 -06:00
|
|
|
|
# Cache {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
cache() {
|
2016-03-30 02:24:03 -06:00
|
|
|
|
mkdir -p "$3/neofetch"
|
|
|
|
|
echo "${1/*-}=\"$2\"" > "$3/neofetch/${1/*-}"
|
2016-03-29 21:00:13 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
2016-03-27 16:41:53 -06:00
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# KDE config directory {{{
|
2016-03-31 21:50:15 -06:00
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
kdeconfigdir() {
|
2016-04-01 00:38:06 -06:00
|
|
|
|
if [ -n "$KDE_CONFIG_DIR" ]; then
|
|
|
|
|
kde_config_dir="$KDE_CONFIG_DIR"
|
|
|
|
|
|
|
|
|
|
elif type -p kde5-config >/dev/null 2>&1; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
kde_config_dir="$(kde5-config --localprefix)"
|
2016-03-31 21:50:15 -06:00
|
|
|
|
|
|
|
|
|
elif type -p kde4-config >/dev/null 2>&1; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
kde_config_dir="$(kde4-config --localprefix)"
|
2016-03-31 21:50:15 -06:00
|
|
|
|
|
|
|
|
|
elif type -p kde-config >/dev/null 2>&1; then
|
2016-06-11 23:51:48 -06:00
|
|
|
|
kde_config_dir="$(kde-config --localprefix)"
|
2016-03-31 21:50:15 -06:00
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-10-22 20:47:49 -06:00
|
|
|
|
# Terminal info {{{
|
|
|
|
|
#
|
|
|
|
|
# Parse terminal config files to get
|
|
|
|
|
# info about padding. Due to how w3m-img
|
|
|
|
|
# works padding around the terminal throws
|
|
|
|
|
# off the cursor placement calculation in
|
|
|
|
|
# specific terminals.
|
|
|
|
|
#
|
|
|
|
|
# Note: This issue only seems to affect
|
|
|
|
|
# URxvt.
|
|
|
|
|
|
|
|
|
|
gettermpadding() {
|
|
|
|
|
[ -z "$term" ] && getterm
|
|
|
|
|
|
|
|
|
|
case "$term" in
|
|
|
|
|
"URxvt"*)
|
|
|
|
|
border="$(xrdb -query | grep -i "\(URxvt\|\*\)\.InternalBorder")"
|
|
|
|
|
border="${border/*:}"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Dynamic prompt location {{{
|
|
|
|
|
|
|
|
|
|
dynamicprompt() {
|
|
|
|
|
# Calculate image height in terminal cells.
|
2016-10-21 08:05:47 -06:00
|
|
|
|
if [ "$image" != "ascii" ]; then
|
2016-10-22 20:47:49 -06:00
|
|
|
|
gettermpadding
|
2016-11-02 00:17:09 -06:00
|
|
|
|
lines="$(((height + (${border:-0} * 2) + ${yoffset:-0}) / font_height))"
|
2016-10-21 16:51:58 -06:00
|
|
|
|
else
|
2016-10-22 21:08:45 -06:00
|
|
|
|
lines="$((lines-=2))"
|
2016-10-21 08:05:47 -06:00
|
|
|
|
fi
|
2016-08-13 03:42:31 -06:00
|
|
|
|
|
|
|
|
|
# If the info is higher than the ascii/image place the prompt
|
|
|
|
|
# based on the info height instead of the ascii/image height.
|
2016-09-30 20:28:21 -06:00
|
|
|
|
if [ "${lines:-0}" -lt "${info_height:-0}" ]; then
|
2016-10-21 17:15:47 -06:00
|
|
|
|
lines="-2"
|
2016-09-30 20:28:21 -06:00
|
|
|
|
else
|
2016-10-22 21:08:45 -06:00
|
|
|
|
lines="$((lines - info_height))"
|
2016-09-30 20:28:21 -06:00
|
|
|
|
fi
|
2016-08-13 03:42:31 -06:00
|
|
|
|
|
|
|
|
|
# Set the prompt location
|
2016-10-21 17:15:47 -06:00
|
|
|
|
if [ "$lines" -lt 0 ]; then
|
2016-10-21 17:20:14 -06:00
|
|
|
|
printf "\033[${lines/-}A"
|
2016-10-21 17:15:47 -06:00
|
|
|
|
else
|
|
|
|
|
printf "\033[${lines}B"
|
|
|
|
|
fi
|
2016-10-03 04:47:29 -06:00
|
|
|
|
|
2016-10-21 07:42:34 -06:00
|
|
|
|
# Add some padding
|
2016-11-05 17:23:27 -06:00
|
|
|
|
printf "\n\n\n"
|
2016-08-13 03:42:31 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-10-02 06:58:08 -06:00
|
|
|
|
# Scrot args {{{
|
|
|
|
|
|
|
|
|
|
scrot_args() {
|
|
|
|
|
scrot="on"
|
|
|
|
|
case "$2" in
|
2016-10-03 15:48:33 -06:00
|
|
|
|
"-"* | "") ;;
|
2016-10-02 06:58:08 -06:00
|
|
|
|
*)
|
|
|
|
|
scrot_name="${2##*/}"
|
|
|
|
|
scrot_dir="${2/$scrot_name}"
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-06-13 05:59:54 -06:00
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# Usage {{{
|
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
usage() { cat << EOF
|
2016-01-05 15:40:54 -07:00
|
|
|
|
|
2016-02-27 17:44:45 -07:00
|
|
|
|
usage: neofetch --option "value" --option "value"
|
2016-01-05 15:40:54 -07:00
|
|
|
|
|
2016-02-20 23:07:14 -07:00
|
|
|
|
NOTE: There's also a config option for each flag below.
|
|
|
|
|
|
2016-01-05 15:40:54 -07:00
|
|
|
|
Info:
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--disable infoname Allows you to disable an info line from appearing
|
|
|
|
|
in the output.
|
|
|
|
|
NOTE: You can supply multiple args. eg.
|
2016-02-27 17:44:45 -07:00
|
|
|
|
'neofetch --disable cpu gpu disk shell'
|
2016-10-07 04:23:16 -06:00
|
|
|
|
--os_arch on/off Hide/Show OS architecture.
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--speed_type type Change the type of cpu speed to display.
|
|
|
|
|
Possible values: current, min, max, bios,
|
|
|
|
|
scaling_current, scaling_min, scaling_max
|
|
|
|
|
NOTE: This only support Linux with cpufreq.
|
2016-03-10 14:27:00 -07:00
|
|
|
|
--cpu_shorthand type Shorten the output of CPU
|
2016-03-10 19:59:22 -07:00
|
|
|
|
Possible values: name, speed, tiny, on, off
|
2016-10-20 23:38:02 -06:00
|
|
|
|
--cpu_cores type Whether or not to display the number of CPU cores
|
2016-10-20 23:40:58 -06:00
|
|
|
|
Takes: logical, physical, off
|
2016-10-22 16:45:03 -06:00
|
|
|
|
NOTE: 'physical' doesn't work on BSD.
|
|
|
|
|
--cpu_speed on/off Hide/Show cpu speed.
|
|
|
|
|
--cpu_temp on/off Hide/Show cpu temperature.
|
|
|
|
|
NOTE This only works on linux.
|
2016-08-31 08:43:53 -06:00
|
|
|
|
--distro_shorthand on/off Shorten the output of distro (tiny, on, off)
|
2016-10-30 01:18:15 -06:00
|
|
|
|
NOTE: This option won't work in Windows (Cygwin)
|
2016-10-30 03:55:14 -06:00
|
|
|
|
--kernel_shorthand on/off Shorten the output of kernel
|
2016-10-30 01:18:15 -06:00
|
|
|
|
NOTE: This option won't work in BSDs (except PacBSD and PC-BSD)
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--uptime_shorthand on/off Shorten the output of uptime (tiny, on, off)
|
2016-03-17 23:28:26 -06:00
|
|
|
|
--refresh_rate on/off Whether to display the refresh rate of each monitor
|
2016-03-25 18:34:35 -06:00
|
|
|
|
Unsupported on Windows
|
2016-10-02 01:26:50 -06:00
|
|
|
|
--gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel)
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--gtk_shorthand on/off Shorten output of gtk theme/icons
|
|
|
|
|
--gtk2 on/off Enable/Disable gtk2 theme/icons output
|
|
|
|
|
--gtk3 on/off Enable/Disable gtk3 theme/icons output
|
|
|
|
|
--shell_path on/off Enable/Disable showing \$SHELL path
|
|
|
|
|
--shell_version on/off Enable/Disable showing \$SHELL version
|
2016-10-26 01:24:37 -06:00
|
|
|
|
--ip_host url Url to query for public IP
|
2016-02-18 17:26:24 -07:00
|
|
|
|
--song_shorthand on/off Print the Artist/Title on seperate lines
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--birthday_shorthand on/off Shorten the output of birthday
|
2016-02-06 22:41:34 -07:00
|
|
|
|
--birthday_time on/off Enable/Disable showing the time in birthday output
|
2016-03-05 15:56:46 -07:00
|
|
|
|
--birthday_format format Format the birthday output. (Uses 'date' cmd format)
|
2016-01-18 19:49:30 -07:00
|
|
|
|
|
2016-01-05 15:40:54 -07:00
|
|
|
|
Text Formatting:
|
2016-03-04 15:30:53 -07:00
|
|
|
|
--colors x x x x x x Changes the text colors in this order:
|
|
|
|
|
title, @, underline, subtitle, colon, info
|
2016-04-29 01:41:21 -06:00
|
|
|
|
--underline on/off enable/disable the underline.
|
2016-03-04 15:30:53 -07:00
|
|
|
|
--underline_char char Character to use when underlining title
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--bold on/off Enable/Disable bold text
|
|
|
|
|
|
2016-01-05 15:40:54 -07:00
|
|
|
|
Color Blocks:
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--color_blocks on/off Enable/Disable the color blocks
|
2016-05-27 17:53:35 -06:00
|
|
|
|
--block_width num Width of color blocks in spaces
|
|
|
|
|
--block_height num Height of color blocks in lines
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--block_range start end Range of colors to print as blocks
|
|
|
|
|
|
2016-03-02 16:12:21 -07:00
|
|
|
|
Progress Bars:
|
2016-04-29 01:41:21 -06:00
|
|
|
|
--progress_char 'elapsed char' 'total char'
|
|
|
|
|
Characters to use when drawing progress bars.
|
|
|
|
|
--progress_border on/off Whether or not to surround the bar with '[]'
|
2016-03-02 16:41:13 -07:00
|
|
|
|
--progress_length num Length in spaces to make the progress bars.
|
2016-03-12 15:14:56 -07:00
|
|
|
|
--progress_colors num num Colors to make the progress bar.
|
|
|
|
|
Set in this order: elapsed, total
|
2016-06-13 05:42:53 -06:00
|
|
|
|
--cpu_display mode Progress bar mode.
|
|
|
|
|
Takes: bar, infobar, barinfo, off
|
|
|
|
|
--memory_display mode Progress bar mode.
|
|
|
|
|
Takes: bar, infobar, barinfo, off
|
|
|
|
|
--battery_display mode Progress bar mode.
|
|
|
|
|
Takes: bar, infobar, barinfo, off
|
|
|
|
|
--disk_display mode Progress bar mode.
|
|
|
|
|
Takes: bar, infobar, barinfo, off
|
2016-03-02 16:12:21 -07:00
|
|
|
|
|
2016-01-05 15:40:54 -07:00
|
|
|
|
Image:
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--image type Image source. Where and what image we display.
|
2016-03-25 04:22:58 -06:00
|
|
|
|
Possible values: wall, ascii,
|
|
|
|
|
/path/to/img, /path/to/dir/, off
|
2016-05-26 23:23:02 -06:00
|
|
|
|
--size 00px | --size 00% How to size the image.
|
|
|
|
|
Possible values: auto, 00px, 00%, none
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--crop_mode mode Which crop mode to use
|
|
|
|
|
Takes the values: normal, fit, fill
|
|
|
|
|
--crop_offset value Change the crop offset for normal mode.
|
|
|
|
|
Possible values: northwest, north, northeast,
|
|
|
|
|
west, center, east, southwest, south, southeast
|
|
|
|
|
|
|
|
|
|
--xoffset px How close the image will be to the left edge of the
|
|
|
|
|
window. This only works with w3m.
|
|
|
|
|
--yoffset px How close the image will be to the top edge of the
|
|
|
|
|
window. This only works with w3m.
|
2016-10-21 08:14:02 -06:00
|
|
|
|
--bg_color color Background color to display behind transparent image.
|
|
|
|
|
This only works with w3m.
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--gap num Gap between image and text.
|
|
|
|
|
NOTE: --gap can take a negative value which will
|
|
|
|
|
move the text closer to the left side.
|
|
|
|
|
--clean Remove all cropped images
|
2016-01-05 15:40:54 -07:00
|
|
|
|
|
2016-01-27 04:33:22 -07:00
|
|
|
|
Ascii:
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--ascii value Where to get the ascii from, Possible values:
|
|
|
|
|
distro, /path/to/ascii
|
2016-03-05 15:08:59 -07:00
|
|
|
|
--ascii_colors x x x x x x Colors to print the ascii art
|
2016-02-28 12:38:01 -07:00
|
|
|
|
--ascii_distro distro Which Distro's ascii art to print
|
2016-04-29 01:41:21 -06:00
|
|
|
|
--ascii_logo_size Size of ascii logo.
|
|
|
|
|
Supported distros: Arch, Gentoo, Crux, OpenBSD.
|
2016-05-14 09:13:33 -06:00
|
|
|
|
--ascii_bold on/off Whether or not to bold the ascii logo.
|
2016-10-03 04:51:42 -06:00
|
|
|
|
--logo | -L Hide the info text and only show the ascii logo.
|
2016-01-27 04:33:22 -07:00
|
|
|
|
|
2016-01-07 22:08:00 -07:00
|
|
|
|
Screenshot:
|
2016-10-02 03:28:35 -06:00
|
|
|
|
--scrot | -s /path/to/img Take a screenshot, if path is left empty the screen-
|
2016-02-03 01:15:42 -07:00
|
|
|
|
shot function will use \$scrot_dir and \$scrot_name.
|
2016-10-03 15:26:31 -06:00
|
|
|
|
--upload | -su /pth/t/img Same as --scrot but uploads the scrot to a website.
|
2016-10-02 05:49:30 -06:00
|
|
|
|
--image_host Website to upload scrots to. Takes: imgur, teknik
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--scrot_cmd cmd Screenshot program to launch
|
2016-01-07 22:08:00 -07:00
|
|
|
|
|
2016-01-05 15:40:54 -07:00
|
|
|
|
Other:
|
2016-02-03 01:15:42 -07:00
|
|
|
|
--config /path/to/config Specify a path to a custom config file
|
|
|
|
|
--config none Launch the script without a config file
|
|
|
|
|
--help Print this text and exit
|
2016-05-29 23:14:16 -06:00
|
|
|
|
--version Show neofetch version
|
2016-04-29 01:45:51 -06:00
|
|
|
|
-v Display error messages.
|
|
|
|
|
-vv Display a verbose log for error reporting.
|
2016-01-05 15:40:54 -07:00
|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
exit 1
|
2016-01-02 23:54:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-03 16:20:36 -07:00
|
|
|
|
# Args {{{
|
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
getargs() {
|
|
|
|
|
# Check the commandline flags early for '--config none/off'
|
|
|
|
|
case "$@" in
|
|
|
|
|
*"--config off"* | *'--config "off"'* | *"--config 'off'"* | \
|
2016-08-19 07:01:18 -06:00
|
|
|
|
*"--config none"* | *'--config "none"'* | *"--config 'none'"*)
|
2016-08-13 21:13:21 -06:00
|
|
|
|
config="off"
|
2016-02-03 18:50:50 -07:00
|
|
|
|
;;
|
2016-01-18 19:49:30 -07:00
|
|
|
|
|
2016-10-03 15:48:33 -06:00
|
|
|
|
*"--config -"*) ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
*"--config"*) config="off" ;;
|
|
|
|
|
esac
|
2016-02-14 02:39:35 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
[ "${config:-on}" == "on" ] && getuserconfig 2>/dev/null
|
|
|
|
|
|
|
|
|
|
while [ "$1" ]; do
|
2016-11-06 02:11:12 -07:00
|
|
|
|
case "$1" in
|
2016-08-13 21:13:21 -06:00
|
|
|
|
# Info
|
|
|
|
|
--os_arch) os_arch="$2" ;;
|
|
|
|
|
--cpu_cores) cpu_cores="$2" ;;
|
2016-10-22 16:45:03 -06:00
|
|
|
|
--cpu_speed) cpu_speed="$2" ;;
|
|
|
|
|
--cpu_temp) cpu_temp="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--speed_type) speed_type="$2" ;;
|
2016-08-28 10:11:01 -06:00
|
|
|
|
--distro_shorthand) distro_shorthand="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--kernel_shorthand) kernel_shorthand="$2" ;;
|
|
|
|
|
--uptime_shorthand) uptime_shorthand="$2" ;;
|
|
|
|
|
--cpu_shorthand) cpu_shorthand="$2" ;;
|
2016-10-02 01:26:50 -06:00
|
|
|
|
--gpu_brand) gpu_brand="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--refresh_rate) refresh_rate="$2" ;;
|
|
|
|
|
--gtk_shorthand) gtk_shorthand="$2" ;;
|
|
|
|
|
--gtk2) gtk2="$2" ;;
|
|
|
|
|
--gtk3) gtk3="$2" ;;
|
|
|
|
|
--shell_path) shell_path="$2" ;;
|
|
|
|
|
--shell_version) shell_version="$2" ;;
|
|
|
|
|
--ip_host) public_ip_host="$2" ;;
|
|
|
|
|
--song_shorthand) song_shorthand="$2" ;;
|
|
|
|
|
--birthday_shorthand) birthday_shorthand="$2" ;;
|
|
|
|
|
--birthday_time) birthday_time="$2" ;;
|
|
|
|
|
--birthday_format) birthday_format="$2" ;;
|
|
|
|
|
--disable)
|
|
|
|
|
for func in "$@"; do
|
|
|
|
|
case "$func" in
|
|
|
|
|
"--disable") continue ;;
|
2016-10-03 15:48:33 -06:00
|
|
|
|
"-"*) return ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
*) unset -f "get$func" ;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
;;
|
2016-01-27 04:33:22 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
# Text Colors
|
|
|
|
|
--colors)
|
|
|
|
|
unset colors
|
|
|
|
|
for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do
|
|
|
|
|
case "$arg" in
|
2016-10-03 15:48:33 -06:00
|
|
|
|
"-"*) break ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
*) colors+=($arg)
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
colors+=(7 7 7 7 7 7)
|
|
|
|
|
;;
|
2016-02-27 19:07:10 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
# Text Formatting
|
|
|
|
|
--underline) underline_enabled="$2" ;;
|
|
|
|
|
--underline_char) underline_char="$2" ;;
|
|
|
|
|
--bold) bold="$2" ;;
|
|
|
|
|
|
|
|
|
|
# Color Blocks
|
|
|
|
|
--color_blocks) color_blocks="$2" ;;
|
|
|
|
|
--block_range) start="$2"; end="$3" ;;
|
|
|
|
|
--block_width) block_width="$2" ;;
|
|
|
|
|
--block_height) block_height="$2" ;;
|
|
|
|
|
|
|
|
|
|
# Progress Bars
|
|
|
|
|
--progress_char)
|
|
|
|
|
progress_char_elapsed="$2"
|
|
|
|
|
progress_char_total="$3"
|
|
|
|
|
;;
|
|
|
|
|
--progress_border) progress_border="$2" ;;
|
|
|
|
|
--progress_length) progress_length="$2" ;;
|
|
|
|
|
--progress_colors)
|
|
|
|
|
progress_color_elapsed="$2"
|
|
|
|
|
progress_color_total="$3"
|
|
|
|
|
;;
|
|
|
|
|
--cpu_display) cpu_display="$2" ;;
|
|
|
|
|
--memory_display) memory_display="$2" ;;
|
|
|
|
|
--battery_display) battery_display="$2" ;;
|
|
|
|
|
--disk_display) disk_display="$2" ;;
|
|
|
|
|
|
|
|
|
|
# Image
|
|
|
|
|
--image)
|
|
|
|
|
image="$2"
|
2016-10-03 15:48:33 -06:00
|
|
|
|
case "$2" in "-"* | "") image="ascii" ;; esac
|
2016-08-13 21:13:21 -06:00
|
|
|
|
;;
|
2016-01-07 22:08:00 -07:00
|
|
|
|
|
2016-10-03 01:13:16 -06:00
|
|
|
|
--image_size | --size) image_size="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--crop_mode) crop_mode="$2" ;;
|
|
|
|
|
--crop_offset) crop_offset="$2" ;;
|
|
|
|
|
--xoffset) xoffset="$2" ;;
|
|
|
|
|
--yoffset) yoffset="$2" ;;
|
2016-10-21 08:14:02 -06:00
|
|
|
|
--background_color | --bg_color) background_color="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--gap) gap="$2" ;;
|
|
|
|
|
--clean)
|
|
|
|
|
rm -rf "$thumbnail_dir"
|
|
|
|
|
rm -rf "/Library/Caches/neofetch/"
|
2016-10-26 06:50:54 -06:00
|
|
|
|
rm -rf "/tmp/neofetch/"
|
2016-08-13 21:13:21 -06:00
|
|
|
|
exit
|
|
|
|
|
;;
|
2016-02-04 22:29:11 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
# Ascii
|
|
|
|
|
--ascii)
|
|
|
|
|
image="ascii"
|
|
|
|
|
ascii="$2"
|
2016-10-03 15:48:33 -06:00
|
|
|
|
case "$2" in "-"* | "") ascii="distro" ;; esac
|
2016-08-13 21:13:21 -06:00
|
|
|
|
;;
|
2016-03-25 21:13:02 -06:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--ascii_colors)
|
|
|
|
|
unset ascii_colors
|
|
|
|
|
for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do
|
|
|
|
|
case "$arg" in
|
2016-10-03 15:48:33 -06:00
|
|
|
|
"-"*) break ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
*) ascii_colors+=($arg)
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
ascii_colors+=(7 7 7 7 7 7)
|
|
|
|
|
;;
|
2016-08-11 18:41:52 -06:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--ascii_distro)
|
|
|
|
|
ascii_distro="$2"
|
2016-10-03 15:48:33 -06:00
|
|
|
|
case "$2" in "-"* | "") ascii_distro="$distro" ;; esac
|
2016-08-13 21:13:21 -06:00
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
--ascii_logo_size) ascii_logo_size="$2" ;;
|
|
|
|
|
--ascii_bold) ascii_bold="$2" ;;
|
2016-10-03 04:51:42 -06:00
|
|
|
|
--logo | -L)
|
|
|
|
|
image="ascii"
|
|
|
|
|
printinfo() { info linebreak; }
|
|
|
|
|
;;
|
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
|
|
|
|
|
# Screenshot
|
|
|
|
|
--scrot | -s)
|
2016-10-02 06:58:08 -06:00
|
|
|
|
scrot_args "$@"
|
2016-08-13 21:13:21 -06:00
|
|
|
|
;;
|
2016-10-02 03:23:02 -06:00
|
|
|
|
--upload | -su)
|
|
|
|
|
scrot_upload="on"
|
2016-10-02 06:58:08 -06:00
|
|
|
|
scrot_args "$@"
|
2016-10-02 03:23:02 -06:00
|
|
|
|
;;
|
2016-10-02 06:58:08 -06:00
|
|
|
|
|
2016-10-02 03:28:35 -06:00
|
|
|
|
--image_host) image_host="$2" ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
--scrot_cmd) scrot_cmd="$2" ;;
|
|
|
|
|
|
|
|
|
|
# Other
|
|
|
|
|
--config)
|
|
|
|
|
case "$2" in
|
|
|
|
|
"none" | "off") config="off" ;;
|
|
|
|
|
*) config_file="$2"; config="on"; getuserconfig 2>/dev/null ;;
|
|
|
|
|
esac
|
|
|
|
|
;;
|
|
|
|
|
-v) verbose="on" ;;
|
|
|
|
|
-vv) set -x; verbose="on" ;;
|
|
|
|
|
--help) usage ;;
|
2016-11-04 01:45:02 -06:00
|
|
|
|
--version) printf "%s\n" "Neofetch 1.9.1"; exit ;;
|
2016-08-13 21:13:21 -06:00
|
|
|
|
esac
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
shift
|
|
|
|
|
done
|
|
|
|
|
}
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
2016-01-03 15:21:13 -07:00
|
|
|
|
# Call Functions and Finish Up {{{
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-08-12 04:53:04 -06:00
|
|
|
|
main() {
|
2016-08-18 18:05:45 -06:00
|
|
|
|
getos
|
2016-08-13 21:13:21 -06:00
|
|
|
|
getdefaultconfig 2>/dev/null
|
2016-10-14 20:08:12 -06:00
|
|
|
|
checkoldflags
|
2016-08-13 21:13:21 -06:00
|
|
|
|
getargs "$@"
|
2016-08-18 18:09:35 -06:00
|
|
|
|
getdistro
|
|
|
|
|
|
|
|
|
|
# Get colors and bold
|
|
|
|
|
bold
|
|
|
|
|
colors
|
2016-08-13 05:28:23 -06:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
# Restore cursor and clear screen on ctrl+c
|
|
|
|
|
trap 'printf "\033[?25h"; clear; exit' 2
|
2016-01-20 16:56:55 -07:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
# If the script exits for any reason, unhide the cursor.
|
|
|
|
|
trap 'printf "\033[?25h"' EXIT
|
2016-04-12 23:31:53 -06:00
|
|
|
|
|
2016-08-13 02:39:06 -06:00
|
|
|
|
# Hide the cursor and disable line wrap
|
|
|
|
|
printf "\033[?25l\033[?7l"
|
2016-01-29 23:44:52 -07:00
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Display the image
|
2016-08-12 04:36:48 -06:00
|
|
|
|
if [ "$image" != "off" ]; then
|
2016-08-13 03:42:31 -06:00
|
|
|
|
getimagebackend
|
2016-08-12 04:36:48 -06:00
|
|
|
|
|
|
|
|
|
# Find w3mimgdisplay
|
|
|
|
|
[ "$image_backend" == "w3m" ] && \
|
|
|
|
|
[ "$image" != "ascii" ] && \
|
|
|
|
|
getw3m_img_path
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Get the image src
|
2016-08-12 04:36:48 -06:00
|
|
|
|
getimage
|
|
|
|
|
|
2016-08-13 03:42:31 -06:00
|
|
|
|
# Display the image if enabled
|
|
|
|
|
displayimage
|
2015-12-30 03:18:17 -07:00
|
|
|
|
|
2016-10-21 04:45:32 -06:00
|
|
|
|
# Set cursor position next to ascii art
|
|
|
|
|
printf "\033[$((${lines:-4} - ${prompt_loc:-4}))A"
|
2016-09-30 19:42:18 -06:00
|
|
|
|
|
2016-10-21 04:45:32 -06:00
|
|
|
|
# Reset horizontal cursor position
|
|
|
|
|
printf "\033[9999999D"
|
|
|
|
|
fi
|
2016-09-30 19:42:18 -06:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
# Print the info
|
2016-11-04 22:06:45 -06:00
|
|
|
|
printinfo 2>/dev/null
|
2016-01-28 17:35:04 -07:00
|
|
|
|
|
2016-10-23 15:53:54 -06:00
|
|
|
|
# Prompt calculation
|
|
|
|
|
if [ "$image" != "off" ]; then
|
|
|
|
|
dynamicprompt
|
|
|
|
|
|
|
|
|
|
# w3m-img: Draw the image a second time to fix
|
|
|
|
|
# rendering issues in specific terminal emulators.
|
|
|
|
|
[ "$image_backend" == "w3m" ] && displayimage
|
|
|
|
|
fi
|
2016-10-21 07:06:51 -06:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
# Re-enable line wrap
|
|
|
|
|
printf "%b%s" "\033[?7h"
|
2016-01-16 23:17:13 -07:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
[ "$scrot" == "on" ] && takescrot
|
2016-08-03 17:20:42 -06:00
|
|
|
|
|
2016-08-12 04:36:48 -06:00
|
|
|
|
# Show error messages
|
2016-08-13 21:13:21 -06:00
|
|
|
|
[ "$verbose" == "on" ] && printf "%b%s" "$err"
|
2016-01-28 16:11:34 -07:00
|
|
|
|
|
2016-08-13 03:28:21 -06:00
|
|
|
|
# Reset exit status of the tests above
|
2016-08-12 04:36:48 -06:00
|
|
|
|
printf "%s"
|
|
|
|
|
}
|
2016-01-07 22:08:00 -07:00
|
|
|
|
|
2016-08-13 21:13:21 -06:00
|
|
|
|
main "$@"
|
2016-04-23 22:14:35 -06:00
|
|
|
|
|
2016-01-02 23:54:16 -07:00
|
|
|
|
# }}}
|