diff --git a/pkgbuild/PKGBUILD b/pkgbuild/PKGBUILD index 8b1672f1..5d7e9570 100644 --- a/pkgbuild/PKGBUILD +++ b/pkgbuild/PKGBUILD @@ -5,7 +5,7 @@ pkgver=$(date +%y.%m.%d) pkgrel=$(date +%H%M) arch=('any') license=('GPL') -depends=('plasma-workspace' 'plasma-systray-latte-tweaks-git' 'klassy' 'plasma5-applets-latte-spacer' 'latte-dock>=0.10.9-2' 'plasma5-applets-eventcalendar' 'biglinux-metapackage' 'kwin-scripts-forceblur') +depends=('plasma-workspace' 'plasma-systray-latte-tweaks-git' 'klassy' 'plasma5-applets-latte-spacer' 'latte-dock>=0.10.9-2' 'plasma5-applets-eventcalendar' 'biglinux-metapackage' 'kwin-scripts-forceblur' 'biglinux-neofetch') conflicts=('biglinux-themes' 'biglinux-multi-kde') url="https://github.com/biglinux/biglinux-session-and-themes" pkgdesc="Essential package to BigLinux KDE session" diff --git a/usr/local/bin/neofetch b/usr/local/bin/neofetch deleted file mode 100755 index 1df30217..00000000 --- a/usr/local/bin/neofetch +++ /dev/null @@ -1,4780 +0,0 @@ -#!/usr/bin/env bash -# vim: noai:ts=4:sw=4:expandtab -# shellcheck source=/dev/null -# shellcheck disable=2009 -# -# Neofetch: A command-line system information tool written in bash 3.2+. -# https://github.com/dylanaraps/neofetch -# -# The MIT License (MIT) -# -# Copyright (c) 2015-2021 Dylan Araps -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in all -# copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. - -version=7.1.0 - -# Fallback to a value of '5' for shells which support bash -# but do not set the 'BASH_' shell variables (osh). -bash_version=${BASH_VERSINFO[0]:-5} -shopt -s eval_unsafe_arith &>/dev/null - -sys_locale=${LANG:-C} -XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-${HOME}/.config} -PATH=$PATH:/usr/xpg4/bin:/usr/sbin:/sbin:/usr/etc:/usr/libexec -reset='\e[0m' -shopt -s nocasematch - -# Speed up script by not using unicode. -LC_ALL=C -LANG=C - -# Fix issues with gsettings. -export GIO_EXTRA_MODULES=/usr/lib/x86_64-linux-gnu/gio/modules/ - -# Neofetch default config. -read -rd '' config <<'EOF' -# See this wiki page for more info: -# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info -print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "Memory" memory - - # info "GPU Driver" gpu_driver # Linux/macOS only - # info "Disk" disk - # info "Battery" battery - # info "Font" font - # info "Song" song - # [[ "$player" ]] && prin "Music Player" "$player" - # info "Local IP" local_ip - # info "Public IP" public_ip - # info "Users" users - # info "Locale" locale # This only works on glibc systems. - - info cols -} - -# Title - - -# Hide/Show Fully qualified domain name. -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --title_fqdn -title_fqdn="off" - - -# Kernel - - -# Shorten the output of the kernel function. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --kernel_shorthand -# Supports: Everything except *BSDs (except PacBSD and PC-BSD) -# -# Example: -# on: '4.8.9-1-ARCH' -# off: 'Linux 4.8.9-1-ARCH' -kernel_shorthand="on" - - -# Distro - - -# Shorten the output of the distro function -# -# Default: 'off' -# Values: 'on', 'tiny', 'off' -# Flag: --distro_shorthand -# Supports: Everything except Windows and Haiku -distro_shorthand="off" - -# Show/Hide OS Architecture. -# Show 'x86_64', 'x86' and etc in 'Distro:' output. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --os_arch -# -# Example: -# on: 'Arch Linux x86_64' -# off: 'Arch Linux' -os_arch="on" - - -# Uptime - - -# Shorten the output of the uptime function -# -# Default: 'on' -# Values: 'on', 'tiny', 'off' -# Flag: --uptime_shorthand -# -# Example: -# on: '2 days, 10 hours, 3 mins' -# tiny: '2d 10h 3m' -# off: '2 days, 10 hours, 3 minutes' -uptime_shorthand="on" - - -# Memory - - -# Show memory percentage in output. -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --memory_percent -# -# Example: -# on: '1801MiB / 7881MiB (22%)' -# off: '1801MiB / 7881MiB' -memory_percent="off" - -# Change memory output unit. -# -# Default: 'mib' -# Values: 'kib', 'mib', 'gib' -# Flag: --memory_unit -# -# Example: -# kib '1020928KiB / 7117824KiB' -# mib '1042MiB / 6951MiB' -# gib: ' 0.98GiB / 6.79GiB' -memory_unit="mib" - - -# Packages - - -# Show/Hide Package Manager names. -# -# Default: 'tiny' -# Values: 'on', 'tiny' 'off' -# Flag: --package_managers -# -# Example: -# on: '998 (pacman), 8 (flatpak), 4 (snap)' -# tiny: '908 (pacman, flatpak, snap)' -# off: '908' -package_managers="on" - - -# Shell - - -# Show the path to $SHELL -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --shell_path -# -# Example: -# on: '/bin/bash' -# off: 'bash' -shell_path="off" - -# Show $SHELL version -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --shell_version -# -# Example: -# on: 'bash 4.4.5' -# off: 'bash' -shell_version="on" - - -# CPU - - -# CPU speed type -# -# Default: 'bios_limit' -# Values: 'scaling_cur_freq', 'scaling_min_freq', 'scaling_max_freq', 'bios_limit'. -# Flag: --speed_type -# Supports: Linux with 'cpufreq' -# NOTE: Any file in '/sys/devices/system/cpu/cpu0/cpufreq' can be used as a value. -speed_type="bios_limit" - -# CPU speed shorthand -# -# Default: 'off' -# Values: 'on', 'off'. -# Flag: --speed_shorthand -# NOTE: This flag is not supported in systems with CPU speed less than 1 GHz -# -# Example: -# on: 'i7-6500U (4) @ 3.1GHz' -# off: 'i7-6500U (4) @ 3.100GHz' -speed_shorthand="off" - -# Enable/Disable CPU brand in output. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --cpu_brand -# -# Example: -# on: 'Intel i7-6500U' -# off: 'i7-6500U (4)' -cpu_brand="on" - -# CPU Speed -# Hide/Show CPU speed. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --cpu_speed -# -# Example: -# on: 'Intel i7-6500U (4) @ 3.1GHz' -# off: 'Intel i7-6500U (4)' -cpu_speed="on" - -# CPU Cores -# Display CPU cores in output -# -# Default: 'logical' -# Values: 'logical', 'physical', 'off' -# Flag: --cpu_cores -# Support: 'physical' doesn't work on BSD. -# -# Example: -# logical: 'Intel i7-6500U (4) @ 3.1GHz' (All virtual cores) -# physical: 'Intel i7-6500U (2) @ 3.1GHz' (All physical cores) -# off: 'Intel i7-6500U @ 3.1GHz' -cpu_cores="logical" - -# CPU Temperature -# Hide/Show CPU temperature. -# Note the temperature is added to the regular CPU function. -# -# Default: 'off' -# Values: 'C', 'F', 'off' -# Flag: --cpu_temp -# Supports: Linux, BSD -# NOTE: For FreeBSD and NetBSD-based systems, you'll need to enable -# coretemp kernel module. This only supports newer Intel processors. -# -# Example: -# C: 'Intel i7-6500U (4) @ 3.1GHz [27.2°C]' -# F: 'Intel i7-6500U (4) @ 3.1GHz [82.0°F]' -# off: 'Intel i7-6500U (4) @ 3.1GHz' -cpu_temp="off" - - -# GPU - - -# Enable/Disable GPU Brand -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gpu_brand -# -# Example: -# on: 'AMD HD 7950' -# off: 'HD 7950' -gpu_brand="on" - -# Which GPU to display -# -# Default: 'all' -# Values: 'all', 'dedicated', 'integrated' -# Flag: --gpu_type -# Supports: Linux -# -# Example: -# all: -# GPU1: AMD HD 7950 -# GPU2: Intel Integrated Graphics -# -# dedicated: -# GPU1: AMD HD 7950 -# -# integrated: -# GPU1: Intel Integrated Graphics -gpu_type="all" - - -# Resolution - - -# Display refresh rate next to each monitor -# Default: 'off' -# Values: 'on', 'off' -# Flag: --refresh_rate -# Supports: Doesn't work on Windows. -# -# Example: -# on: '1920x1080 @ 60Hz' -# off: '1920x1080' -refresh_rate="off" - - -# Gtk Theme / Icons / Font - - -# Shorten output of GTK Theme / Icons / Font -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --gtk_shorthand -# -# Example: -# on: 'Numix, Adwaita' -# off: 'Numix [GTK2], Adwaita [GTK3]' -gtk_shorthand="off" - - -# Enable/Disable gtk2 Theme / Icons / Font -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gtk2 -# -# Example: -# on: 'Numix [GTK2], Adwaita [GTK3]' -# off: 'Adwaita [GTK3]' -gtk2="on" - -# Enable/Disable gtk3 Theme / Icons / Font -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --gtk3 -# -# Example: -# on: 'Numix [GTK2], Adwaita [GTK3]' -# off: 'Numix [GTK2]' -gtk3="on" - - -# IP Address - - -# Website to ping for the public IP -# -# Default: 'http://ident.me' -# Values: 'url' -# Flag: --ip_host -public_ip_host="http://ident.me" - -# Public IP timeout. -# -# Default: '2' -# Values: 'int' -# Flag: --ip_timeout -public_ip_timeout=2 - -# Local IP interface -# -# Default: 'auto' (interface of default route) -# Values: 'auto', 'en0', 'en1' -# Flag: --ip_interface -local_ip_interface=('auto') - - -# Desktop Environment - - -# Show Desktop Environment version -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --de_version -de_version="on" - - -# Disk - - -# Which disks to display. -# The values can be any /dev/sdXX, mount point or directory. -# NOTE: By default we only show the disk info for '/'. -# -# Default: '/' -# Values: '/', '/dev/sdXX', '/path/to/drive'. -# Flag: --disk_show -# -# Example: -# disk_show=('/' '/dev/sdb1'): -# 'Disk (/): 74G / 118G (66%)' -# 'Disk (/mnt/Videos): 823G / 893G (93%)' -# -# disk_show=('/'): -# 'Disk (/): 74G / 118G (66%)' -# -disk_show=('/') - -# Disk subtitle. -# What to append to the Disk subtitle. -# -# Default: 'mount' -# Values: 'mount', 'name', 'dir', 'none' -# Flag: --disk_subtitle -# -# Example: -# name: 'Disk (/dev/sda1): 74G / 118G (66%)' -# 'Disk (/dev/sdb2): 74G / 118G (66%)' -# -# mount: 'Disk (/): 74G / 118G (66%)' -# 'Disk (/mnt/Local Disk): 74G / 118G (66%)' -# 'Disk (/mnt/Videos): 74G / 118G (66%)' -# -# dir: 'Disk (/): 74G / 118G (66%)' -# 'Disk (Local Disk): 74G / 118G (66%)' -# 'Disk (Videos): 74G / 118G (66%)' -# -# none: 'Disk: 74G / 118G (66%)' -# 'Disk: 74G / 118G (66%)' -# 'Disk: 74G / 118G (66%)' -disk_subtitle="mount" - -# Disk percent. -# Show/Hide disk percent. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --disk_percent -# -# Example: -# on: 'Disk (/): 74G / 118G (66%)' -# off: 'Disk (/): 74G / 118G' -disk_percent="on" - - -# Song - - -# Manually specify a music player. -# -# Default: 'auto' -# Values: 'auto', 'player-name' -# Flag: --music_player -# -# Available values for 'player-name': -# -# amarok -# audacious -# banshee -# bluemindo -# clementine -# cmus -# deadbeef -# deepin-music -# dragon -# elisa -# exaile -# gnome-music -# gmusicbrowser -# gogglesmm -# guayadeque -# io.elementary.music -# iTunes -# Music -# juk -# lollypop -# MellowPlayer -# mocp -# mopidy -# mpd -# muine -# netease-cloud-music -# olivia -# playerctl -# pogo -# pragha -# qmmp -# quodlibet -# rhythmbox -# sayonara -# smplayer -# spotify -# strawberry -# tauonmb -# tomahawk -# vlc -# xmms2d -# xnoise -# yarock -music_player="auto" - -# Format to display song information. -# -# Default: '%artist% - %album% - %title%' -# Values: '%artist%', '%album%', '%title%' -# Flag: --song_format -# -# Example: -# default: 'Song: Jet - Get Born - Sgt Major' -song_format="%artist% - %album% - %title%" - -# Print the Artist, Album and Title on separate lines -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --song_shorthand -# -# Example: -# on: 'Artist: The Fratellis' -# 'Album: Costello Music' -# 'Song: Chelsea Dagger' -# -# off: 'Song: The Fratellis - Costello Music - Chelsea Dagger' -song_shorthand="off" - -# 'mpc' arguments (specify a host, password etc). -# -# Default: '' -# Example: mpc_args=(-h HOST -P PASSWORD) -mpc_args=() - - -# Text Colors - - -# Text Colors -# -# Default: 'distro' -# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' -# Flag: --colors -# -# Each number represents a different part of the text in -# this order: 'title', '@', 'underline', 'subtitle', 'colon', 'info' -# -# Example: -# colors=(distro) - Text is colored based on Distro colors. -# colors=(4 6 1 8 8 6) - Text is colored in the order above. -colors=(distro) - - -# Text Options - - -# Toggle bold text -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --bold -bold="on" - -# Enable/Disable Underline -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --underline -underline_enabled="on" - -# Underline character -# -# Default: '-' -# Values: 'string' -# Flag: --underline_char -underline_char="-" - - -# Info Separator -# Replace the default separator with the specified string. -# -# Default: ':' -# Flag: --separator -# -# Example: -# separator="->": 'Shell-> bash' -# separator=" =": 'WM = dwm' -separator=":" - - -# Color Blocks - - -# Color block range -# The range of colors to print. -# -# Default: '0', '15' -# Values: 'num' -# Flag: --block_range -# -# Example: -# -# Display colors 0-7 in the blocks. (8 colors) -# neofetch --block_range 0 7 -# -# Display colors 0-15 in the blocks. (16 colors) -# neofetch --block_range 0 15 -block_range=(0 15) - -# Toggle color blocks -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --color_blocks -color_blocks="on" - -# Color block width in spaces -# -# Default: '3' -# Values: 'num' -# Flag: --block_width -block_width=3 - -# Color block height in lines -# -# Default: '1' -# Values: 'num' -# Flag: --block_height -block_height=1 - -# Color Alignment -# -# Default: 'auto' -# Values: 'auto', 'num' -# Flag: --col_offset -# -# Number specifies how far from the left side of the terminal (in spaces) to -# begin printing the columns, in case you want to e.g. center them under your -# text. -# Example: -# col_offset="auto" - Default behavior of neofetch -# col_offset=7 - Leave 7 spaces then print the colors -col_offset="auto" - -# Progress Bars - - -# Bar characters -# -# Default: '-', '=' -# Values: 'string', 'string' -# Flag: --bar_char -# -# Example: -# neofetch --bar_char 'elapsed' 'total' -# neofetch --bar_char '-' '=' -bar_char_elapsed="-" -bar_char_total="=" - -# Toggle Bar border -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --bar_border -bar_border="on" - -# Progress bar length in spaces -# Number of chars long to make the progress bars. -# -# Default: '15' -# Values: 'num' -# Flag: --bar_length -bar_length=15 - -# Progress bar colors -# When set to distro, uses your distro's logo colors. -# -# Default: 'distro', 'distro' -# Values: 'distro', 'num' -# Flag: --bar_colors -# -# Example: -# neofetch --bar_colors 3 4 -# neofetch --bar_colors distro 5 -bar_color_elapsed="distro" -bar_color_total="distro" - - -# Info display -# Display a bar with the info. -# -# Default: 'off' -# Values: 'bar', 'infobar', 'barinfo', 'off' -# Flags: --memory_display -# --battery_display -# --disk_display -# -# Example: -# bar: '[---=======]' -# infobar: 'info [---=======]' -# barinfo: '[---=======] info' -# off: 'info' -memory_display="off" -battery_display="off" -disk_display="off" - - -# Backend Settings - - -# Image backend. -# -# Default: 'ascii' -# Values: 'ascii', 'caca', 'catimg', 'chafa', 'jp2a', 'iterm2', 'off', -# 'pot', 'termpix', 'pixterm', 'tycat', 'w3m', 'kitty', 'ueberzug', -# 'viu' - -# Flag: --backend -image_backend="ascii" - -# Image Source -# -# Which image or ascii file to display. -# -# Default: 'auto' -# Values: 'auto', 'ascii', 'wallpaper', '/path/to/img', '/path/to/ascii', '/path/to/dir/' -# 'command output (neofetch --ascii "$(fortune | cowsay -W 30)")' -# Flag: --source -# -# NOTE: 'auto' will pick the best image source for whatever image backend is used. -# In ascii mode, distro ascii art will be used and in an image mode, your -# wallpaper will be used. -image_source="auto" - - -# Ascii Options - - -# Ascii distro -# Which distro's ascii art to display. -# -# Default: 'auto' -# Values: 'auto', 'distro_name' -# Flag: --ascii_distro -# NOTE: AIX, Hash, Alpine, AlterLinux, Amazon, Anarchy, Android, instantOS, -# Antergos, antiX, "AOSC OS", "AOSC OS/Retro", Apricity, ArchCraft, -# ArcoLinux, ArchBox, ARCHlabs, ArchStrike, XFerience, ArchMerge, Arch, -# Artix, Arya, Bedrock, BigLinux, Bitrig, BlackArch, BLAG, BlankOn, BlueLight, -# Bodhi, bonsai, BSD, BunsenLabs, Calculate, Carbs, CentOS, Chakra, ChaletOS, -# Chapeau, Chrom*, Cleanjaro, ClearOS, Clear_Linux, Clover, Condres, -# Container_Linux, Crystal Linux, CRUX, Cucumber, dahlia, Debian, Deepin, -# DesaOS, Devuan, DracOS, DarkOs, Itc, DragonFly, Drauger, Elementary, -# EndeavourOS, Endless, EuroLinux, Exherbo, Fedora, Feren, FreeBSD, -# FreeMiNT, Frugalware, Funtoo, GalliumOS, Garuda, Gentoo, Pentoo, -# gNewSense, GNOME, GNU, GoboLinux, Grombyang, Guix, Haiku, Huayra, HydroOS -# Hyperbola, iglunix, janus, Kali, KaOS, KDE_neon, Kibojoe, Kogaion, Korora, -# KSLinux, Kubuntu, LEDE, LaxerOS, LibreELEC, LFS, Linux_Lite, LMDE, -# Lubuntu, Lunar, macos, Mageia, MagpieOS, Mandriva, Manjaro, TeArch, Maui, -# Mer, Minix, LinuxMint, Live_Raizo, MX_Linux, Namib, Neptune, NetBSD, -# Netrunner, Nitrux, NixOS, Nurunner, NuTyX, OBRevenge, OpenBSD, -# openEuler, OpenIndiana, openmamba, OpenMandriva, OpenStage, OpenWrt, -# osmc, Oracle, OS Elbrus, PacBSD, Parabola, Pardus, Parrot, Parsix, -# TrueOS, PCLinuxOS, Pengwin, Peppermint, Pisi, popos, Porteus, PostMarketOS, -# Proxmox, PuffOS, Puppy, PureOS, Qubes, Qubyt, Quibian, Radix, Raspbian, -# Reborn_OS, Redstar, Redcore, Redhat, Refracted_Devuan, Regata, Regolith, -# Rocky, Rosa, sabotage, Sabayon, Sailfish, SalentOS, Scientific, Septor, -# SereneLinux, SharkLinux, Siduction, SkiffOS, Slackware, SliTaz, SmartOS, -# Solus, Source_Mage, Sparky, Star, SteamOS, SunOS, openSUSE_Leap, t2, -# openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, Trisquel, -# Ubuntu-Cinnamon, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE, -# Ubuntu-Studio, Ubuntu, Univention, Venom, Void, VNux, LangitKetujuh, semc, -# Obarun, windows10, Windows7, Xubuntu, Zorin, and IRIX have ascii logos. -# NOTE: Arch, Ubuntu, Redhat, Fedora and Dragonfly have 'old' logo variants. -# Use '{distro name}_old' to use the old logos. -# NOTE: Ubuntu has flavor variants. -# Change this to Lubuntu, Kubuntu, Xubuntu, Ubuntu-GNOME, -# Ubuntu-Studio, Ubuntu-Mate or Ubuntu-Budgie to use the flavors. -# NOTE: Arcolinux, Dragonfly, Fedora, Alpine, Arch, Ubuntu, -# CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, android, -# Artix, CentOS, Cleanjaro, ElementaryOS, GUIX, Hyperbola, -# Manjaro, MXLinux, NetBSD, Parabola, POP_OS, PureOS, -# Slackware, SunOS, LinuxLite, OpenSUSE, Raspbian, -# postmarketOS, and Void have a smaller logo variant. -# Use '{distro name}_small' to use the small variants. -ascii_distro="auto" - -# Ascii Colors -# -# Default: 'distro' -# Values: 'distro', 'num' 'num' 'num' 'num' 'num' 'num' -# Flag: --ascii_colors -# -# Example: -# ascii_colors=(distro) - Ascii is colored based on Distro colors. -# ascii_colors=(4 6 1 8 8 6) - Ascii is colored using these colors. -ascii_colors=(distro) - -# Bold ascii logo -# Whether or not to bold the ascii logo. -# -# Default: 'on' -# Values: 'on', 'off' -# Flag: --ascii_bold -ascii_bold="on" - - -# Image Options - - -# Image loop -# Setting this to on will make neofetch redraw the image constantly until -# Ctrl+C is pressed. This fixes display issues in some terminal emulators. -# -# Default: 'off' -# Values: 'on', 'off' -# Flag: --loop -image_loop="off" - -# Thumbnail directory -# -# Default: '~/.cache/thumbnails/neofetch' -# Values: 'dir' -thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch" - -# Crop mode -# -# Default: 'normal' -# Values: 'normal', 'fit', 'fill' -# Flag: --crop_mode -# -# See this wiki page to learn about the fit and fill options. -# https://github.com/dylanaraps/neofetch/wiki/What-is-Waifu-Crop%3F -crop_mode="normal" - -# Crop offset -# Note: Only affects 'normal' crop mode. -# -# Default: 'center' -# Values: 'northwest', 'north', 'northeast', 'west', 'center' -# 'east', 'southwest', 'south', 'southeast' -# Flag: --crop_offset -crop_offset="center" - -# Image size -# The image is half the terminal width by default. -# -# Default: 'auto' -# Values: 'auto', '00px', '00%', 'none' -# Flags: --image_size -# --size -image_size="auto" - -# Catimg block size. -# Control the resolution of catimg. -# -# Default: '2' -# Values: '1', '2' -# Flags: --catimg_size -catimg_size="2" - -# Gap between image and text -# -# Default: '3' -# Values: 'num', '-num' -# Flag: --gap -gap=3 - -# Image offsets -# Only works with the w3m backend. -# -# Default: '0' -# Values: 'px' -# Flags: --xoffset -# --yoffset -yoffset=0 -xoffset=0 - -# Image background color -# Only works with the w3m backend. -# -# Default: '' -# Values: 'color', 'blue' -# Flag: --bg_color -background_color= - - -# Misc Options - -# Stdout mode -# Turn off all colors and disables image backend (ASCII/Image). -# Useful for piping into another command. -# Default: 'off' -# Values: 'on', 'off' -stdout="off" -EOF - -# DETECT INFORMATION - -get_os() { - # $kernel_name is set in a function called cache_uname and is - # just the output of "uname -s". - case $kernel_name in - Linux|GNU*) - os=Linux - ;; - - esac -} - -get_distro() { - [[ $distro ]] && return - - case $os in - Linux|BSD|MINIX) - - - if type -p lsb_release >/dev/null; then - case $distro_shorthand in - on) lsb_flags=-si ;; - tiny) lsb_flags=-si ;; - *) lsb_flags=-sd ;; - esac - distro=$(lsb_release "$lsb_flags") - - elif [[ -f /etc/os-release || \ - -f /usr/lib/os-release || \ - -f /etc/openwrt_release || \ - -f /etc/lsb-release ]]; then - - # Source the os-release file - for file in /etc/lsb-release /usr/lib/os-release \ - /etc/os-release /etc/openwrt_release; do - source "$file" && break - done - - # Format the distro name. - case $distro_shorthand in - 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}" ;; - esac - - else - for release_file in /etc/*-release; do - distro+=$(< "$release_file") - done - - fi - - distro=$(trim_quotes "$distro") - distro=${distro/NAME=} - - # Get Ubuntu flavor. - ;; - - esac - - distro=${distro//Enterprise Server} - - [[ $distro ]] || distro="$os (Unknown)" - - [[ $os_arch == on ]] && \ - distro+=" $machine_arch" - - [[ ${ascii_distro:-auto} == auto ]] && \ - ascii_distro=$(trim "$distro") -} - -get_model() { - case $os in - Linux) - 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/board_vendor || - -f /sys/devices/virtual/dmi/id/board_name ]]; then - model=$(< /sys/devices/virtual/dmi/id/board_vendor) - model+=" $(< /sys/devices/virtual/dmi/id/board_name)" - - elif [[ -f /sys/devices/virtual/dmi/id/product_name || - -f /sys/devices/virtual/dmi/id/product_version ]]; then - model=$(< /sys/devices/virtual/dmi/id/product_name) - model+=" $(< /sys/devices/virtual/dmi/id/product_version)" - - 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 - ;; - - esac - - # Remove dummy OEM info. - model=${model//To be filled by O.E.M.} - model=${model//To Be Filled*} - model=${model//OEM*} - model=${model//Not Applicable} - model=${model//System Product Name} - model=${model//System Version} - model=${model//Undefined} - model=${model//Default string} - model=${model//Not Specified} - model=${model//Type1ProductConfigId} - model=${model//INVALID} - model=${model//All Series} - model=${model//�} - - case $model in - "Standard PC"*) model="KVM/QEMU (${model})" ;; - OpenBSD*) model="vmm ($model)" ;; - esac -} - -get_title() { - user=${USER:-$(id -un || printf %s "${HOME/*\/}")} - - case $title_fqdn in - on) hostname=$(hostname -f) ;; - *) hostname=${HOSTNAME:-$(hostname)} ;; - esac - - title=${title_color}${bold}${user}${at_color}@${title_color}${bold}${hostname} - length=$((${#user} + ${#hostname} + 1)) -} - -get_kernel() { - # Since these OS are integrated systems, it's better to skip this function altogether - - case $kernel_shorthand in - on) kernel=$kernel_version ;; - off) kernel="$kernel_name $kernel_version" ;; - esac - - # Hide kernel info if it's identical to the distro info. - [[ $os =~ (BSD|MINIX) && $distro == *"$kernel_name"* ]] && - case $distro_shorthand in - on|tiny) kernel=$kernel_version ;; - *) unset kernel ;; - esac -} - -get_uptime() { - # Get uptime in seconds. - case $os in - Linux|Windows|MINIX) - if [[ -r /proc/uptime ]]; then - s=$(< /proc/uptime) - s=${s/.*} - else - boot=$(date -d"$(uptime -s)" +%s) - now=$(date +%s) - s=$((now - boot)) - fi - ;; - - esac - - d="$((s / 60 / 60 / 24)) days" - h="$((s / 60 / 60 % 24)) hours" - m="$((s / 60 % 60)) minutes" - - # Remove plural if < 2. - ((${d/ *} == 1)) && d=${d/s} - ((${h/ *} == 1)) && h=${h/s} - ((${m/ *} == 1)) && m=${m/s} - - # Hide empty fields. - ((${d/ *} == 0)) && unset d - ((${h/ *} == 0)) && unset h - ((${m/ *} == 0)) && unset m - - uptime=${d:+$d, }${h:+$h, }$m - uptime=${uptime%', '} - uptime=${uptime:-$s seconds} - - # Make the output of uptime smaller. - case $uptime_shorthand in - on) - uptime=${uptime/ minutes/ mins} - uptime=${uptime/ minute/ min} - uptime=${uptime/ seconds/ secs} - ;; - - tiny) - 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} - uptime=${uptime//,} - ;; - esac -} - -get_packages() { - # to adjust the number of pkgs per pkg manager - pkgs_h=0 - - # has: Check if package manager installed. - # dir: Count files or dirs in a glob. - # pac: If packages > 0, log package manager name. - # tot: Count lines in command output. - has() { type -p "$1" >/dev/null && manager=$1; } - # globbing is intentional here - # shellcheck disable=SC2206 - dir() { pkgs=($@); ((packages+=${#pkgs[@]})); pac "$((${#pkgs[@]}-pkgs_h))"; } - pac() { (($1 > 0)) && { managers+=("$1 (${manager})"); manager_string+="${manager}, "; }; } - tot() { - IFS=$'\n' read -d "" -ra pkgs <<< "$("$@")"; - ((packages+=${#pkgs[@]})); - pac "$((${#pkgs[@]}-pkgs_h))"; - } - - # Redefine tot() and dir() for Bedrock Linux. - [[ -f /bedrock/etc/bedrock-release && $PATH == */bedrock/cross/* ]] && { - br_strata=$(brl list) - tot() { - IFS=$'\n' read -d "" -ra pkgs <<< "$(for s in ${br_strata}; do strat -r "$s" "$@"; done)" - ((packages+="${#pkgs[@]}")) - pac "$((${#pkgs[@]}-pkgs_h))"; - } - dir() { - local pkgs=() - # globbing is intentional here - # shellcheck disable=SC2206 - for s in ${br_strata}; do pkgs+=(/bedrock/strata/$s/$@); done - ((packages+=${#pkgs[@]})) - pac "$((${#pkgs[@]}-pkgs_h))" - } - } - - case $os in - Linux|BSD|"iPhone OS"|Solaris) - # Package Manager Programs. - has kiss && tot kiss l - has cpt-list && tot cpt-list - has pacman-key && tot pacman -Qq --color never - has dpkg && tot dpkg-query -f '.\n' -W - has xbps-query && tot xbps-query -l - has apk && tot apk info - has opkg && tot opkg list-installed - has pacman-g2 && tot pacman-g2 -Q - has lvu && tot lvu installed - has tce-status && tot tce-status -i - has pkg_info && tot pkg_info - has pkgin && tot pkgin list - has tazpkg && pkgs_h=6 tot tazpkg list && ((packages-=6)) - has sorcery && tot gaze installed - has alps && tot alps showinstalled - has butch && tot butch list - has swupd && tot swupd bundle-list --quiet - has pisi && tot pisi li - has pacstall && tot pacstall -L - - # Using the dnf package cache is much faster than rpm. - if has dnf && type -p sqlite3 >/dev/null && [[ -f /var/cache/dnf/packages.db ]]; then - pac "$(sqlite3 /var/cache/dnf/packages.db "SELECT count(pkg) FROM installed")" - else - has rpm && tot rpm -qa - fi - - # 'mine' conflicts with minesweeper games. - [[ -f /etc/SDE-VERSION ]] && - has mine && tot mine -q - - # Counting files/dirs. - # Variables need to be unquoted here. Only Bedrock Linux is affected. - # $br_prefix is fixed and won't change based on user input so this is safe either way. - # shellcheck disable=SC2086 - { - shopt -s nullglob - has brew && dir "$(brew --cellar)/* $(brew --caskroom)/*" - has emerge && dir "/var/db/pkg/*/*" - has Compile && dir "/Programs/*/" - has eopkg && dir "/var/lib/eopkg/package/*" - has crew && dir "${CREW_PREFIX:-/usr/local}/etc/crew/meta/*.filelist" - has pkgtool && dir "/var/log/packages/*" - has scratch && dir "/var/lib/scratchpkg/index/*/.pkginfo" - has kagami && dir "/var/lib/kagami/pkgs/*" - has cave && dir "/var/db/paludis/repositories/cross-installed/*/data/*/ \ - /var/db/paludis/repositories/installed/data/*/" - shopt -u nullglob - } - - # Other (Needs complex command) - has kpm-pkg && ((packages+=$(kpm --get-selections | grep -cv deinstall$))) - - has guix && { - manager=guix-system && tot guix package -p "/run/current-system/profile" -I - manager=guix-user && tot guix package -I - } - - has nix-store && { - nix-user-pkgs() { - nix-store -qR ~/.nix-profile - nix-store -qR /etc/profiles/per-user/"$USER" - } - manager=nix-system && tot nix-store -qR /run/current-system/sw - manager=nix-user && tot nix-user-pkgs - manager=nix-default && tot nix-store -qR /nix/var/nix/profiles/default - } - - # pkginfo is also the name of a python package manager which is painfully slow. - # TODO: Fix this somehow. - has pkginfo && tot pkginfo -i - - case $os-$kernel_name in - BSD-FreeBSD|BSD-DragonFly) - has pkg && tot pkg info - ;; - - BSD-*) - has pkg && dir /var/db/pkg/* - - ((packages == 0)) && - has pkg && tot pkg list - ;; - esac - - # List these last as they accompany regular package managers. - has flatpak && tot flatpak list - has spm && tot spm list -i - has puyo && dir ~/.puyo/installed - - # Snap hangs if the command is run without the daemon running. - # Only run snap if the daemon is also running. - has snap && ps -e | grep -qFm 1 snapd >/dev/null && \ - pkgs_h=1 tot snap list && ((packages-=1)) - - # This is the only standard location for appimages. - # See: https://github.com/AppImage/AppImageKit/wiki - manager=appimage && has appimaged && dir ~/.local/bin/*.appimage - ;; - esac - - if ((packages == 0)); then - unset packages - - elif [[ $package_managers == on ]]; then - printf -v packages '%s, ' "${managers[@]}" - packages=${packages%,*} - - elif [[ $package_managers == tiny ]]; then - packages+=" (${manager_string%,*})" - fi - - packages=${packages/pacman-key/pacman} -} - -get_shell() { - case $shell_path in - on) shell="$SHELL " ;; - off) shell="${SHELL##*/} " ;; - esac - - [[ $shell_version != on ]] && return - - case ${shell_name:=${SHELL##*/}} in - bash) - [[ $BASH_VERSION ]] || - BASH_VERSION=$("$SHELL" -c "printf %s \"\$BASH_VERSION\"") - - shell+=${BASH_VERSION/-*} - ;; - - sh|ash|dash|es) ;; - - *ksh) - shell+=$("$SHELL" -c "printf %s \"\$KSH_VERSION\"") - shell=${shell/ * KSH} - shell=${shell/version} - ;; - - osh) - if [[ $OIL_VERSION ]]; then - shell+=$OIL_VERSION - else - shell+=$("$SHELL" -c "printf %s \"\$OIL_VERSION\"") - fi - ;; - - tcsh) - shell+=$("$SHELL" -c "printf %s \$tcsh") - ;; - - yash) - shell+=$("$SHELL" --version 2>&1) - shell=${shell/ $shell_name} - shell=${shell/ Yet another shell} - shell=${shell/Copyright*} - ;; - - nu) - shell+=$("$SHELL" -c "version | get version") - shell=${shell/ $shell_name} - ;; - - - *) - shell+=$("$SHELL" --version 2>&1) - shell=${shell/ $shell_name} - ;; - esac - - # Remove unwanted info. - shell=${shell/, version} - shell=${shell/xonsh\//xonsh } - shell=${shell/options*} - shell=${shell/\(*\)} -} - -get_de() { - # If function was run, stop here. - ((de_run == 1)) && return - - case $os in - - FreeMiNT) - freemint_wm=(/proc/*) - - case ${freemint_wm[*]} in - *thing*) de=Thing ;; - *jinnee*) de=Jinnee ;; - *tera*) de=Teradesk ;; - *neod*) de=NeoDesk ;; - *zdesk*) de=zDesk ;; - *mdesk*) de=mDesk ;; - esac - ;; - - *) - ((wm_run != 1)) && get_wm - - # Temporary support for Regolith Linux - if [[ $DESKTOP_SESSION == *regolith ]]; then - de=Regolith - - elif [[ $XDG_CURRENT_DESKTOP ]]; then - de=${XDG_CURRENT_DESKTOP/X\-} - de=${de/Budgie:GNOME/Budgie} - de=${de/:Unity7:ubuntu} - - elif [[ $DESKTOP_SESSION ]]; then - de=${DESKTOP_SESSION##*/} - - elif [[ $GNOME_DESKTOP_SESSION_ID ]]; then - de=GNOME - - elif [[ $MATE_DESKTOP_SESSION_ID ]]; then - de=MATE - - elif [[ $TDE_FULL_SESSION ]]; then - de=Trinity - fi - - # When a window manager is started from a display manager - # the desktop variables are sometimes also set to the - # window manager name. This checks to see if WM == DE - # and discards the DE value. - [[ $de == "$wm" ]] && { unset -v de; return; } - ;; - esac - - # Fallback to using xprop. - [[ $DISPLAY && -z $de ]] && type -p xprop &>/dev/null && \ - de=$(xprop -root | awk '/KDE_SESSION_VERSION|^_MUFFIN|xfce4|xfce5/') - - # Format strings. - case $de in - KDE_SESSION_VERSION*) de=KDE${de/* = } ;; - *xfce4*) de=Xfce4 ;; - *xfce5*) de=Xfce5 ;; - *xfce*) de=Xfce ;; - *mate*) de=MATE ;; - *GNOME*) de=GNOME ;; - *MUFFIN*) de=Cinnamon ;; - esac - - ((${KDE_SESSION_VERSION:-0} >= 4)) && de=${de/KDE/Plasma} - - if [[ $de_version == on && $de ]]; then - case $de in - Plasma*) de_ver=$(plasmashell --version) ;; - MATE*) de_ver=$(mate-session --version) ;; - Xfce*) de_ver=$(xfce4-session --version) ;; - GNOME*) de_ver=$(gnome-shell --version) ;; - Cinnamon*) de_ver=$(cinnamon --version) ;; - Deepin*) de_ver=$(awk -F'=' '/MajorVersion/ {print $2}' /etc/os-version) ;; - Budgie*) de_ver=$(budgie-desktop --version) ;; - LXQt*) de_ver=$(lxqt-session --version) ;; - Lumina*) de_ver=$(lumina-desktop --version 2>&1) ;; - Trinity*) de_ver=$(tde-config --version) ;; - Unity*) de_ver=$(unity --version) ;; - esac - - de_ver=${de_ver/*TDE:} - de_ver=${de_ver/tde-config*} - de_ver=${de_ver/liblxqt*} - de_ver=${de_ver/Copyright*} - de_ver=${de_ver/)*} - de_ver=${de_ver/* } - de_ver=${de_ver//\"} - - de+=" $de_ver" - fi - - # TODO: - # - New config option + flag: --de_display_server on/off ? - # - Add display of X11, Arcan and anything else relevant. - [[ $de && $WAYLAND_DISPLAY ]] && - de+=" (Wayland)" - - de_run=1 -} - -get_wm() { - # If function was run, stop here. - ((wm_run == 1)) && return - - case $kernel_name in - *OpenBSD*) ps_flags=(x -c) ;; - *) ps_flags=(-e) ;; - esac - - if [[ -O "${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY:-wayland-0}" ]]; then - if tmp_pid="$(lsof -t "${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY:-wayland-0}" 2>&1)" || - tmp_pid="$(fuser "${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY:-wayland-0}" 2>&1)"; then - wm="$(ps -p "${tmp_pid}" -ho comm=)" - else - # lsof may not exist, or may need root on some systems. Similarly fuser. - # On those systems we search for a list of known window managers, this can mistakenly - # match processes for another user or session and will miss unlisted window managers. - wm=$(ps "${ps_flags[@]}" | grep -m 1 -o -F \ - -e arcan \ - -e asc \ - -e clayland \ - -e dwc \ - -e fireplace \ - -e gnome-shell \ - -e greenfield \ - -e grefsen \ - -e hikari \ - -e kwin \ - -e lipstick \ - -e maynard \ - -e mazecompositor \ - -e motorcar \ - -e orbital \ - -e orbment \ - -e perceptia \ - -e river \ - -e rustland \ - -e sway \ - -e ulubis \ - -e velox \ - -e wavy \ - -e way-cooler \ - -e wayfire \ - -e wayhouse \ - -e westeros \ - -e westford \ - -e weston) - fi - - - else - case $os in - FreeMiNT) - freemint_wm=(/proc/*) - - case ${freemint_wm[*]} in - *xaaes* | *xaloader*) wm=XaAES ;; - *myaes*) wm=MyAES ;; - *naes*) wm=N.AES ;; - geneva) wm=Geneva ;; - *) wm="Atari AES" ;; - esac - ;; - esac - fi - - # Rename window managers to their proper values. - [[ $wm == *WINDOWMAKER* ]] && wm=wmaker - [[ $wm == *GNOME*Shell* ]] && wm=Mutter - - wm_run=1 -} - -get_wm_theme() { - ((wm_run != 1)) && get_wm - ((de_run != 1)) && get_de - - case $wm in - E16) - wm_theme=$(awk -F "= " '/theme.name/ {print $2}' "${HOME}/.e16/e_config--0.0.cfg") - ;; - - Sawfish) - wm_theme=$(awk -F '\\(quote|\\)' '/default-frame-style/ {print $(NF-4)}' \ - "$HOME/.sawfish/custom") - ;; - - Cinnamon|Muffin|"Mutter (Muffin)") - detheme=$(gsettings get org.cinnamon.theme name) - wm_theme=$(gsettings get org.cinnamon.desktop.wm.preferences theme) - wm_theme="$detheme ($wm_theme)" - ;; - - Compiz|Mutter|Gala) - if type -p gsettings >/dev/null; then - wm_theme=$(gsettings get org.gnome.shell.extensions.user-theme name) - - [[ ${wm_theme//\'} ]] || \ - wm_theme=$(gsettings get org.gnome.desktop.wm.preferences theme) - - elif type -p gconftool-2 >/dev/null; then - wm_theme=$(gconftool-2 -g /apps/metacity/general/theme) - fi - ;; - - Metacity*) - if [[ $de == Deepin ]]; then - wm_theme=$(gsettings get com.deepin.wrap.gnome.desktop.wm.preferences theme) - - elif [[ $de == MATE ]]; then - wm_theme=$(gsettings get org.mate.Marco.general theme) - - else - wm_theme=$(gconftool-2 -g /apps/metacity/general/theme) - fi - ;; - - E17|Enlightenment) - if type -p eet >/dev/null; then - wm_theme=$(eet -d "$HOME/.e/e/config/standard/e.cfg" config |\ - awk '/value \"file\" string.*.edj/ {print $4}') - wm_theme=${wm_theme##*/} - wm_theme=${wm_theme%.*} - fi - ;; - - Fluxbox) - [[ -f $HOME/.fluxbox/init ]] && - wm_theme=$(awk -F "/" '/styleFile/ {print $NF}' "$HOME/.fluxbox/init") - ;; - - IceWM*) - [[ -f $HOME/.icewm/theme ]] && - wm_theme=$(awk -F "[\",/]" '!/#/ {print $2}' "$HOME/.icewm/theme") - ;; - - Openbox) - case $de in - LXDE*) ob_file=lxde-rc ;; - LXQt*) ob_file=lxqt-rc ;; - *) ob_file=rc ;; - esac - - ob_file=$XDG_CONFIG_HOME/openbox/$ob_file.xml - - [[ -f $ob_file ]] && - wm_theme=$(awk '// {while (getline n) {if (match(n, //)) - {l=n; exit}}} END {split(l, a, "[<>]"); print a[3]}' "$ob_file") - ;; - - PekWM) - [[ -f $HOME/.pekwm/config ]] && - wm_theme=$(awk -F "/" '/Theme/{gsub(/\"/,""); print $NF}' "$HOME/.pekwm/config") - ;; - - Xfwm4) - [[ -f $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml ]] && - wm_theme=$(xfconf-query -c xfwm4 -p /general/theme) - ;; - - KWin*) - kde_config_dir - kwinrc=$kde_config_dir/kwinrc - kdebugrc=$kde_config_dir/kdebugrc - - if [[ -f $kwinrc ]]; then - wm_theme=$(awk '/theme=/ { - gsub(/theme=.*qml_|theme=.*svg__/,"",$0); - print $0; - exit - }' "$kwinrc") - - [[ "$wm_theme" ]] || - wm_theme=$(awk '/library=org.kde/ { - gsub(/library=org.kde./,"",$0); - print $0; - exit - }' "$kwinrc") - - [[ $wm_theme ]] || - wm_theme=$(awk '/PluginLib=kwin3_/ { - gsub(/PluginLib=kwin3_/,"",$0); - print $0; - exit - }' "$kwinrc") - - elif [[ -f $kdebugrc ]]; then - wm_theme=$(awk '/(decoration)/ {gsub(/\[/,"",$1); print $1; exit}' "$kdebugrc") - fi - - wm_theme=${wm_theme/theme=} - ;; - - "Quartz Compositor") - global_preferences=$HOME/Library/Preferences/.GlobalPreferences.plist - wm_theme=$(PlistBuddy -c "Print AppleInterfaceStyle" "$global_preferences") - wm_theme_color=$(PlistBuddy -c "Print AppleAccentColor" "$global_preferences") - - [[ "$wm_theme" ]] || - wm_theme=Light - - case $wm_theme_color in - -1) wm_theme_color=Graphite ;; - 0) wm_theme_color=Red ;; - 1) wm_theme_color=Orange ;; - 2) wm_theme_color=Yellow ;; - 3) wm_theme_color=Green ;; - 5) wm_theme_color=Purple ;; - 6) wm_theme_color=Pink ;; - *) wm_theme_color=Blue ;; - esac - - wm_theme="$wm_theme_color ($wm_theme)" - ;; - - *Explorer) - path=/proc/registry/HKEY_CURRENT_USER/Software/Microsoft - path+=/Windows/CurrentVersion/Themes/CurrentTheme - - wm_theme=$(head -n1 "$path") - wm_theme=${wm_theme##*\\} - wm_theme=${wm_theme%.*} - ;; - - Blackbox|bbLean*) - path=$(wmic process get ExecutablePath | grep -F "blackbox") - path=${path//\\/\/} - - wm_theme=$(grep '^session\.styleFile:' "${path/\.exe/.rc}") - wm_theme=${wm_theme/session\.styleFile: } - wm_theme=${wm_theme##*\\} - wm_theme=${wm_theme%.*} - ;; - esac - - wm_theme=$(trim_quotes "$wm_theme") -} - -get_cpu() { - case $os in - "Linux" | "MINIX" | "Windows") - # Get CPU name. - cpu_file="/proc/cpuinfo" - - case $kernel_machine in - "frv" | "hppa" | "m68k" | "openrisc" | "or"* | "powerpc" | "ppc"* | "sparc"*) - cpu="$(awk -F':' '/^cpu\t|^CPU/ {printf $2; exit}' "$cpu_file")" - ;; - - "s390"*) - cpu="$(awk -F'=' '/machine/ {print $4; exit}' "$cpu_file")" - ;; - - "ia64" | "m32r") - cpu="$(awk -F':' '/model/ {print $2; exit}' "$cpu_file")" - [[ -z "$cpu" ]] && cpu="$(awk -F':' '/family/ {printf $2; exit}' "$cpu_file")" - ;; - - *) - cpu="$(awk -F '\\s*: | @' \ - '/model name|Hardware|Processor|^cpu model|chip type|^cpu type/ { - cpu=$2; if ($1 == "Hardware") exit } END { print cpu }' "$cpu_file")" - ;; - esac - - speed_dir="/sys/devices/system/cpu/cpu0/cpufreq" - - # Select the right temperature file. - for temp_dir in /sys/class/hwmon/*; do - [[ "$(< "${temp_dir}/name")" =~ (cpu_thermal|coretemp|fam15h_power|k10temp) ]] && { - temp_dirs=("$temp_dir"/temp*_input) - temp_dir=${temp_dirs[0]} - break - } - done - - # Get CPU speed. - if [[ -d "$speed_dir" ]]; then - # Fallback to bios_limit if $speed_type fails. - speed="$(< "${speed_dir}/${speed_type}")" ||\ - speed="$(< "${speed_dir}/bios_limit")" ||\ - speed="$(< "${speed_dir}/scaling_max_freq")" ||\ - speed="$(< "${speed_dir}/cpuinfo_max_freq")" - speed="$((speed / 1000))" - - else - case $kernel_machine in - "sparc"*) - # SPARC systems use a different file to expose clock speed information. - speed_file="/sys/devices/system/cpu/cpu0/clock_tick" - speed="$(($(< "$speed_file") / 1000000))" - ;; - - *) - speed="$(awk -F ': |\\.' '/cpu MHz|^clock/ {printf $2; exit}' "$cpu_file")" - speed="${speed/MHz}" - ;; - esac - fi - - # Get CPU temp. - [[ -f "$temp_dir" ]] && deg="$(($(< "$temp_dir") * 100 / 10000))" - - # Get CPU cores. - case $kernel_machine in - "sparc"*) - case $cpu_cores in - # SPARC systems doesn't expose detailed topology information in - # /proc/cpuinfo so I have to use lscpu here. - "logical" | "on") - cores="$(lscpu | awk -F ': *' '/^CPU\(s\)/ {print $2}')" - ;; - "physical") - cores="$(lscpu | awk -F ': *' '/^Core\(s\) per socket/ {print $2}')" - sockets="$(lscpu | awk -F ': *' '/^Socket\(s\)/ {print $2}')" - cores="$((sockets * cores))" - ;; - esac - ;; - - *) - case $cpu_cores in - "logical" | "on") - cores="$(grep -c "^processor" "$cpu_file")" - ;; - "physical") - cores="$(awk '/^core id/&&!a[$0]++{++i} END {print i}' "$cpu_file")" - ;; - esac - ;; - esac - ;; - esac - - # Remove un-needed patterns from cpu output. - cpu="${cpu//(TM)}" - cpu="${cpu//(tm)}" - cpu="${cpu//(R)}" - cpu="${cpu//(r)}" - cpu="${cpu//CPU}" - cpu="${cpu//Processor}" - cpu="${cpu//Dual-Core}" - cpu="${cpu//Quad-Core}" - cpu="${cpu//Six-Core}" - cpu="${cpu//Eight-Core}" - cpu="${cpu//[1-9][0-9]-Core}" - cpu="${cpu//[0-9]-Core}" - cpu="${cpu//, * Compute Cores}" - cpu="${cpu//Core / }" - cpu="${cpu//(\"AuthenticAMD\"*)}" - cpu="${cpu//with Radeon * Graphics}" - cpu="${cpu//, altivec supported}" - cpu="${cpu//FPU*}" - cpu="${cpu//Chip Revision*}" - cpu="${cpu//Technologies, Inc}" - cpu="${cpu//Core2/Core 2}" - - # Trim spaces from core and speed output - cores="${cores//[[:space:]]}" - speed="${speed//[[:space:]]}" - - # Remove CPU brand from the output. - if [[ "$cpu_brand" == "off" ]]; then - cpu="${cpu/AMD }" - cpu="${cpu/Intel }" - cpu="${cpu/Core? Duo }" - cpu="${cpu/Qualcomm }" - fi - - # Add CPU cores to the output. - [[ "$cpu_cores" != "off" && "$cores" ]] && \ - case $os in - "Mac OS X"|"macOS") cpu="${cpu/@/(${cores}) @}" ;; - *) cpu="$cpu ($cores)" ;; - esac - - # Add CPU speed to the output. - if [[ "$cpu_speed" != "off" && "$speed" ]]; then - if (( speed < 1000 )); then - cpu="$cpu @ ${speed}MHz" - else - [[ "$speed_shorthand" == "on" ]] && speed="$((speed / 100))" - speed="${speed:0:1}.${speed:1}" - cpu="$cpu @ ${speed}GHz" - fi - fi - - # Add CPU temp to the output. - if [[ "$cpu_temp" != "off" && "$deg" ]]; then - deg="${deg//.}" - - # Convert to Fahrenheit if enabled - [[ "$cpu_temp" == "F" ]] && deg="$((deg * 90 / 50 + 320))" - - # Format the output - deg="[${deg/${deg: -1}}.${deg: -1}°${cpu_temp:-C}]" - cpu="$cpu $deg" - fi -} - -get_gpu() { - case $os in - "Linux") - # Read GPUs into array. - gpu_cmd="$(lspci -mm | - awk -F '\"|\" \"|\\(' \ - '/"Display|"3D|"VGA/ { - a[$0] = $1 " " $3 " " ($(NF-1) ~ /^$|^Device [[:xdigit:]]+$/ ? $4 : $(NF-1)) - } - END { for (i in a) { - if (!seen[a[i]]++) { - sub("^[^ ]+ ", "", a[i]); - print a[i] - } - }}')" - IFS=$'\n' read -d "" -ra gpus <<< "$gpu_cmd" - - # Remove duplicate Intel Graphics outputs. - # This fixes cases where the outputs are both - # Intel but not entirely identical. - # - # Checking the first two array elements should - # be safe since there won't be 2 intel outputs if - # there's a dedicated GPU in play. - [[ "${gpus[0]}" == *Intel* && "${gpus[1]}" == *Intel* ]] && unset -v "gpus[0]" - - for gpu in "${gpus[@]}"; do - # GPU shorthand tests. - [[ "$gpu_type" == "dedicated" && "$gpu" == *Intel* ]] || \ - [[ "$gpu_type" == "integrated" && ! "$gpu" == *Intel* ]] && \ - { unset -v gpu; continue; } - - case $gpu in - *"Advanced"*) - brand="${gpu/*AMD*ATI*/AMD ATI}" - brand="${brand:-${gpu/*AMD*/AMD}}" - brand="${brand:-${gpu/*ATI*/ATi}}" - - gpu="${gpu/\[AMD\/ATI\] }" - gpu="${gpu/\[AMD\] }" - gpu="${gpu/OEM }" - gpu="${gpu/Advanced Micro Devices, Inc.}" - gpu="${gpu/*\[}" - gpu="${gpu/\]*}" - gpu="$brand $gpu" - ;; - - *"NVIDIA"*) - gpu="${gpu/*\[}" - gpu="${gpu/\]*}" - gpu="NVIDIA $gpu" - ;; - - *"Intel"*) - gpu="${gpu/*Intel/Intel}" - gpu="${gpu/\(R\)}" - gpu="${gpu/Corporation}" - gpu="${gpu/ \(*}" - gpu="${gpu/Integrated Graphics Controller}" - gpu="${gpu/*Xeon*/Intel HD Graphics}" - - [[ -z "$(trim "$gpu")" ]] && gpu="Intel Integrated Graphics" - ;; - - *"MCST"*) - gpu="${gpu/*MCST*MGA2*/MCST MGA2}" - ;; - - *"VirtualBox"*) - gpu="VirtualBox Graphics Adapter" - ;; - - *) continue ;; - esac - - if [[ "$gpu_brand" == "off" ]]; then - gpu="${gpu/AMD }" - gpu="${gpu/NVIDIA }" - gpu="${gpu/Intel }" - fi - - prin "${subtitle:+${subtitle}${gpu_name}}" "$gpu" - done - - return - ;; - esac - - if [[ "$gpu_brand" == "off" ]]; then - gpu="${gpu/AMD}" - gpu="${gpu/NVIDIA}" - gpu="${gpu/Intel}" - fi -} - -get_memory() { - case $os in - "Linux" | "Windows") - # 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") ((mem_used+=${b/kB})); mem_total="${b/kB}" ;; - "Shmem") ((mem_used+=${b/kB})) ;; - "MemFree" | "Buffers" | "Cached" | "SReclaimable") - mem_used="$((mem_used-=${b/kB}))" - ;; - - # Available since Linux 3.14rc (34e431b0ae398fc54ea69ff85ec700722c9da773). - # If detected this will be used over the above calculation for mem_used. - "MemAvailable") - mem_avail=${b/kB} - ;; - esac - done < /proc/meminfo - - if [[ $mem_avail ]]; then - mem_used="$(free -m | awk 'NR==2{print $3}')" - else - mem_used="$(free -m | awk 'NR==2{print $3}')" - fi - - mem_total="$(free -m | awk 'NR==2{print $2}')" - ;; - esac - - [[ "$memory_percent" == "on" ]] && ((mem_perc=mem_used * 100 / mem_total)) - - case $memory_unit in - gib) - mem_used=$(awk '{printf "%.2f", $1 / $2}' <<< "$mem_used 1024") - mem_total=$(awk '{printf "%.2f", $1 / $2}' <<< "$mem_total 1024") - mem_label=GiB - ;; - - kib) - mem_used=$((mem_used * 1024)) - mem_total=$((mem_total * 1024)) - mem_label=KiB - ;; - esac - - memory="${mem_used}${mem_label:-MiB} / ${mem_total}${mem_label:-MiB} ${mem_perc:+(${mem_perc}%)}" - - # Bars. - case $memory_display in - "bar") memory="$(bar "${mem_used}" "${mem_total}")" ;; - "infobar") memory="${memory} $(bar "${mem_used}" "${mem_total}")" ;; - "barinfo") memory="$(bar "${mem_used}" "${mem_total}")${info_color} ${memory}" ;; - esac -} - -get_song() { - players=( - "amarok" - "audacious" - "banshee" - "bluemindo" - "clementine" - "cmus" - "deadbeef" - "deepin-music" - "dragon" - "elisa" - "exaile" - "gnome-music" - "gmusicbrowser" - "gogglesmm" - "guayadeque" - "io.elementary.music" - "iTunes" - "Music" - "juk" - "lollypop" - "MellowPlayer" - "mocp" - "mopidy" - "mpd" - "muine" - "netease-cloud-music" - "olivia" - "plasma-browser-integration" - "playerctl" - "pogo" - "pragha" - "qmmp" - "quodlibet" - "rhythmbox" - "sayonara" - "smplayer" - "spotify" - "Spotify" - "strawberry" - "tauonmb" - "tomahawk" - "vlc" - "xmms2d" - "xnoise" - "yarock" - ) - - printf -v players "|%s" "${players[@]}" - player="$(ps aux | awk -v pattern="(${players:1})" \ - '!/ awk / && !/iTunesHelper/ && match($0,pattern){print substr($0,RSTART,RLENGTH); exit}')" - - [[ "$music_player" && "$music_player" != "auto" ]] && player="$music_player" - - get_song_dbus() { - # Multiple players use an almost identical dbus command to get the information. - # This function saves us using the same command throughout the function. - song="$(\ - dbus-send --print-reply --dest=org.mpris.MediaPlayer2."${1}" /org/mpris/MediaPlayer2 \ - org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' \ - string:'Metadata' |\ - awk -F '"' 'BEGIN {RS=" entry"}; /"xesam:artist"/ {a = $4} /"xesam:album"/ {b = $4} - /"xesam:title"/ {t = $4} END {print a " \n" b " \n" t}' - )" - } - - case ${player/*\/} in - "mocp"*) song="$(mocp -Q '%artist \n%album \n%song')" ;; - "deadbeef"*) song="$(deadbeef --nowplaying-tf '%artist% \\n%album% \\n%title%')" ;; - "qmmp"*) song="$(qmmp --nowplaying '%p \n%a \n%t')" ;; - "gnome-music"*) get_song_dbus "GnomeMusic" ;; - "lollypop"*) get_song_dbus "Lollypop" ;; - "clementine"*) get_song_dbus "clementine" ;; - "cmus"*) get_song_dbus "cmus" ;; - "juk"*) get_song_dbus "juk" ;; - "bluemindo"*) get_song_dbus "Bluemindo" ;; - "guayadeque"*) get_song_dbus "guayadeque" ;; - "yarock"*) get_song_dbus "yarock" ;; - "deepin-music"*) get_song_dbus "DeepinMusic" ;; - "tomahawk"*) get_song_dbus "tomahawk" ;; - "elisa"*) get_song_dbus "elisa" ;; - "sayonara"*) get_song_dbus "sayonara" ;; - "audacious"*) get_song_dbus "audacious" ;; - "vlc"*) get_song_dbus "vlc" ;; - "gmusicbrowser"*) get_song_dbus "gmusicbrowser" ;; - "pragha"*) get_song_dbus "pragha" ;; - "amarok"*) get_song_dbus "amarok" ;; - "dragon"*) get_song_dbus "dragonplayer" ;; - "smplayer"*) get_song_dbus "smplayer" ;; - "rhythmbox"*) get_song_dbus "rhythmbox" ;; - "strawberry"*) get_song_dbus "strawberry" ;; - "gogglesmm"*) get_song_dbus "gogglesmm" ;; - "xnoise"*) get_song_dbus "xnoise" ;; - "tauonmb"*) get_song_dbus "tauon" ;; - "olivia"*) get_song_dbus "olivia" ;; - "exaile"*) get_song_dbus "exaile" ;; - "netease-cloud-music"*) get_song_dbus "netease-cloud-music" ;; - "plasma-browser-integration"*) get_song_dbus "plasma-browser-integration" ;; - "io.elementary.music"*) get_song_dbus "Music" ;; - "MellowPlayer"*) get_song_dbus "MellowPlayer3" ;; - - "mpd"* | "mopidy"*) - song="$(mpc -f '%artist% \n%album% \n%title%' current "${mpc_args[@]}")" - ;; - - "xmms2d"*) - song="$(xmms2 current -f "\${artist}"$' \n'"\${album}"$' \n'"\${title}")" - ;; - - "spotify"*) - case $os in - "Linux") get_song_dbus "spotify" ;; - - "Mac OS X"|"macOS") - song="$(osascript -e 'tell application "Spotify" to artist of current track as¬ - string & "\n" & album of current track as¬ - string & "\n" & name of current track as string')" - ;; - esac - ;; - - "itunes"*) - song="$(osascript -e 'tell application "iTunes" to artist of current track as¬ - string & "\n" & album of current track as¬ - string & "\n" & name of current track as string')" - ;; - - "music"*) - song="$(osascript -e 'tell application "Music" to artist of current track as¬ - string & "\n" & album of current track as¬ - string & "\n" & name of current track as string')" - ;; - - "banshee"*) - song="$(banshee --query-artist --query-album --query-title |\ - awk -F':' '/^artist/ {a=$2} /^album/ {b=$2} /^title/ {t=$2} - END {print a " \n" b " \n"t}')" - ;; - - "muine"*) - song="$(dbus-send --print-reply --dest=org.gnome.Muine /org/gnome/Muine/Player \ - org.gnome.Muine.Player.GetCurrentSong | - awk -F':' '/^artist/ {a=$2} /^album/ {b=$2} /^title/ {t=$2} - END {print a " \n" b " \n" t}')" - ;; - - "quodlibet"*) - song="$(dbus-send --print-reply --dest=net.sacredchao.QuodLibet \ - /net/sacredchao/QuodLibet net.sacredchao.QuodLibet.CurrentSong |\ - awk -F'"' 'BEGIN {RS=" entry"}; /"artist"/ {a=$4} /"album"/ {b=$4} - /"title"/ {t=$4} END {print a " \n" b " \n" t}')" - ;; - - "pogo"*) - song="$(dbus-send --print-reply --dest=org.mpris.pogo /Player \ - org.freedesktop.MediaPlayer.GetMetadata | - awk -F'"' 'BEGIN {RS=" entry"}; /"artist"/ {a=$4} /"album"/ {b=$4} - /"title"/ {t=$4} END {print a " \n" b " \n" t}')" - ;; - - "playerctl"*) - song="$(playerctl metadata --format '{{ artist }} \n{{ album }} \n{{ title }}')" - ;; - - *) mpc &>/dev/null && song="$(mpc -f '%artist% \n%album% \n%title%' current)" || return ;; - esac - - IFS=$'\n' read -d "" -r artist album title <<< "${song//'\n'/$'\n'}" - - # Make sure empty tags are truly empty. - artist="$(trim "$artist")" - album="$(trim "$album")" - title="$(trim "$title")" - - # Set default values if no tags were found. - : "${artist:=Unknown Artist}" "${album:=Unknown Album}" "${title:=Unknown Song}" - - # Display Artist, Album and Title on separate lines. - if [[ "$song_shorthand" == "on" ]]; then - prin "Artist" "$artist" - prin "Album" "$album" - prin "Song" "$title" - else - song="${song_format/\%artist\%/$artist}" - song="${song/\%album\%/$album}" - song="${song/\%title\%/$title}" - fi -} - -get_resolution() { - case $os in - "Mac OS X"|"macOS") - if type -p screenresolution >/dev/null; then - resolution="$(screenresolution get 2>&1 | awk '/Display/ {printf $6 "Hz, "}')" - resolution="${resolution//x??@/ @ }" - - else - resolution="$(system_profiler SPDisplaysDataType |\ - awk '/Resolution:/ {printf $2"x"$4" @ "$6"Hz, "}')" - fi - - if [[ -e "/Library/Preferences/com.apple.windowserver.plist" ]]; then - scale_factor="$(PlistBuddy -c "Print DisplayAnyUserSets:0:0:Resolution" \ - /Library/Preferences/com.apple.windowserver.plist)" - else - scale_factor="" - fi - - # If no refresh rate is empty. - [[ "$resolution" == *"@ Hz"* ]] && \ - resolution="${resolution//@ Hz}" - - [[ "${scale_factor%.*}" == 2 ]] && \ - resolution="${resolution// @/@2x @}" - - if [[ "$refresh_rate" == "off" ]]; then - resolution="${resolution// @ [0-9][0-9]Hz}" - resolution="${resolution// @ [0-9][0-9][0-9]Hz}" - fi - - [[ "$resolution" == *"0Hz"* ]] && \ - resolution="${resolution// @ 0Hz}" - ;; - - "Windows") - IFS=$'\n' read -d "" -ra sw \ - <<< "$(wmic path Win32_VideoController get CurrentHorizontalResolution)" - - IFS=$'\n' read -d "" -ra sh \ - <<< "$(wmic path Win32_VideoController get CurrentVerticalResolution)" - - sw=("${sw[@]//CurrentHorizontalResolution}") - sh=("${sh[@]//CurrentVerticalResolution}") - - for ((mn = 0; mn < ${#sw[@]}; mn++)) { - [[ ${sw[mn]//[[:space:]]} && ${sh[mn]//[[:space:]]} ]] && - resolution+="${sw[mn]//[[:space:]]}x${sh[mn]//[[:space:]]}, " - } - - resolution=${resolution%,} - ;; - - "Haiku") - resolution="$(screenmode | awk -F ' |, ' 'END{printf $2 "x" $3 " @ " $6 $7}')" - - [[ "$refresh_rate" == "off" ]] && resolution="${resolution/ @*}" - ;; - - "FreeMiNT") - # Need to block X11 queries - ;; - - *) - if type -p xrandr >/dev/null && [[ $DISPLAY && -z $WAYLAND_DISPLAY ]]; then - case $refresh_rate in - "on") - resolution="$(xrandr --nograb --current |\ - awk 'match($0,/[0-9]*\.[0-9]*\*/) { - printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')" - ;; - - "off") - resolution="$(xrandr --nograb --current |\ - awk -F 'connected |\\+|\\(' \ - '/ connected.*[0-9]+x[0-9]+\+/ && $2 {printf $2 ", "}')" - - resolution="${resolution/primary, }" - resolution="${resolution/primary }" - ;; - esac - resolution="${resolution//\*}" - - elif type -p xwininfo >/dev/null && [[ $DISPLAY && -z $WAYLAND_DISPLAY ]]; then - read -r w h \ - <<< "$(xwininfo -root | awk -F':' '/Width|Height/ {printf $2}')" - resolution="${w}x${h}" - - elif type -p xdpyinfo >/dev/null && [[ $DISPLAY && -z $WAYLAND_DISPLAY ]]; then - resolution="$(xdpyinfo | awk '/dimensions:/ {printf $2}')" - - elif [[ -d /sys/class/drm ]]; then - for dev in /sys/class/drm/*/modes; do - read -r single_resolution _ < "$dev" - - [[ $single_resolution ]] && resolution="${single_resolution}, ${resolution}" - done - fi - ;; - esac - - resolution="${resolution%%,}" - resolution="${resolution%%, }" - [[ -z "${resolution/x}" ]] && resolution= -} - -get_style() { - # Fix weird output when the function is run multiple times. - unset gtk2_theme gtk3_theme theme path - - if [[ "$DISPLAY" && $os != "Mac OS X" && $os != "macOS" ]]; then - # Get DE if user has disabled the function. - ((de_run != 1)) && get_de - - # Remove version from '$de'. - [[ $de_version == on ]] && de=${de/ *} - - # Check for DE Theme. - case $de in - "KDE"* | "Plasma"*) - kde_config_dir - - if [[ -f "${kde_config_dir}/kdeglobals" ]]; then - kde_config_file="${kde_config_dir}/kdeglobals" - - kde_theme="$(grep "^${kde}" "$kde_config_file")" - kde_theme="${kde_theme/*=}" - if [[ "$kde" == "font" ]]; then - kde_font_size="${kde_theme#*,}" - kde_font_size="${kde_font_size/,*}" - kde_theme="${kde_theme/,*} ${kde_theme/*,} ${kde_font_size}" - fi - kde_theme="$kde_theme [$de], " - else - err "Theme: KDE config files not found, skipping." - fi - ;; - - *"Cinnamon"*) - if type -p gsettings >/dev/null; then - gtk3_theme="$(gsettings get org.cinnamon.desktop.interface "$gsettings")" - gtk2_theme="$gtk3_theme" - fi - ;; - - "Gnome"* | "Unity"* | "Budgie"*) - if type -p gsettings >/dev/null; then - gtk3_theme="$(gsettings get org.gnome.desktop.interface "$gsettings")" - gtk2_theme="$gtk3_theme" - - elif type -p gconftool-2 >/dev/null; then - gtk2_theme="$(gconftool-2 -g /desktop/gnome/interface/"$gconf")" - fi - ;; - - "Mate"*) - gtk3_theme="$(gsettings get org.mate.interface "$gsettings")" - gtk2_theme="$gtk3_theme" - ;; - - "Xfce"*) - type -p xfconf-query >/dev/null && \ - gtk2_theme="$(xfconf-query -c xsettings -p "$xfconf")" - ;; - esac - - # Check for general GTK2 Theme. - if [[ -z "$gtk2_theme" ]]; then - if [[ -n "$GTK2_RC_FILES" ]]; then - IFS=: read -ra rc_files <<< "$GTK2_RC_FILES" - gtk2_theme="$(grep "^[^#]*${name}" "${rc_files[@]}")" - elif [[ -f "${HOME}/.gtkrc-2.0" ]]; then - gtk2_theme="$(grep "^[^#]*${name}" "${HOME}/.gtkrc-2.0")" - - elif [[ -f "/etc/gtk-2.0/gtkrc" ]]; then - gtk2_theme="$(grep "^[^#]*${name}" /etc/gtk-2.0/gtkrc)" - - elif [[ -f "/usr/share/gtk-2.0/gtkrc" ]]; then - gtk2_theme="$(grep "^[^#]*${name}" /usr/share/gtk-2.0/gtkrc)" - - fi - - gtk2_theme="${gtk2_theme/*${name}*=}" - fi - - # Check for general GTK3 Theme. - if [[ -z "$gtk3_theme" ]]; then - if [[ -f "${XDG_CONFIG_HOME}/gtk-3.0/settings.ini" ]]; then - gtk3_theme="$(grep "^[^#]*$name" "${XDG_CONFIG_HOME}/gtk-3.0/settings.ini")" - - elif type -p gsettings >/dev/null; then - gtk3_theme="$(gsettings get org.gnome.desktop.interface "$gsettings")" - - elif [[ -f "/etc/gtk-3.0/settings.ini" ]]; then - gtk3_theme="$(grep "^[^#]*$name" /etc/gtk-3.0/settings.ini)" - - elif [[ -f "/usr/share/gtk-3.0/settings.ini" ]]; then - gtk3_theme="$(grep "^[^#]*$name" /usr/share/gtk-3.0/settings.ini)" - fi - - gtk3_theme="${gtk3_theme/${name}*=}" - fi - - # Trim whitespace. - gtk2_theme="$(trim "$gtk2_theme")" - gtk3_theme="$(trim "$gtk3_theme")" - - # Remove quotes. - gtk2_theme="$(trim_quotes "$gtk2_theme")" - gtk3_theme="$(trim_quotes "$gtk3_theme")" - - # Toggle visibility of GTK themes. - [[ "$gtk2" == "off" ]] && unset gtk2_theme - [[ "$gtk3" == "off" ]] && unset gtk3_theme - - # Format the string based on which themes exist. - if [[ "$gtk2_theme" && "$gtk2_theme" == "$gtk3_theme" ]]; then - gtk3_theme+=" [GTK2/3]" - unset gtk2_theme - - elif [[ "$gtk2_theme" && "$gtk3_theme" ]]; then - gtk2_theme+=" [GTK2], " - gtk3_theme+=" [GTK3] " - - else - [[ "$gtk2_theme" ]] && gtk2_theme+=" [GTK2] " - [[ "$gtk3_theme" ]] && gtk3_theme+=" [GTK3] " - fi - - # Final string. - theme="${kde_theme}${gtk2_theme}${gtk3_theme}" - theme="${theme%, }" - - # Make the output shorter by removing "[GTKX]" from the string. - if [[ "$gtk_shorthand" == "on" ]]; then - theme="${theme// '[GTK'[0-9]']'}" - theme="${theme/ '[GTK2/3]'}" - theme="${theme/ '[KDE]'}" - theme="${theme/ '[Plasma]'}" - fi - fi -} - -get_theme() { - name="gtk-theme-name" - gsettings="gtk-theme" - gconf="gtk_theme" - xfconf="/Net/ThemeName" - kde="Name" - - get_style -} - -get_icons() { - name="gtk-icon-theme-name" - gsettings="icon-theme" - gconf="icon_theme" - xfconf="/Net/IconThemeName" - kde="Theme" - - get_style - icons="$theme" -} - -get_font() { - name="gtk-font-name" - gsettings="font-name" - gconf="font_theme" - xfconf="/Gtk/FontName" - kde="font" - - get_style - font="$theme" -} - -get_term() { - # If function was run, stop here. - ((term_run == 1)) && return - - # Workaround for macOS systems that - # don't support the block below. - case $TERM_PROGRAM in - "iTerm.app") term="iTerm2" ;; - "Terminal.app") term="Apple Terminal" ;; - "Hyper") term="HyperTerm" ;; - *) term="${TERM_PROGRAM/\.app}" ;; - esac - - # Most likely TosWin2 on FreeMiNT - quick check - [[ "$TERM" == "tw52" || "$TERM" == "tw100" ]] && term="TosWin2" - [[ "$SSH_CONNECTION" ]] && term="$SSH_TTY" - [[ "$WT_SESSION" ]] && term="Windows Terminal" - - # Check $PPID for terminal emulator. - while [[ -z "$term" ]]; do - parent="$(get_ppid "$parent")" - [[ -z "$parent" ]] && break - name="$(get_process_name "$parent")" - - case ${name// } in - "${SHELL/*\/}"|*"sh"|"screen"|"su"*|"newgrp") ;; - - "login"*|*"Login"*|"init"|"(init)") - term="$(tty)" - ;; - - "ruby"|"1"|"tmux"*|"systemd"|"sshd"*|"python"*|\ - "USER"*"PID"*|"kdeinit"*|"launchd"*|"bwrap") - break - ;; - - "gnome-terminal-") term="gnome-terminal" ;; - "urxvtd") term="urxvt" ;; - *"nvim") term="Neovim Terminal" ;; - *"NeoVimServer"*) term="VimR Terminal" ;; - - *) - # Fix issues with long process names on Linux. - [[ $os == Linux ]] && term=$(realpath "/proc/$parent/exe") - - term="${name##*/}" - - # Fix wrapper names in Nix. - [[ $term == .*-wrapped ]] && { - term="${term#.}" - term="${term%-wrapped}" - } - ;; - esac - done - - # Log that the function was run. - term_run=1 -} - -get_term_font() { - ((term_run != 1)) && get_term - - case $term in - "alacritty"*) - shopt -s nullglob - confs=({$XDG_CONFIG_HOME,$HOME}/{alacritty,}/{.,}alacritty.ym?) - shopt -u nullglob - - [[ -f "${confs[0]}" ]] || return - - term_font="$(awk '/normal:/ {while (!/family:/ || /#/) - {if (!getline) {exit}} print; exit}' "${confs[0]}")" - term_font="${term_font/*family:}" - term_font="${term_font/$'\n'*}" - term_font="${term_font/\#*}" - term_font="${term_font//\"}" - ;; - - "Apple_Terminal") - term_font="$(osascript </dev/null || - { err "Disk requires 'df' to function. Install 'df' to get disk info."; return; } - - df_version=$(df --version 2>&1) - - case $df_version in - *IMitv*) df_flags=(-P -g) ;; # AIX - *befhikm*) df_flags=(-P -k) ;; # IRIX - *hiklnP*) df_flags=(-h) ;; # OpenBSD - - *Tracker*) # Haiku - err "Your version of df cannot be used due to the non-standard flags" - return - ;; - - *) df_flags=(-P -h) ;; - esac - - # Create an array called 'disks' where each element is a separate line from - # df's output. We then unset the first element which removes the column titles. - IFS=$'\n' read -d "" -ra disks <<< "$(df "${df_flags[@]}" "${disk_show[@]:-/}")" - unset "disks[0]" - - # Stop here if 'df' fails to print disk info. - [[ ${disks[*]} ]] || { - err "Disk: df failed to print the disks, make sure the disk_show array is set properly." - return - } - - for disk in "${disks[@]}"; do - # Create a second array and make each element split at whitespace this time. - IFS=" " read -ra disk_info <<< "$disk" - disk_perc=${disk_info[${#disk_info[@]} - 2]/\%} - - case $disk_percent in - off) disk_perc= - esac - - case $df_version in - *befhikm*) - disk=$((disk_info[${#disk_info[@]} - 4] / 1024 / 1024))G - disk+=" / " - disk+=$((disk_info[${#disk_info[@]} - 5] / 1024/ 1024))G - disk+=${disk_perc:+ ($disk_perc%)} - ;; - - *) - disk=${disk_info[${#disk_info[@]} - 4]/i} - disk+=" / " - disk+=${disk_info[${#disk_info[@]} - 5]/i} - disk+=${disk_perc:+ ($disk_perc%)} - ;; - esac - - case $disk_subtitle in - name) - disk_sub=${disk_info[*]::${#disk_info[@]} - 5} - ;; - - dir) - disk_sub=${disk_info[${#disk_info[@]} - 1]/*\/} - disk_sub=${disk_sub:-${disk_info[${#disk_info[@]} - 1]}} - ;; - - none) ;; - - *) - disk_sub=${disk_info[${#disk_info[@]} - 1]} - ;; - esac - - case $disk_display in - bar) disk="$(bar "$disk_perc" "100")" ;; - infobar) disk+=" $(bar "$disk_perc" "100")" ;; - barinfo) disk="$(bar "$disk_perc" "100")${info_color} $disk" ;; - perc) disk="${disk_perc}% $(bar "$disk_perc" "100")" ;; - esac - - # Append '(disk mount point)' to the subtitle. - if [[ "$subtitle" ]]; then - prin "$subtitle${disk_sub:+ ($disk_sub)}" "$disk" - else - prin "$disk_sub" "$disk" - fi - done -} - -get_battery() { - case $os in - "Linux") - # We use 'prin' here so that we can do multi battery support - # with a single battery per line. - for bat in "/sys/class/power_supply/"{BAT,axp288_fuel_gauge,CMB}*; do - capacity="$(< "${bat}/capacity")" - status="$(< "${bat}/status")" - - if [[ "$capacity" ]]; then - battery="${capacity}% [${status}]" - - case $battery_display in - "bar") battery="$(bar "$capacity" 100)" ;; - "infobar") battery+=" $(bar "$capacity" 100)" ;; - "barinfo") battery="$(bar "$capacity" 100)${info_color} ${battery}" ;; - esac - - bat="${bat/*axp288_fuel_gauge}" - prin "${subtitle:+${subtitle}${bat: -1}}" "$battery" - fi - done - return - ;; - - "BSD") - case $kernel_name in - "FreeBSD"* | "DragonFly"*) - battery="$(acpiconf -i 0 | awk -F ':\t' '/Remaining capacity/ {print $2}')" - battery_state="$(acpiconf -i 0 | awk -F ':\t\t\t' '/State/ {print $2}')" - ;; - - "NetBSD"*) - battery="$(envstat | awk '\\(|\\)' '/charge:/ {print $2}')" - battery="${battery/\.*/%}" - ;; - - "OpenBSD"* | "Bitrig"*) - battery0full="$(sysctl -n hw.sensors.acpibat0.watthour0\ - hw.sensors.acpibat0.amphour0)" - battery0full="${battery0full%% *}" - - battery0now="$(sysctl -n hw.sensors.acpibat0.watthour3\ - hw.sensors.acpibat0.amphour3)" - battery0now="${battery0now%% *}" - - state="$(sysctl -n hw.sensors.acpibat0.raw0)" - state="${state##? (battery }" - state="${state%)*}" - - [[ "${state}" == "charging" ]] && battery_state="charging" - [[ "$battery0full" ]] && \ - battery="$((100 * ${battery0now/\.} / ${battery0full/\.}))%" - ;; - esac - ;; - - "Haiku") - 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)" - battery="$((battery0full * 100 / battery0now))%" - ;; - esac - - [[ "$battery_state" ]] && battery+=" Charging" - - case $battery_display in - "bar") battery="$(bar "${battery/\%*}" 100)" ;; - "infobar") battery="${battery} $(bar "${battery/\%*}" 100)" ;; - "barinfo") battery="$(bar "${battery/\%*}" 100)${info_color} ${battery}" ;; - esac -} - -get_local_ip() { - case $os in - "Linux" | "BSD" | "Solaris" | "AIX" | "IRIX") - if [[ "${local_ip_interface[0]}" == "auto" ]]; then - local_ip="$(ip route get 1 | awk -F'src' '{print $2; exit}')" - local_ip="${local_ip/uid*}" - [[ "$local_ip" ]] || local_ip="$(ifconfig -a | awk '/broadcast/ {print $2; exit}')" - else - for interface in "${local_ip_interface[@]}"; do - local_ip="$(ip addr show "$interface" 2> /dev/null | - awk '/inet / {print $2; exit}')" - local_ip="${local_ip/\/*}" - [[ "$local_ip" ]] || - local_ip="$(ifconfig "$interface" 2> /dev/null | - awk '/broadcast/ {print $2; exit}')" - if [[ -n "$local_ip" ]]; then - prin "$interface" "$local_ip" - else - err "Local IP: Could not detect local ip for $interface" - fi - done - fi - ;; - - "MINIX") - local_ip="$(ifconfig | awk '{printf $3; exit}')" - ;; - - "Mac OS X" | "macOS" | "iPhone OS") - if [[ "${local_ip_interface[0]}" == "auto" ]]; then - interface="$(route get 1 | awk -F': ' '/interface/ {printf $2; exit}')" - local_ip="$(ipconfig getifaddr "$interface")" - else - for interface in "${local_ip_interface[@]}"; do - local_ip="$(ipconfig getifaddr "$interface")" - if [[ -n "$local_ip" ]]; then - prin "$interface" "$local_ip" - else - err "Local IP: Could not detect local ip for $interface" - fi - done - fi - ;; - - "Windows") - local_ip="$(ipconfig | awk -F ': ' '/IPv4 Address/ {printf $2 ", "}')" - local_ip="${local_ip%\,*}" - ;; - - "Haiku") - local_ip="$(ifconfig | awk -F ': ' '/Bcast/ {print $2}')" - local_ip="${local_ip/, Bcast}" - ;; - esac -} - -get_public_ip() { - if [[ ! -n "$public_ip_host" ]] && type -p dig >/dev/null; then - public_ip="$(dig +time=1 +tries=1 +short myip.opendns.com @resolver1.opendns.com)" - [[ "$public_ip" =~ ^\; ]] && unset public_ip - fi - - if [[ ! -n "$public_ip_host" ]] && [[ -z "$public_ip" ]] && type -p drill >/dev/null; then - public_ip="$(drill myip.opendns.com @resolver1.opendns.com | \ - awk '/^myip\./ && $3 == "IN" {print $5}')" - fi - - if [[ -z "$public_ip" ]] && type -p curl >/dev/null; then - public_ip="$(curl -L --max-time "$public_ip_timeout" -w '\n' "$public_ip_host")" - fi - - if [[ -z "$public_ip" ]] && type -p wget >/dev/null; then - public_ip="$(wget -T "$public_ip_timeout" -qO- "$public_ip_host")" - fi -} - -get_users() { - users="$(who | awk '!seen[$1]++ {printf $1 ", "}')" - users="${users%\,*}" -} - -get_locale() { - locale="$sys_locale" -} - -get_gpu_driver() { - case $os in - "Linux") - gpu_driver="$(lspci -nnk | awk -F ': ' \ - '/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "; exit}')" - gpu_driver="${gpu_driver%, }" - - if [[ "$gpu_driver" == *"nvidia"* ]]; then - gpu_driver="$(< /proc/driver/nvidia/version)" - gpu_driver="${gpu_driver/*Module }" - gpu_driver="NVIDIA ${gpu_driver/ *}" - fi - ;; - - "Mac OS X"|"macOS") - if [[ "$(kextstat | grep "GeForceWeb")" != "" ]]; then - gpu_driver="NVIDIA Web Driver" - else - gpu_driver="macOS Default Graphics Driver" - fi - ;; - esac -} - -get_cols() { - local blocks blocks2 cols - - if [[ "$color_blocks" == "on" ]]; then - # Convert the width to space chars. - printf -v block_width "%${block_width}s" - - # Generate the string. - for ((block_range[0]; block_range[0]<=block_range[1]; block_range[0]++)); do - case ${block_range[0]} in - [0-7]) - printf -v blocks '%b\e[3%bm\e[4%bm%b' \ - "$blocks" "${block_range[0]}" "${block_range[0]}" "$block_width" - ;; - - *) - printf -v blocks2 '%b\e[38;5;%bm\e[48;5;%bm%b' \ - "$blocks2" "${block_range[0]}" "${block_range[0]}" "$block_width" - ;; - esac - done - - # Convert height into spaces. - printf -v block_spaces "%${block_height}s" - - # Convert the spaces into rows of blocks. - [[ "$blocks" ]] && cols+="${block_spaces// /${blocks}nl}" - [[ "$blocks2" ]] && cols+="${block_spaces// /${blocks2}nl}" - - # Add newlines to the string. - cols=${cols%%nl} - cols=${cols//nl/ -[${text_padding}C${zws}} - - # Add block height to info height. - ((info_height+=block_range[1]>7?block_height+2:block_height+1)) - - case $col_offset in - "auto") printf '\n\e[%bC%b\n' "$text_padding" "${zws}${cols}" ;; - *) printf '\n\e[%bC%b\n' "$col_offset" "${zws}${cols}" ;; - esac - fi - - unset -v blocks blocks2 cols - - # Tell info() that we printed manually. - prin=1 -} - -# IMAGES - -image_backend() { - [[ "$image_backend" != "off" ]] && ! type -p convert &>/dev/null && \ - { image_backend="ascii"; err "Image: Imagemagick not found, falling back to ascii mode."; } - - case ${image_backend:-off} in - "ascii") print_ascii ;; - "off") image_backend="off" ;; - - "caca" | "catimg" | "chafa" | "jp2a" | "iterm2" | "termpix" |\ - "tycat" | "w3m" | "sixel" | "pixterm" | "kitty" | "pot", | "ueberzug" |\ - "viu") - get_image_source - - [[ ! -f "$image" ]] && { - to_ascii "Image: '$image_source' doesn't exist, falling back to ascii mode." - return - } - [[ "$image_backend" == "ueberzug" ]] && wait=true; - - get_window_size - - ((term_width < 1)) && { - to_ascii "Image: Failed to find terminal window size." - err "Image: Check the 'Images in the terminal' wiki page for more info," - return - } - - printf '\e[2J\e[H' - get_image_size - make_thumbnail - display_image || to_off "Image: $image_backend failed to display the image." - ;; - - *) - err "Image: Unknown image backend specified '$image_backend'." - err "Image: Valid backends are: 'ascii', 'caca', 'catimg', 'chafa', 'jp2a', 'iterm2', - 'kitty', 'off', 'sixel', 'pot', 'pixterm', 'termpix', - 'tycat', 'w3m', 'viu')" - err "Image: Falling back to ascii mode." - print_ascii - ;; - esac - - # Set cursor position next image/ascii. - [[ "$image_backend" != "off" ]] && printf '\e[%sA\e[9999999D' "${lines:-0}" -} - -print_ascii() { - if [[ -f "$image_source" && ! "$image_source" =~ (png|jpg|jpeg|jpe|svg|gif) ]]; then - ascii_data="$(< "$image_source")" - elif [[ "$image_source" == "ascii" || $image_source == auto ]]; then - : - else - ascii_data="$image_source" - fi - - # Set locale to get correct padding. - LC_ALL="$sys_locale" - - # Calculate size of ascii file in line length / line count. - while IFS=$'\n' read -r line; do - line=${line//\\\\/\\} - line=${line//█/ } - ((++lines,${#line}>ascii_len)) && ascii_len="${#line}" - done <<< "${ascii_data//\$\{??\}}" - - # Fallback if file not found. - ((lines==1)) && { - lines= - ascii_len= - image_source=auto - get_distro_ascii - print_ascii - return - } - - # Colors. - ascii_data="${ascii_data//\$\{c1\}/$c1}" - ascii_data="${ascii_data//\$\{c2\}/$c2}" - ascii_data="${ascii_data//\$\{c3\}/$c3}" - ascii_data="${ascii_data//\$\{c4\}/$c4}" - ascii_data="${ascii_data//\$\{c5\}/$c5}" - ascii_data="${ascii_data//\$\{c6\}/$c6}" - - ((text_padding=ascii_len+gap)) - printf '%b\n' "$ascii_data${reset}" - LC_ALL=C -} - -get_image_source() { - case $image_source in - "auto" | "wall" | "wallpaper") - get_wallpaper - ;; - - *) - # Get the absolute path. - image_source="$(get_full_path "$image_source")" - - if [[ -d "$image_source" ]]; then - shopt -s nullglob - files=("${image_source%/}"/*.{png,jpg,jpeg,jpe,gif,svg}) - shopt -u nullglob - image="${files[RANDOM % ${#files[@]}]}" - - else - image="$image_source" - fi - ;; - esac - - err "Image: Using image '$image'" -} - -get_wallpaper() { - case $os in - *) - # Get DE if user has disabled the function. - ((de_run != 1)) && get_de - - type -p wal >/dev/null && [[ -f "${HOME}/.cache/wal/wal" ]] && \ - { image="$(< "${HOME}/.cache/wal/wal")"; return; } - - case $de in - "MATE"*) - image="$(gsettings get org.mate.background picture-filename)" - ;; - - "Xfce"*) - image="$(xfconf-query -c xfce4-desktop -p \ - "/backdrop/screen0/monitor0/workspace0/last-image")" - ;; - - "Cinnamon"*) - image="$(gsettings get org.cinnamon.desktop.background picture-uri)" - image="$(decode_url "$image")" - ;; - - "GNOME"*) - image="$(gsettings get org.gnome.desktop.background picture-uri)" - image="$(decode_url "$image")" - ;; - - "Plasma"*) - image=$XDG_CONFIG_HOME/plasma-org.kde.plasma.desktop-appletsrc - image=$(awk -F '=' '$1 == "Image" { print $2 }' "$image") - ;; - - "LXQt"*) - image="$XDG_CONFIG_HOME/pcmanfm-qt/lxqt/settings.conf" - image="$(awk -F '=' '$1 == "Wallpaper" {print $2}' "$image")" - ;; - - *) - if type -p feh >/dev/null && [[ -f "${HOME}/.fehbg" ]]; then - image="$(awk -F\' '/feh/ {printf $(NF-1)}' "${HOME}/.fehbg")" - - elif type -p setroot >/dev/null && \ - [[ -f "${XDG_CONFIG_HOME}/setroot/.setroot-restore" ]]; then - image="$(awk -F\' '/setroot/ {printf $(NF-1)}' \ - "${XDG_CONFIG_HOME}/setroot/.setroot-restore")" - - elif type -p nitrogen >/dev/null; then - image="$(awk -F'=' '/file/ {printf $2;exit;}' \ - "${XDG_CONFIG_HOME}/nitrogen/bg-saved.cfg")" - - else - image="$(gsettings get org.gnome.desktop.background picture-uri)" - image="$(decode_url "$image")" - fi - ;; - esac - - # Strip un-needed info from the path. - image="${image/file:\/\/}" - image="$(trim_quotes "$image")" - ;; - esac - - # If image is an xml file, don't use it. - [[ "${image/*\./}" == "xml" ]] && image="" -} - -get_w3m_img_path() { - # Find w3m-img path. - shopt -s nullglob - w3m_paths=({/usr/{local/,},~/.nix-profile/}{lib,libexec,lib64,libexec64}/w3m/w3mi*) - shopt -u nullglob - - [[ -x "${w3m_paths[0]}" ]] && \ - { w3m_img_path="${w3m_paths[0]}"; return; } - - err "Image: w3m-img wasn't found on your system" -} - -get_window_size() { - # This functions gets the current window size in - # pixels. - # - # We first try to use the escape sequence "\033[14t" - # to get the terminal window size in pixels. If this - # fails we then fallback to using "xdotool" or other - # programs. - - # Tmux has a special way of reading escape sequences - # so we have to use a slightly different sequence to - # get the terminal size. - if [[ "$image_backend" == "tycat" ]]; then - printf '%b' '\e}qs\000' - - elif [[ -z $VTE_VERSION ]]; then - case ${TMUX:-null} in - "null") printf '%b' '\e[14t' ;; - *) printf '%b' '\ePtmux;\e\e[14t\e\\ ' ;; - esac - fi - - # The escape codes above print the desired output as - # user input so we have to use read to store the out - # -put as a variable. - # The 1 second timeout is required for older bash - # - # False positive. - # shellcheck disable=2141 - case $bash_version in - 4|5) IFS=';t' read -d t -t 0.05 -sra term_size ;; - *) IFS=';t' read -d t -t 1 -sra term_size ;; - esac - unset IFS - - # Split the string into height/width. - if [[ "$image_backend" == "tycat" ]]; then - term_width="$((term_size[2] * term_size[0]))" - term_height="$((term_size[3] * term_size[1]))" - - else - term_height="${term_size[1]}" - term_width="${term_size[2]}" - fi - - # Get terminal width/height. - if (( "${term_width:-0}" < 50 )) && [[ "$DISPLAY" && $os != "Mac OS X" && $os != "macOS" ]]; then - if type -p xdotool &>/dev/null; then - IFS=$'\n' read -d "" -ra win \ - <<< "$(xdotool getactivewindow getwindowgeometry --shell %1)" - term_width="${win[3]/WIDTH=}" - term_height="${win[4]/HEIGHT=}" - - elif type -p xwininfo &>/dev/null; then - # Get the focused window's ID. - if type -p xdo &>/dev/null; then - current_window="$(xdo id)" - - elif type -p xprop &>/dev/null; then - current_window="$(xprop -root _NET_ACTIVE_WINDOW)" - current_window="${current_window##* }" - - elif type -p xdpyinfo &>/dev/null; then - current_window="$(xdpyinfo | grep -F "focus:")" - current_window="${current_window/*window }" - current_window="${current_window/,*}" - fi - - # If the ID was found get the window size. - if [[ "$current_window" ]]; then - term_size=("$(xwininfo -id "$current_window")") - term_width="${term_size[0]#*Width: }" - term_width="${term_width/$'\n'*}" - term_height="${term_size[0]/*Height: }" - term_height="${term_height/$'\n'*}" - fi - fi - fi - - term_width="${term_width:-0}" -} - - -get_term_size() { - # Get the terminal size in cells. - read -r lines columns <<< "$(stty size)" - - # Calculate font size. - font_width="$((term_width / columns))" - font_height="$((term_height / lines))" -} - -get_image_size() { - # This functions determines the size to make the thumbnail image. - get_term_size - - case $image_size in - "auto") - image_size="$((columns * font_width / 2))" - term_height="$((term_height - term_height / 4))" - - ((term_height < image_size)) && \ - image_size="$term_height" - ;; - - *"%") - percent="${image_size/\%}" - image_size="$((percent * term_width / 100))" - - (((percent * term_height / 50) < image_size)) && \ - image_size="$((percent * term_height / 100))" - ;; - - "none") - # Get image size so that we can do a better crop. - read -r width height <<< "$(identify -format "%w %h" "$image")" - - while ((width >= (term_width / 2) || height >= term_height)); do - ((width=width/2,height=height/2)) - done - - crop_mode="none" - ;; - - *) image_size="${image_size/px}" ;; - esac - - # Check for terminal padding. - [[ "$image_backend" == "w3m" ]] && term_padding - - width="${width:-$image_size}" - height="${height:-$image_size}" - text_padding="$(((width + padding + xoffset) / font_width + gap))" -} - -make_thumbnail() { - # Name the thumbnail using variables so we can - # use it later. - image_name="${crop_mode}-${crop_offset}-${width}-${height}-${image//\/}" - - # Handle file extensions. - case ${image##*.} in - "eps"|"pdf"|"svg"|"gif"|"png") - image_name+=".png" ;; - *) image_name+=".jpg" ;; - esac - - # Create the thumbnail dir if it doesn't exist. - mkdir -p "${thumbnail_dir:=${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch}" - - if [[ ! -f "${thumbnail_dir}/${image_name}" ]]; then - # Get image size so that we can do a better crop. - [[ -z "$size" ]] && { - read -r og_width og_height <<< "$(identify -format "%w %h" "$image")" - ((og_height > og_width)) && size="$og_width" || size="$og_height" - } - - case $crop_mode in - "fit") - c="$(convert "$image" \ - -colorspace srgb \ - -format "%[pixel:p{0,0}]" info:)" - - convert \ - -background none \ - "$image" \ - -trim +repage \ - -gravity south \ - -background "$c" \ - -extent "${size}x${size}" \ - -scale "${width}x${height}" \ - "${thumbnail_dir}/${image_name}" - ;; - - "fill") - convert \ - -background none \ - "$image" \ - -trim +repage \ - -scale "${width}x${height}^" \ - -extent "${width}x${height}" \ - "${thumbnail_dir}/${image_name}" - ;; - - "none") - cp "$image" "${thumbnail_dir}/${image_name}" - ;; - - *) - convert \ - -background none \ - "$image" \ - -strip \ - -gravity "$crop_offset" \ - -crop "${size}x${size}+0+0" \ - -scale "${width}x${height}" \ - "${thumbnail_dir}/${image_name}" - ;; - esac - fi - - # The final image. - image="${thumbnail_dir}/${image_name}" -} - -display_image() { - case $image_backend in - "caca") - img2txt \ - -W "$((width / font_width))" \ - -H "$((height / font_height))" \ - --gamma=0.6 \ - "$image" - ;; - - - "ueberzug") - if [ "$wait" = true ];then - wait=false; - else - ueberzug layer --parser bash 0< <( - declare -Ap ADD=(\ - [action]="add"\ - [identifier]="neofetch"\ - [x]=$xoffset [y]=$yoffset\ - [path]=$image\ - ) - read -rs - ) - fi - ;; - - "catimg") - catimg -w "$((width*catimg_size / font_width))" -r "$catimg_size" "$image" - ;; - - "chafa") - chafa --stretch --size="$((width / font_width))x$((height / font_height))" "$image" - ;; - - "jp2a") - jp2a \ - --colors \ - --width="$((width / font_width))" \ - --height="$((height / font_height))" \ - "$image" - ;; - - "kitty") - kitty +kitten icat \ - --align left \ - --place "$((width/font_width))x$((height/font_height))@${xoffset}x${yoffset}" \ - "$image" - ;; - - "pot") - pot \ - "$image" \ - --size="$((width / font_width))x$((height / font_height))" - ;; - - "pixterm") - pixterm \ - -tc "$((width / font_width))" \ - -tr "$((height / font_height))" \ - "$image" - ;; - - "sixel") - img2sixel \ - -w "$width" \ - -h "$height" \ - "$image" - ;; - - "termpix") - termpix \ - --width "$((width / font_width))" \ - --height "$((height / font_height))" \ - "$image" - ;; - - "iterm2") - printf -v iterm_cmd '\e]1337;File=width=%spx;height=%spx;inline=1:%s' \ - "$width" "$height" "$(base64 < "$image")" - - # Tmux requires an additional escape sequence for this to work. - [[ -n "$TMUX" ]] && printf -v iterm_cmd '\ePtmux;\e%b\e'\\ "$iterm_cmd" - - printf '%b\a\n' "$iterm_cmd" - ;; - - "tycat") - tycat \ - -g "${width}x${height}" \ - "$image" - ;; - - "viu") - viu \ - -t -w "$((width / font_width))" -h "$((height / font_height))" \ - "$image" - ;; - - "w3m") - get_w3m_img_path - zws='\xE2\x80\x8B\x20' - - # Add a tiny delay to fix issues with images not - # appearing in specific terminal emulators. - ((bash_version>3)) && sleep 0.05 - printf '%b\n%s;\n%s\n' "0;1;$xoffset;$yoffset;$width;$height;;;;;$image" 3 4 |\ - "${w3m_img_path:-false}" -bg "$background_color" &>/dev/null - ;; - esac -} - -to_ascii() { - err "$1" - image_backend="ascii" - print_ascii - - # Set cursor position next image/ascii. - printf '\e[%sA\e[9999999D' "${lines:-0}" -} - -to_off() { - err "$1" - image_backend="off" - text_padding= -} - - -# TEXT FORMATTING - -info() { - # Save subtitle value. - [[ "$2" ]] && subtitle="$1" - - # Make sure that $prin is unset. - unset -v prin - - # Call the function. - "get_${2:-$1}" - - # If the get_func function called 'prin' directly, stop here. - [[ "$prin" ]] && return - - # Update the variable. - if [[ "$2" ]]; then - output="$(trim "${!2}")" - else - output="$(trim "${!1}")" - fi - - if [[ "$2" && "${output// }" ]]; then - prin "$1" "$output" - - elif [[ "${output// }" ]]; then - prin "$output" - - else - err "Info: Couldn't detect ${1}." - fi - - unset -v subtitle -} - -prin() { - # If $2 doesn't exist we format $1 as info. - if [[ "$(trim "$1")" && "$2" ]]; then - [[ "$json" ]] && { printf ' %s\n' "\"${1}\": \"${2}\","; return; } - - string="${1}${2:+: $2}" - else - string="${2:-$1}" - local subtitle_color="$info_color" - fi - - string="$(trim "${string//$'\e[0m'}")" - length="$(strip_sequences "$string")" - length="${#length}" - - # Format the output. - string="${string/:/${reset}${colon_color}${separator:=:}${info_color}}" - string="${subtitle_color}${bold}${string}" - - # Print the info. - printf '%b\n' "${text_padding:+\e[${text_padding}C}${zws}${string//\\n}${reset} " - - # Calculate info height. - ((++info_height)) - - # Log that prin was used. - prin=1 -} - -get_underline() { - [[ "$underline_enabled" == "on" ]] && { - printf -v underline "%${length}s" - printf '%b%b\n' "${text_padding:+\e[${text_padding}C}${zws}${underline_color}" \ - "${underline// /$underline_char}${reset} " - } - - ((++info_height)) - length= - prin=1 -} - -get_bold() { - case $ascii_bold in - "on") ascii_bold='\e[1m' ;; - "off") ascii_bold="" ;; - esac - - case $bold in - "on") bold='\e[1m' ;; - "off") bold="" ;; - esac -} - -trim() { - set -f - # shellcheck disable=2048,2086 - set -- $* - printf '%s\n' "${*//[[:space:]]/}" - set +f -} - -trim_quotes() { - trim_output="${1//\'}" - trim_output="${trim_output//\"}" - printf "%s" "$trim_output" -} - -strip_sequences() { - strip="${1//$'\e['3[0-9]m}" - strip="${strip//$'\e['[0-9]m}" - strip="${strip//\\e\[[0-9]m}" - strip="${strip//$'\e['38\;5\;[0-9]m}" - strip="${strip//$'\e['38\;5\;[0-9][0-9]m}" - strip="${strip//$'\e['38\;5\;[0-9][0-9][0-9]m}" - - printf '%s\n' "$strip" -} - -# COLORS - -set_colors() { - 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}" - - [[ "$color_text" != "off" ]] && set_text_colors "$@" -} - -set_text_colors() { - if [[ "${colors[0]}" == "distro" ]]; then - title_color="$(color "$1")" - at_color="$reset" - underline_color="$reset" - subtitle_color="$(color "$2")" - colon_color="$reset" - info_color="$reset" - - # If the ascii art uses 8 as a color, make the text the fg. - ((${1:-1} == 8)) && title_color="$reset" - ((${2:-7} == 8)) && subtitle_color="$reset" - - # If the second color is white use the first for the subtitle. - ((${2:-7} == 7)) && subtitle_color="$(color "$1")" - ((${1:-1} == 7)) && title_color="$reset" - else - 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]}")" - fi - - # Bar colors. - if [[ "$bar_color_elapsed" == "distro" ]]; then - bar_color_elapsed="$(color fg)" - else - bar_color_elapsed="$(color "$bar_color_elapsed")" - fi - - case ${bar_color_total}${1} in - distro[736]) bar_color_total=$(color "$1") ;; - distro[0-9]) bar_color_total=$(color "$2") ;; - *) bar_color_total=$(color "$bar_color_total") ;; - esac -} - -color() { - case $1 in - [0-6]) printf '%b\e[3%sm' "$reset" "$1" ;; - 7 | "fg") printf '\e[37m%b' "$reset" ;; - *) printf '\e[38;5;%bm' "$1" ;; - esac -} - -# OTHER - -stdout() { - image_backend="off" - unset subtitle_color colon_color info_color underline_color bold title_color at_color \ - text_padding zws reset color_blocks bar_color_elapsed bar_color_total \ - c1 c2 c3 c4 c5 c6 c7 c8 -} - -err() { - err+="$(color 1)[!]${reset} $1 -" -} - -get_full_path() { - # This function finds the absolute path from a relative one. - # For example "Pictures/Wallpapers" --> "/home/dylan/Pictures/Wallpapers" - - # If the file exists in the current directory, stop here. - [[ -f "${PWD}/${1}" ]] && { printf '%s\n' "${PWD}/${1}"; return; } - - ! cd "${1%/*}" && { - err "Error: Directory '${1%/*}' doesn't exist or is inaccessible" - err " Check that the directory exists or try another directory." - exit 1 - } - - local full_dir="${1##*/}" - - # Iterate down a (possible) chain of symlinks. - while [[ -L "$full_dir" ]]; do - full_dir="$(readlink "$full_dir")" - cd "${full_dir%/*}" || exit - full_dir="${full_dir##*/}" - done - - # Final directory. - full_dir="$(pwd -P)/${1/*\/}" - - [[ -e "$full_dir" ]] && printf '%s\n' "$full_dir" -} - -get_user_config() { - # --config /path/to/config.conf - if [[ -f "$config_file" ]]; then - source "$config_file" - err "Config: Sourced user config. (${config_file})" - return - - elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config.conf" ]]; then - source "${XDG_CONFIG_HOME}/neofetch/config.conf" - err "Config: Sourced user config. (${XDG_CONFIG_HOME}/neofetch/config.conf)" - - elif [[ -f "${XDG_CONFIG_HOME}/neofetch/config" ]]; then - source "${XDG_CONFIG_HOME}/neofetch/config" - err "Config: Sourced user config. (${XDG_CONFIG_HOME}/neofetch/config)" - - elif [[ -z "$no_config" ]]; then - config_file="${XDG_CONFIG_HOME}/neofetch/config.conf" - - # The config file doesn't exist, create it. - mkdir -p "${XDG_CONFIG_HOME}/neofetch/" - printf '%s\n' "$config" > "$config_file" - fi -} - -bar() { - # Get the values. - elapsed="$(($1 * bar_length / $2))" - - # Create the bar with spaces. - printf -v prog "%${elapsed}s" - printf -v total "%$((bar_length - elapsed))s" - - # Set the colors and swap the spaces for $bar_char_. - bar+="${bar_color_elapsed}${prog// /${bar_char_elapsed}}" - bar+="${bar_color_total}${total// /${bar_char_total}}" - - # Borders. - [[ "$bar_border" == "on" ]] && \ - bar="$(color fg)[${bar}$(color fg)]" - - printf "%b" "${bar}${info_color}" -} - -cache() { - if [[ "$2" ]]; then - mkdir -p "${cache_dir}/neofetch" - printf "%s" "${1/*-}=\"$2\"" > "${cache_dir}/neofetch/${1/*-}" - fi -} - -get_cache_dir() { - case $os in - "Mac OS X"|"macOS") cache_dir="/Library/Caches" ;; - *) cache_dir="/tmp" ;; - esac -} - -kde_config_dir() { - # If the user is using KDE get the KDE - # configuration directory. - if [[ "$kde_config_dir" ]]; then - return - - elif type -p kf5-config &>/dev/null; then - kde_config_dir="$(kf5-config --path config)" - - elif type -p kde4-config &>/dev/null; then - kde_config_dir="$(kde4-config --path config)" - - elif type -p kde-config &>/dev/null; then - kde_config_dir="$(kde-config --path config)" - - elif [[ -d "${HOME}/.kde4" ]]; then - kde_config_dir="${HOME}/.kde4/share/config" - - elif [[ -d "${HOME}/.kde3" ]]; then - kde_config_dir="${HOME}/.kde3/share/config" - fi - - kde_config_dir="${kde_config_dir/$'/:'*}" -} - -term_padding() { - # Get terminal padding to properly align cursor. - [[ -z "$term" ]] && get_term - - case $term in - urxvt*|rxvt-unicode) - [[ $xrdb ]] || xrdb=$(xrdb -query) - - [[ $xrdb != *internalBorder:* ]] && - return - - padding=${xrdb/*internalBorder:} - padding=${padding/$'\n'*} - - [[ $padding =~ ^[0-9]+$ ]] || - padding= - ;; - esac -} - -dynamic_prompt() { - [[ "$image_backend" == "off" ]] && { printf '\n'; return; } - [[ "$image_backend" != "ascii" ]] && ((lines=(height + yoffset) / font_height + 1)) - [[ "$image_backend" == "w3m" ]] && ((lines=lines + padding / font_height + 1)) - - # If the ascii art is taller than the info. - ((lines=lines>info_height?lines-info_height+1:1)) - - printf -v nlines "%${lines}s" - printf "%b" "${nlines// /\\n}" -} - -cache_uname() { - # Cache the output of uname so we don't - # have to spawn it multiple times. - IFS=" " read -ra uname <<< "$(uname -srm)" - - kernel_name="${uname[0]}" - kernel_version="${uname[1]}" - kernel_machine="${uname[2]}" - - if [[ "$kernel_name" == "Darwin" ]]; then - # macOS can report incorrect versions unless this is 0. - # https://github.com/dylanaraps/neofetch/issues/1607 - export SYSTEM_VERSION_COMPAT=0 - - IFS=$'\n' read -d "" -ra sw_vers <<< "$(awk -F'<|>' '/key|string/ {print $3}' \ - "/System/Library/CoreServices/SystemVersion.plist")" - for ((i=0;i<${#sw_vers[@]};i+=2)) { - case ${sw_vers[i]} in - ProductName) darwin_name=${sw_vers[i+1]} ;; - ProductVersion) osx_version=${sw_vers[i+1]} ;; - ProductBuildVersion) osx_build=${sw_vers[i+1]} ;; - esac - } - fi -} - -get_ppid() { - # Get parent process ID of PID. - case $os in - "Windows") - ppid="$(ps -p "${1:-$PPID}" | awk '{printf $2}')" - ppid="${ppid/PPID}" - ;; - - "Linux") - ppid="$(grep -i -F "PPid:" "/proc/${1:-$PPID}/status")" - ppid="$(trim "${ppid/PPid:}")" - ;; - - *) - ppid="$(ps -p "${1:-$PPID}" -o ppid=)" - ;; - esac - - printf "%s" "$ppid" -} - -get_process_name() { - # Get PID name. - case $os in - "Windows") - name="$(ps -p "${1:-$PPID}" | awk '{printf $8}')" - name="${name/COMMAND}" - name="${name/*\/}" - ;; - - "Linux") - name="$(< "/proc/${1:-$PPID}/comm")" - ;; - - *) - name="$(ps -p "${1:-$PPID}" -o comm=)" - ;; - esac - - printf "%s" "$name" -} - -decode_url() { - decode="${1//+/ }" - printf "%b" "${decode//%/\\x}" -} - -# FINISH UP - -usage() { printf "%s" "\ -Usage: neofetch func_name --option \"value\" --option \"value\" - -Neofetch is a CLI system information tool written in BASH. Neofetch -displays information about your system next to an image, your OS logo, -or any ASCII file of your choice. - -NOTE: Every launch flag has a config option. - -Options: - -INFO: - func_name Specify a function name (second part of info() from config) to - quickly display only that function's information. - - Example: neofetch uptime --uptime_shorthand tiny - - Example: neofetch uptime disk wm memory - - This can be used in bars and scripts like so: - - memory=\"\$(neofetch memory)\"; memory=\"\${memory##*: }\" - - For multiple outputs at once (each line of info in an array): - - IFS=\$'\\n' read -d \"\" -ra info < <(neofetch memory uptime wm) - - info=(\"\${info[@]##*: }\") - - --disable infoname Allows you to disable an info line from appearing - in the output. 'infoname' is the function name from the - 'print_info()' function inside the config file. - For example: 'info \"Memory\" memory' would be '--disable memory' - - NOTE: You can supply multiple args. eg. 'neofetch --disable cpu gpu' - - --title_fqdn on/off Hide/Show Fully Qualified Domain Name in title. - --package_managers on/off Hide/Show Package Manager names . (on, tiny, off) - --os_arch on/off Hide/Show OS architecture. - --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 supports Linux with cpufreq. - - --speed_shorthand on/off Whether or not to show decimals in CPU speed. - - NOTE: This flag is not supported in systems with CPU speed less than - 1 GHz. - - --cpu_brand on/off Enable/Disable CPU brand in output. - --cpu_cores type Whether or not to display the number of CPU cores - Possible values: logical, physical, off - - NOTE: 'physical' doesn't work on BSD. - - --cpu_speed on/off Hide/Show cpu speed. - --cpu_temp C/F/off Hide/Show cpu temperature. - - NOTE: This only works on Linux and BSD. - - NOTE: For FreeBSD and NetBSD-based systems, you need to enable - coretemp kernel module. This only supports newer Intel processors. - - --distro_shorthand on/off Shorten the output of distro (on, tiny, off) - - NOTE: This option won't work in Windows (Cygwin) - - --kernel_shorthand on/off Shorten the output of kernel - - NOTE: This option won't work in BSDs (except PacBSD and PC-BSD) - - --uptime_shorthand on/off Shorten the output of uptime (on, tiny, off) - --refresh_rate on/off Whether to display the refresh rate of each monitor - Unsupported on Windows - --gpu_brand on/off Enable/Disable GPU brand in output. (AMD/NVIDIA/Intel) - --gpu_type type Which GPU to display. (all, dedicated, integrated) - - NOTE: This only supports Linux. - - --de_version on/off Show/Hide Desktop Environment version - --gtk_shorthand on/off Shorten output of gtk theme/icons - --gtk2 on/off Enable/Disable gtk2 theme/font/icons output - --gtk3 on/off Enable/Disable gtk3 theme/font/icons output - --shell_path on/off Enable/Disable showing \$SHELL path - --shell_version on/off Enable/Disable showing \$SHELL version - --disk_show value Which disks to display. - Possible values: '/', '/dev/sdXX', '/path/to/mount point' - - NOTE: Multiple values can be given. (--disk_show '/' '/dev/sdc1') - - --disk_subtitle type What information to append to the Disk subtitle. - Takes: name, mount, dir, none - - 'name' shows the disk's name (sda1, sda2, etc) - - 'mount' shows the disk's mount point (/, /mnt/Local Disk, etc) - - 'dir' shows the basename of the disks's path. (/, Local Disk, etc) - - 'none' shows only 'Disk' or the configured title. - - --disk_percent on/off Hide/Show disk percent. - - --ip_host url URL to query for public IP - --ip_timeout int Public IP timeout (in seconds). - --ip_interface value Interface(s) to use for local IP - --song_format format Print the song data in a specific format (see config file). - --song_shorthand on/off Print the Artist/Album/Title on separate lines. - --memory_percent on/off Display memory percentage. - --memory_unit kib/mib/gib Memory output unit. - --music_player player-name Manually specify a player to use. - Available values are listed in the config file - -TEXT FORMATTING: - --colors x x x x x x Changes the text colors in this order: - title, @, underline, subtitle, colon, info - --underline on/off Enable/Disable the underline. - --underline_char char Character to use when underlining title - --bold on/off Enable/Disable bold text - --separator string Changes the default ':' separator to the specified string. - -COLOR BLOCKS: - --color_blocks on/off Enable/Disable the color blocks - --col_offset auto/num Left-padding of color blocks - --block_width num Width of color blocks in spaces - --block_height num Height of color blocks in lines - --block_range num num Range of colors to print as blocks - -BARS: - --bar_char 'elapsed char' 'total char' - Characters to use when drawing bars. - --bar_border on/off Whether or not to surround the bar with '[]' - --bar_length num Length in spaces to make the bars. - --bar_colors num num Colors to make the bar. - Set in this order: elapsed, total - --memory_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --battery_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - --disk_display mode Bar mode. - Possible values: bar, infobar, barinfo, off - -IMAGE BACKEND: - --backend backend Which image backend to use. - Possible values: 'ascii', 'caca', 'catimg', 'chafa', 'jp2a', - 'iterm2', 'off', 'sixel', 'tycat', 'w3m', 'kitty', 'viu' - --source source Which image or ascii file to use. - Possible values: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/', 'command output' [ascii] - - --ascii source Shortcut to use 'ascii' backend. - - NEW: neofetch --ascii \"\$(fortune | cowsay -W 30)\" - - --caca source Shortcut to use 'caca' backend. - --catimg source Shortcut to use 'catimg' backend. - --chafa source Shortcut to use 'chafa' backend. - --iterm2 source Shortcut to use 'iterm2' backend. - --jp2a source Shortcut to use 'jp2a' backend. - --kitty source Shortcut to use 'kitty' backend. - --pot source Shortcut to use 'pot' backend. - --pixterm source Shortcut to use 'pixterm' backend. - --sixel source Shortcut to use 'sixel' backend. - --termpix source Shortcut to use 'termpix' backend. - --tycat source Shortcut to use 'tycat' backend. - --w3m source Shortcut to use 'w3m' backend. - --ueberzug source Shortcut to use 'ueberzug' backend - --viu source Shortcut to use 'viu' backend - --off Shortcut to use 'off' backend (Disable ascii art). - - NOTE: 'source; can be any of the following: 'auto', 'ascii', 'wallpaper', '/path/to/img', - '/path/to/ascii', '/path/to/dir/' - -ASCII: - --ascii_colors x x x x x x Colors to print the ascii art - --ascii_distro distro Which Distro's ascii art to print - - NOTE: AIX, Hash, Alpine, AlterLinux, Amazon, Anarchy, Android, - instantOS, Antergos, antiX, \"AOSC OS\", \"AOSC OS/Retro\", - Apricity, ArchCraft, ArcoLinux, ArchBox, ARCHlabs, ArchStrike, - XFerience, ArchMerge, Arch, Artix, Arya, Bedrock, Bitrig, - BlackArch, BLAG, BlankOn, BlueLight, Bodhi, bonsai, BSD, BunsenLabs, - Calculate, Carbs, CentOS, Chakra, ChaletOS, Chapeau, Chrom, - Cleanjaro, ClearOS, Clear_Linux, Clover, Condres, Container_Linux, - Crystal Linux, CRUX, Cucumber, dahlia, Debian, Deepin, DesaOS, Devuan, - DracOS, DarkOs, Itc, DragonFly, Drauger, Elementary, EndeavourOS, Endless, - EuroLinux, Exherbo, Fedora, Feren, FreeBSD, FreeMiNT, Frugalware, - Funtoo, GalliumOS, Garuda, Gentoo, Pentoo, gNewSense, GNOME, GNU, - GoboLinux, Grombyang, Guix, Haiku, Huayra, Hyperbola, iglunix, janus, Kali, - KaOS, KDE_neon, Kibojoe, Kogaion, Korora, KSLinux, Kubuntu, LEDE, - LaxerOS, LibreELEC, LFS, Linux_Lite, LMDE, Lubuntu, Lunar, macos, - Mageia, MagpieOS, Mandriva, Manjaro, TeArch, Maui, Mer, Minix, LinuxMint, - Live_Raizo, MX_Linux, Namib, Neptune, NetBSD, Netrunner, Nitrux, - NixOS, Nurunner, NuTyX, OBRevenge, OpenBSD, openEuler, OpenIndiana, - openmamba, OpenMandriva, OpenStage, OpenWrt, osmc, Oracle, - OS Elbrus, PacBSD, Parabola, Pardus, Parrot, Parsix, TrueOS, - PCLinuxOS, Pengwin, Peppermint, Pisi, popos, Porteus, PostMarketOS, - Proxmox, PuffOS, Puppy, PureOS, Qubes, Qubyt, Quibian, Radix, Raspbian, Reborn_OS, - Redstar, Redcore, Redhat, Refracted_Devuan, Regata, Regolith, Rosa, - sabotage, Sabayon, Sailfish, SalentOS, Scientific, Septor, - SereneLinux, SharkLinux, Siduction, Slackware, SliTaz, SmartOS, - Solus, Source_Mage, Sparky, Star, SteamOS, SunOS, openSUSE_Leap, - t2, openSUSE_Tumbleweed, openSUSE, SwagArch, Tails, Trisquel, - Ubuntu-Cinnamon, Ubuntu-Budgie, Ubuntu-GNOME, Ubuntu-MATE, - Ubuntu-Studio, Ubuntu, Univention, Venom, Void, VNux, LangitKetujuh, semc, - Obarun, windows10, Windows7, Xubuntu, Zorin, and IRIX have ascii logos. - - NOTE: Arch, Ubuntu, Redhat, Fedora and Dragonfly have 'old' logo variants. - - NOTE: Use '{distro name}_old' to use the old logos. - - NOTE: Ubuntu has flavor variants. - - NOTE: Change this to Lubuntu, Kubuntu, Xubuntu, Ubuntu-GNOME, - Ubuntu-Studio, Ubuntu-Mate or Ubuntu-Budgie to use the flavors. - - NOTE: Arcolinux, Dragonfly, Fedora, Alpine, Arch, Ubuntu, - CRUX, Debian, Gentoo, FreeBSD, Mac, NixOS, OpenBSD, android, - Artix, CentOS, Cleanjaro, ElementaryOS, GUIX, Hyperbola, - Manjaro, MXLinux, NetBSD, Parabola, POP_OS, PureOS, - Slackware, SunOS, LinuxLite, OpenSUSE, Raspbian, - postmarketOS, and Void have a smaller logo variant. - - NOTE: Use '{distro name}_small' to use the small variants. - - --ascii_bold on/off Whether or not to bold the ascii logo. - -L, --logo Hide the info text and only show the ascii logo. - -IMAGE: - --loop Redraw the image constantly until Ctrl+C is used. This fixes issues - in some terminals emulators when using image mode. - --size 00px | --size 00% How to size the image. - Possible values: auto, 00px, 00%, none - --catimg_size 1/2 Change the resolution of catimg. - --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. - --bg_color color Background color to display behind transparent image. - This only works with w3m. - --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 Delete cached files and thumbnails. - -OTHER: - --config /path/to/config Specify a path to a custom config file - --config none Launch the script without a config file - --no_config Don't create the user config file. - --print_config Print the default config file to stdout. - --stdout Turn off all colors and disables any ASCII/image backend. - --help Print this text and exit - --version Show neofetch version - -v Display error messages. - -vv Display a verbose log for error reporting. - -DEVELOPER: - --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) - - -Report bugs to https://github.com/dylanaraps/neofetch/issues - -" -exit 1 -} - -get_args() { - # Check the commandline flags early for '--config'. - [[ "$*" != *--config* && "$*" != *--no_config* ]] && get_user_config - - while [[ "$1" ]]; do - case $1 in - # Info - "--title_fqdn") title_fqdn="$2" ;; - "--package_managers") package_managers="$2" ;; - "--os_arch") os_arch="$2" ;; - "--cpu_cores") cpu_cores="$2" ;; - "--cpu_speed") cpu_speed="$2" ;; - "--speed_type") speed_type="$2" ;; - "--speed_shorthand") speed_shorthand="$2" ;; - "--distro_shorthand") distro_shorthand="$2" ;; - "--kernel_shorthand") kernel_shorthand="$2" ;; - "--uptime_shorthand") uptime_shorthand="$2" ;; - "--cpu_brand") cpu_brand="$2" ;; - "--gpu_brand") gpu_brand="$2" ;; - "--gpu_type") gpu_type="$2" ;; - "--refresh_rate") refresh_rate="$2" ;; - "--de_version") de_version="$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" ;; - "--ip_timeout") public_ip_timeout="$2" ;; - "--ip_interface") - unset local_ip_interface - for arg in "$@"; do - case "$arg" in - "--ip_interface") ;; - "-"*) break ;; - *) local_ip_interface+=("$arg") ;; - esac - done - ;; - - "--song_format") song_format="$2" ;; - "--song_shorthand") song_shorthand="$2" ;; - "--music_player") music_player="$2" ;; - "--memory_percent") memory_percent="$2" ;; - "--memory_unit") memory_unit="$2" ;; - "--cpu_temp") - cpu_temp="$2" - [[ "$cpu_temp" == "on" ]] && cpu_temp="C" - ;; - - "--disk_subtitle") disk_subtitle="$2" ;; - "--disk_percent") disk_percent="$2" ;; - "--disk_show") - unset disk_show - for arg in "$@"; do - case $arg in - "--disk_show") ;; - "-"*) break ;; - *) disk_show+=("$arg") ;; - esac - done - ;; - - "--disable") - for func in "$@"; do - case $func in - "--disable") continue ;; - "-"*) break ;; - *) - ((bash_version >= 4)) && func="${func,,}" - unset -f "get_$func" - ;; - esac - done - ;; - - # Text Colors - "--colors") - unset colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case $arg in - "-"*) break ;; - *) colors+=("$arg") ;; - esac - done - colors+=(7 7 7 7 7 7) - ;; - - # Text Formatting - "--underline") underline_enabled="$2" ;; - "--underline_char") underline_char="$2" ;; - "--bold") bold="$2" ;; - "--separator") separator="$2" ;; - - # Color Blocks - "--color_blocks") color_blocks="$2" ;; - "--block_range") block_range=("$2" "$3") ;; - "--block_width") block_width="$2" ;; - "--block_height") block_height="$2" ;; - "--col_offset") col_offset="$2" ;; - - # Bars - "--bar_char") - bar_char_elapsed="$2" - bar_char_total="$3" - ;; - - "--bar_border") bar_border="$2" ;; - "--bar_length") bar_length="$2" ;; - "--bar_colors") - bar_color_elapsed="$2" - bar_color_total="$3" - ;; - - "--memory_display") memory_display="$2" ;; - "--battery_display") battery_display="$2" ;; - "--disk_display") disk_display="$2" ;; - - # Image backend - "--backend") image_backend="$2" ;; - "--source") image_source="$2" ;; - "--ascii" | "--caca" | "--catimg" | "--chafa" | "--jp2a" | "--iterm2" | "--off" |\ - "--pot" | "--pixterm" | "--sixel" | "--termpix" | "--tycat" | "--w3m" | "--kitty" |\ - "--ueberzug" | "--viu") - image_backend="${1/--}" - case $2 in - "-"* | "") ;; - *) image_source="$2" ;; - esac - ;; - - # Image options - "--loop") image_loop="on" ;; - "--image_size" | "--size") image_size="$2" ;; - "--catimg_size") catimg_size="$2" ;; - "--crop_mode") crop_mode="$2" ;; - "--crop_offset") crop_offset="$2" ;; - "--xoffset") xoffset="$2" ;; - "--yoffset") yoffset="$2" ;; - "--background_color" | "--bg_color") background_color="$2" ;; - "--gap") gap="$2" ;; - "--clean") - [[ -d "$thumbnail_dir" ]] && rm -rf "$thumbnail_dir" - rm -rf "/Library/Caches/neofetch/" - rm -rf "/tmp/neofetch/" - exit - ;; - - "--ascii_colors") - unset ascii_colors - for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do - case $arg in - "-"*) break ;; - *) ascii_colors+=("$arg") - esac - done - ascii_colors+=(7 7 7 7 7 7) - ;; - - "--ascii_distro") - image_backend="ascii" - ascii_distro="$2" - ;; - - "--ascii_bold") ascii_bold="$2" ;; - "--logo" | "-L") - image_backend="ascii" - print_info() { printf '\n'; } - ;; - - # Other - "--config") - case $2 in - "none" | "off" | "") ;; - *) - config_file="$(get_full_path "$2")" - get_user_config - ;; - esac - ;; - "--no_config") no_config="on" ;; - "--stdout") stdout="on" ;; - "-v") verbose="on" ;; - "--print_config") printf '%s\n' "$config"; exit ;; - "-vv") set -x; verbose="on" ;; - "--help") usage ;; - "--version") - printf '%s\n' "Neofetch $version" - exit 1 - ;; - "--gen-man") - help2man -n "A fast, highly customizable system info script" \ - -N ./neofetch -o neofetch.1 - exit 1 - ;; - - "--json") - json="on" - unset -f get_title get_cols get_underline - - printf '{\n' - print_info 2>/dev/null - printf ' %s\n' "\"Version\": \"${version}\"" - printf '}\n' - exit - ;; - - "--travis") - print_info() { - info title - info underline - - info "OS" distro - info "Host" model - info "Kernel" kernel - info "Uptime" uptime - info "Packages" packages - info "Shell" shell - info "Resolution" resolution - info "DE" de - info "WM" wm - info "WM Theme" wm_theme - info "Theme" theme - info "Icons" icons - info "Terminal" term - info "Terminal Font" term_font - info "CPU" cpu - info "GPU" gpu - info "GPU Driver" gpu_driver - info "Memory" memory - - info "Disk" disk - info "Battery" battery - info "Font" font - info "Song" song - info "Local IP" local_ip - info "Public IP" public_ip - info "Users" users - - info cols - - # Testing. - prin "prin" - prin "prin" "prin" - - # Testing no subtitles. - info uptime - info disk - } - - refresh_rate="on" - shell_version="on" - memory_display="infobar" - disk_display="infobar" - cpu_temp="C" - - # Known implicit unused variables. - mpc_args=() - printf '%s\n' "$kernel $icons $font $battery $locale ${mpc_args[*]}" - ;; - esac - - shift - done -} - -get_simple() { - while [[ "$1" ]]; do - [[ "$(type -t "get_$1")" == "function" ]] && { - get_distro - stdout - simple=1 - info "$1" "$1" - } - shift - done - ((simple)) && exit -} - -old_functions() { - # Removed functions for backwards compatibility. - get_line_break() { :; } - get_cpu_usage() { :; } -} - -get_distro_ascii() { - # This function gets the distro ascii art and colors. - # - # $ascii_distro is the same as $distro. - case $(trim "$ascii_distro") in - "BigLinux"*) - set_colors 6 11 4 - read -rd '' ascii_data <<'EOF' -${c1} ... - :OWMMMNd. - :NMMMMMMMMWc - okkl. kMMMMMW0xdOWMl - : xMMMMMW. kMMMMNc lW. - :x NMMMMMO ,MMMM0. 'l - Xx "lkk" kMMMX .okx, -${c2}.MX .cc;. .xXKx. KMMM: .OMMMMMl -:MM' 'KMMMMWK: 0MMMMk xMMM. lWMMMMMMM' -cMMN:;xMMMMk::MMO oMMMMX .XMM. .KMMMWOOMMMd -'MMMMMMMMN, NMMx OMMMMl .kM0OMMMMk. ;MMd - xMMMMMMd .MMMW :NMMMd .ckKKx' KMc - dWMNd. oMMMN lkNMX, oM. - ;. ;MMMMx "MM:. cO -${c3} .X. oMMMMW. l. - dMk:..;xWMMMMW, - kMMMMMMMMMMX. - :XMMMMMMK: - ':MM:" Made in Brazil -EOF - ;; - - "XIVAStudio"*) - set_colors 4 12 4 - read -rd '' ascii_data <<'EOF' -${c3} dddddddddddddddddddd. .dddddddddddddddddddd - xxxxxxxxxxxxxxxxxxx: :xxxxxxxxxxxxxxxxxxx - xxxxxxxxxxxxxxxxxxx::xxxxxxxxxxxxxxxxxxx - dddddddddddddl cddddddddddddd - ddddddddd' .ddddddddd. - .dddddd' .dddddd. - .dddd ${c3}XIVAStudio${c3} dddd. - .oo. .oo. - ${c6};Ok${c3}oo. .oo${c6}kO; - ${c6},OKKK0${c3}koc'. .cok'${c6}0KKKO, - ${c6},kKKKKKKK0${c3}kolllcclllox${c6}0KKKKKKKk, - ${c6}'kKKKKKKKKKKK0${c3}xllllllx${c6}0KKKKKKKKKKKk, - ${c6}'kKKKKKKKKKKKKKKK0${c3}xllx${c6}0KKKKKKKKKKKKKKKk' - ${c6}'xKKKKKKKKKKKKKKKKKKd dKKKKKKKKKKKKKKKKKKk' - ${c6}.xKKKKKKKKKKKKKKKKKKx xKKKKKKKKKKKKKKKKKKx. -EOF - ;; - - esac - - # Overwrite distro colors if '$ascii_colors' doesn't - # equal 'distro'. - [[ ${ascii_colors[0]} != distro ]] && { - color_text=off - set_colors "${ascii_colors[@]}" - } -} - -main() { - cache_uname - get_os - - # Load default config. - eval "$config" - - get_args "$@" - [[ $verbose != on ]] && exec 2>/dev/null - get_simple "$@" - get_distro - get_bold - get_distro_ascii - [[ $stdout == on ]] && stdout - - # Minix doesn't support these sequences. - [[ $TERM != minix && $stdout != on ]] && { - # If the script exits for any reason, unhide the cursor. - trap 'printf "\e[?25h\e[?7h"' EXIT - - # Hide the cursor and disable line wrap. - printf '\e[?25l\e[?7l' - } - - image_backend - get_cache_dir - old_functions - print_info - dynamic_prompt - - # w3m-img: Draw the image a second time to fix - # rendering issues in specific terminal emulators. - [[ $image_backend == *w3m* ]] && display_image - [[ $image_backend == *ueberzug* ]] && display_image - - # Add neofetch info to verbose output. - err "Neofetch command: $0 $*" - err "Neofetch version: $version" - - [[ $verbose == on ]] && printf '%b\033[m' "$err" >&2 - - # If `--loop` was used, constantly redraw the image. - while [[ $image_loop == on && $image_backend == w3m ]]; do - display_image - sleep 1 - done - - return 0 -} - -main "$@"