2016-01-04 02:09:23 +00:00
|
|
|
#!/usr/bin/env bash
|
2016-01-26 12:09:38 +00:00
|
|
|
# vim:fdm=marker
|
2016-01-29 15:14:29 +00:00
|
|
|
#
|
2015-12-30 10:18:17 +00:00
|
|
|
# Fetch info about your system
|
2016-01-06 02:16:52 +00:00
|
|
|
# https://github.com/dylanaraps/fetch
|
2015-12-30 10:18:17 +00:00
|
|
|
#
|
2016-01-22 07:04:53 +00:00
|
|
|
# Required Dependencies:
|
|
|
|
# Bash 4.0+
|
|
|
|
# Text formatting, dynamic image size and padding: tput
|
|
|
|
# [Linux / BSD / Windows] Uptime detection: procps or procps-ng
|
|
|
|
#
|
2015-12-31 00:21:10 +00:00
|
|
|
# Optional Dependencies: (You'll lose these features without them)
|
2016-01-04 23:24:41 +00:00
|
|
|
# Displaying Images: w3m + w3m-img
|
2015-12-30 10:18:17 +00:00
|
|
|
# Image Cropping: ImageMagick
|
2016-01-30 09:02:20 +00:00
|
|
|
# More accurate window manager detection: wmctrl
|
2016-01-27 00:53:12 +00:00
|
|
|
# [ Linux / BSD ] Wallpaper Display: feh, nitrogen or gsettings
|
2016-01-22 07:04:53 +00:00
|
|
|
# [ Linux / BSD ] Current Song: mpc or cmus
|
|
|
|
# [ Linux / BSD ] Resolution detection: xorg-xdpyinfo
|
2015-12-30 10:18:17 +00:00
|
|
|
#
|
|
|
|
# Created by Dylan Araps
|
2016-01-05 04:02:24 +00:00
|
|
|
# https://github.com/dylanaraps/
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Speed up script by not using unicode
|
2016-02-10 11:54:07 +00:00
|
|
|
SYS_LOCALE="$LANG"
|
2016-01-03 06:54:16 +00:00
|
|
|
export LC_ALL=C
|
2016-02-04 07:42:54 +00:00
|
|
|
export LANG=C
|
2016-01-06 07:34:34 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Config Options {{{
|
|
|
|
|
|
|
|
|
|
|
|
# Info Options {{{
|
|
|
|
|
2016-01-06 07:34:34 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Info
|
2016-01-20 22:49:50 +00:00
|
|
|
# See this wiki page for more info:
|
|
|
|
# https://github.com/dylanaraps/fetch/wiki/Customizing-Info
|
2016-01-20 21:58:50 +00:00
|
|
|
printinfo () {
|
2016-01-29 11:50:26 +00:00
|
|
|
info linebreak
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
info title
|
|
|
|
info underline
|
|
|
|
|
|
|
|
info "OS" distro
|
|
|
|
info "Kernel" kernel
|
|
|
|
info "Uptime" uptime
|
|
|
|
info "Packages" packages
|
|
|
|
info "Shell" shell
|
2016-02-10 11:44:23 +00:00
|
|
|
info "Desktop Environment" de
|
|
|
|
info "Window Manager" wm
|
2016-01-20 21:58:50 +00:00
|
|
|
info "GTK Theme" gtktheme
|
|
|
|
info "Icons" gtkicons
|
|
|
|
info "CPU" cpu
|
2016-01-24 23:37:29 +00:00
|
|
|
info "GPU" gpu
|
2016-01-20 21:58:50 +00:00
|
|
|
info "Memory" memory
|
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# info "Font" gtkfont
|
2016-01-26 11:44:20 +00:00
|
|
|
# info "Disk" disk
|
|
|
|
# info "Resolution" resolution
|
2016-02-01 14:56:33 +00:00
|
|
|
# info "Battery" battery
|
2016-01-26 11:44:20 +00:00
|
|
|
# info "Song" song
|
2016-02-09 10:50:57 +00:00
|
|
|
# info "Local IP" localip
|
|
|
|
# info "Public IP" public
|
2016-01-30 12:35:52 +00:00
|
|
|
# info "Birthday" birthday
|
2016-01-26 11:44:20 +00:00
|
|
|
# info "Visual Style" visualstyle
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
info linebreak
|
|
|
|
info cols
|
2016-01-28 23:11:34 +00:00
|
|
|
info linebreak
|
2016-01-20 21:58:50 +00:00
|
|
|
}
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-01-05 04:02:24 +00:00
|
|
|
|
2016-01-28 23:26:32 +00:00
|
|
|
# Kernel
|
|
|
|
|
|
|
|
# Show more kernel info
|
|
|
|
# --kernel_shorthand on/off
|
|
|
|
kernel_shorthand="on"
|
|
|
|
|
2016-01-28 01:44:06 +00:00
|
|
|
|
2016-01-28 23:26:32 +00:00
|
|
|
# Distro
|
2016-01-28 01:44:06 +00:00
|
|
|
|
|
|
|
# Mac OS X hide/show build version
|
|
|
|
# --osx_buildversion on/off
|
|
|
|
osx_buildversion="on"
|
2016-01-05 04:02:24 +00:00
|
|
|
|
2016-02-01 03:45:53 +00:00
|
|
|
# Show 'x86_64' and 'x86' in 'Distro:' output.
|
|
|
|
# --os_arch on/off
|
|
|
|
os_arch="on"
|
2016-01-31 21:40:10 +00:00
|
|
|
|
2016-01-05 04:02:24 +00:00
|
|
|
|
2016-01-29 00:04:35 +00:00
|
|
|
# Uptime
|
|
|
|
|
|
|
|
# Shorten the output of the uptime function
|
|
|
|
# --uptime_shorthand tiny, on, off
|
|
|
|
uptime_shorthand="off"
|
|
|
|
|
|
|
|
|
|
|
|
# Shell
|
|
|
|
|
|
|
|
# Show the path to $SHELL
|
|
|
|
# --shell_path on/off
|
|
|
|
shell_path="on"
|
|
|
|
|
|
|
|
# Show $SHELL's version
|
|
|
|
# --shell_version on/off
|
|
|
|
shell_version="off"
|
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# CPU
|
|
|
|
|
|
|
|
# CPU speed type
|
2016-01-19 11:30:17 +00:00
|
|
|
# Only works on Linux with cpufreq.
|
2016-01-24 21:58:56 +00:00
|
|
|
# --speed_type current, min, max, bios,
|
|
|
|
# scaling_current, scaling_min, scaling_max
|
2016-01-03 06:54:16 +00:00
|
|
|
speed_type="max"
|
|
|
|
|
|
|
|
|
2016-01-19 02:49:30 +00:00
|
|
|
# GPU
|
|
|
|
|
|
|
|
# Shorten output of the getgpu funcion
|
|
|
|
# --gpu_shorthand on/off
|
2016-02-10 22:20:03 +00:00
|
|
|
gpu_shorthand="on"
|
2016-01-19 02:49:30 +00:00
|
|
|
|
|
|
|
|
2016-01-13 01:26:40 +00:00
|
|
|
# Gtk Theme / Icons
|
|
|
|
|
|
|
|
# Shorten output (Hide [GTK2] etc)
|
|
|
|
# --gtk_shorthand on/off
|
|
|
|
gtk_shorthand="off"
|
|
|
|
|
2016-01-19 02:49:30 +00:00
|
|
|
|
2016-01-24 23:36:42 +00:00
|
|
|
# Enable/Disable gtk2 theme/icons output
|
|
|
|
# --gtk2 on/off
|
|
|
|
gtk2="on"
|
|
|
|
|
|
|
|
# Enable/Disable gtk3 theme/icons output
|
|
|
|
# --gtk3 on/off
|
|
|
|
gtk3="on"
|
|
|
|
|
|
|
|
|
2016-02-01 22:09:31 +00:00
|
|
|
# Battery
|
|
|
|
|
|
|
|
# Which battery to display.
|
|
|
|
# By default we display all batteries.
|
2016-02-02 22:26:47 +00:00
|
|
|
# NOTE: Only works on Linux.
|
2016-02-01 22:09:31 +00:00
|
|
|
# --battery_num all, 0, 1, 2, etc
|
|
|
|
battery_num="all"
|
|
|
|
|
2016-02-02 01:01:50 +00:00
|
|
|
# Whether or not to print each battery on the same line.
|
|
|
|
# By default each battery gets its own line and title.
|
2016-02-02 22:26:47 +00:00
|
|
|
# NOTE: Only works on Linux.
|
2016-02-02 01:01:50 +00:00
|
|
|
# --battery_shorthand on/off
|
|
|
|
battery_shorthand="off"
|
|
|
|
|
2016-02-01 22:09:31 +00:00
|
|
|
|
2016-02-09 06:26:44 +00:00
|
|
|
# IP Address
|
|
|
|
|
|
|
|
# Website to ping for the public IP
|
|
|
|
# --ip_host url
|
|
|
|
public_ip_host="http://ident.me"
|
|
|
|
|
|
|
|
|
2016-01-30 11:41:58 +00:00
|
|
|
# Birthday
|
|
|
|
|
|
|
|
# Whether to show a long pretty output
|
|
|
|
# or a shortened one
|
2016-01-31 00:02:32 +00:00
|
|
|
# NOTE: Long pretty output doesn't work on OpenBSD or NetBSD.
|
2016-01-30 11:41:58 +00:00
|
|
|
# --birthday_shorthand on/off
|
|
|
|
birthday_shorthand="off"
|
|
|
|
|
|
|
|
# Whether to show the time in the output
|
|
|
|
# --birthday_time on/off
|
|
|
|
birthday_time="on"
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Color Blocks
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Color block range
|
|
|
|
# --block_range start end
|
|
|
|
start=0
|
|
|
|
end=7
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Toggle color blocks
|
|
|
|
# --color_blocks on/off
|
|
|
|
color_blocks="on"
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Color block width
|
|
|
|
# --color_block_width num
|
2016-01-03 08:55:09 +00:00
|
|
|
block_width=3
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Text Colors {{{
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# --title_color num
|
|
|
|
title_color=4
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-13 04:19:49 +00:00
|
|
|
# Color of "@" symbol in title
|
|
|
|
# --at_color num
|
|
|
|
at_color=6
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# --subtitle_color num
|
|
|
|
subtitle_color=1
|
2015-12-31 04:42:58 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# --colon_color num
|
|
|
|
colon_color=8
|
2015-12-31 04:42:58 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# --underline_color num
|
|
|
|
underline_color=8
|
|
|
|
|
|
|
|
# --info_color num
|
|
|
|
info_color=6
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Text Options {{{
|
|
|
|
|
|
|
|
|
|
|
|
# Toggle line wrapping
|
|
|
|
# --line_wrap on/off
|
|
|
|
line_wrap="on"
|
|
|
|
|
|
|
|
# Toggle bold text
|
|
|
|
# --bold on/off
|
|
|
|
bold="on"
|
|
|
|
|
2016-02-05 23:25:12 +00:00
|
|
|
# Enable/Disable Underline
|
|
|
|
# --underline on/off
|
|
|
|
underline="on"
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Underline character
|
|
|
|
# --underline_char char
|
|
|
|
underline_char="-"
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-05 05:46:53 +00:00
|
|
|
# Prompt height
|
|
|
|
# You should only have to change this if your
|
|
|
|
# prompt is greater than 2 lines high.
|
|
|
|
# --prompt_height num
|
|
|
|
prompt_height=1
|
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-01-28 23:26:32 +00:00
|
|
|
# Image Options {{{
|
|
|
|
|
|
|
|
|
2016-01-08 02:29:24 +00:00
|
|
|
# Image Source
|
2016-01-27 11:33:22 +00:00
|
|
|
# --image wall, shuffle, ascii, /path/to/img, off
|
2016-01-28 09:11:58 +00:00
|
|
|
image="wall"
|
2016-01-28 09:11:18 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Thumbnail directory
|
2016-01-31 10:33:02 +00:00
|
|
|
thumbnail_dir="$HOME/.cache/thumbnails/fetch"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-01-19 03:21:38 +00:00
|
|
|
# Image Backend
|
|
|
|
# Which program to draw images with
|
|
|
|
# --image_backend w3m, iterm2
|
|
|
|
image_backend="w3m"
|
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
# W3m-img path
|
|
|
|
# Some systems have this in another location
|
|
|
|
w3m_img_path="/usr/lib/w3m/w3mimgdisplay"
|
|
|
|
|
2016-01-03 23:20:36 +00:00
|
|
|
# Image position
|
2016-01-25 06:26:15 +00:00
|
|
|
# Only works with the w3m backend
|
2016-01-03 23:20:36 +00:00
|
|
|
# --image_position left/right
|
|
|
|
image_position="left"
|
|
|
|
|
2016-01-08 02:29:24 +00:00
|
|
|
# Shuffle dir
|
2016-01-27 04:01:48 +00:00
|
|
|
shuffle_dir="$HOME/Pictures/wallpapers/wash"
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Crop mode
|
|
|
|
# --crop_mode normal/fit/fill
|
|
|
|
crop_mode="normal"
|
2015-12-31 22:33:08 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Crop offset
|
|
|
|
# Only affects normal mode.
|
|
|
|
# --crop_offset northwest/north/northeast/west/center
|
|
|
|
# east/southwest/south/southeast
|
|
|
|
crop_offset="center"
|
2015-12-31 00:21:10 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Font width
|
|
|
|
# Used when calculating dynamic image size
|
2016-02-04 07:42:54 +00:00
|
|
|
# --font_width num
|
2016-01-03 06:54:16 +00:00
|
|
|
font_width=5
|
2015-12-31 00:21:10 +00:00
|
|
|
|
2016-02-04 07:42:54 +00:00
|
|
|
# Image size
|
|
|
|
# The image is half the terminal width by default.
|
|
|
|
# --size half, px
|
|
|
|
image_size="half"
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Right gap between image and text
|
|
|
|
# --gap num
|
2015-12-31 00:21:10 +00:00
|
|
|
gap=4
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Image offsets
|
|
|
|
# --xoffset px
|
|
|
|
# --yoffset px
|
2015-12-30 10:18:17 +00:00
|
|
|
yoffset=0
|
|
|
|
xoffset=0
|
|
|
|
|
2015-12-30 11:30:43 +00:00
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Ascii Options {{{
|
|
|
|
|
|
|
|
|
|
|
|
# Default ascii image to use
|
2016-01-28 09:04:47 +00:00
|
|
|
# When this is set to distro it will use your
|
|
|
|
# distro's logo as the ascii.
|
|
|
|
# --ascii 'distro', path/to/ascii
|
|
|
|
ascii="distro"
|
2016-01-27 11:33:22 +00:00
|
|
|
|
2016-02-04 01:50:50 +00:00
|
|
|
# Ascii colors
|
2016-01-28 09:04:47 +00:00
|
|
|
# When this is set to distro it will use your
|
|
|
|
# ditro's colors to color the ascii.
|
2016-02-04 01:50:50 +00:00
|
|
|
# NOTE: You can also set this to a range of colors
|
|
|
|
# which will allow you to custom color distro logos
|
|
|
|
# --ascii_colors distro
|
|
|
|
# --ascii_colors 2 4 5 6
|
|
|
|
ascii_colors=(distro)
|
2016-01-27 11:33:22 +00:00
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# }}}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
# Scrot Options {{{
|
2016-01-08 05:08:00 +00:00
|
|
|
|
|
|
|
|
2016-01-22 10:28:06 +00:00
|
|
|
# Whether or not to always take a screenshot
|
|
|
|
# You can manually take a screenshot with "--scrot" or "-s"
|
2016-01-08 05:08:00 +00:00
|
|
|
scrot="off"
|
|
|
|
|
2016-01-08 06:04:23 +00:00
|
|
|
# Screenshot program to launch
|
2016-01-22 23:16:34 +00:00
|
|
|
# --scrot_cmd
|
2016-01-22 10:28:06 +00:00
|
|
|
scrot_cmd="scrot -c -d 3"
|
2016-01-08 06:04:23 +00:00
|
|
|
|
2016-01-08 05:08:00 +00:00
|
|
|
# Scrot dir
|
|
|
|
# Where to save the screenshots
|
2016-01-22 23:16:34 +00:00
|
|
|
# --scrot_dir /path/to/screenshot/folder
|
2016-01-22 10:28:06 +00:00
|
|
|
scrot_dir="$HOME/Pictures"
|
2016-01-08 05:08:00 +00:00
|
|
|
|
|
|
|
# Scrot filename
|
|
|
|
# What to name the screenshots
|
2016-01-22 23:16:34 +00:00
|
|
|
# --scrot_name str
|
2016-01-22 10:28:06 +00:00
|
|
|
scrot_name="fetch-%Y-%m-%d-%H:%M.png"
|
2016-01-08 05:08:00 +00:00
|
|
|
|
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Config Options {{{
|
|
|
|
|
|
|
|
|
2016-01-30 00:30:21 +00:00
|
|
|
# Enable/Disable config file
|
2016-01-31 21:00:20 +00:00
|
|
|
# --config off, none
|
2016-01-30 00:30:21 +00:00
|
|
|
config="on"
|
|
|
|
|
2016-01-30 00:09:36 +00:00
|
|
|
# Path to custom config file location
|
2016-01-29 15:14:29 +00:00
|
|
|
# --config path/to/config
|
|
|
|
config_file="$HOME/.config/fetch/config"
|
|
|
|
|
|
|
|
|
2016-02-05 05:29:11 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Other Options {{{
|
|
|
|
|
2016-02-06 23:03:49 +00:00
|
|
|
# Separator to use in stdout mode.
|
|
|
|
# --stdout_separator string
|
|
|
|
stdout_separator=" "
|
2016-02-05 05:29:11 +00:00
|
|
|
|
|
|
|
# Hide/Show the title in stdout mode.
|
|
|
|
# --stdout_title on/off
|
|
|
|
stdout_title="off"
|
|
|
|
|
|
|
|
# Hide/Show each info's subtitle in stdout mode.
|
|
|
|
# --stdout_subtitles on/off
|
|
|
|
stdout_subtitles="on"
|
|
|
|
|
2016-01-08 05:08:00 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Gather Info {{{
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Operating System {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
case "$(uname)" in
|
|
|
|
"Linux")
|
2016-01-03 22:21:13 +00:00
|
|
|
os="Linux"
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
"Darwin")
|
|
|
|
os="Mac OS X"
|
|
|
|
;;
|
2016-01-03 13:01:44 +00:00
|
|
|
|
2016-01-18 01:09:37 +00:00
|
|
|
"OpenBSD")
|
|
|
|
os="OpenBSD"
|
|
|
|
;;
|
|
|
|
|
2016-01-18 07:21:57 +00:00
|
|
|
*"BSD")
|
2016-01-18 01:09:37 +00:00
|
|
|
os="BSD"
|
|
|
|
;;
|
|
|
|
|
2016-01-05 05:32:34 +00:00
|
|
|
"CYGWIN"*)
|
|
|
|
os="Windows"
|
|
|
|
;;
|
2016-01-17 13:43:44 +00:00
|
|
|
|
|
|
|
*)
|
|
|
|
printf "%s\n" "Couldn't detect OS, exiting"
|
2016-01-29 12:54:12 +00:00
|
|
|
exit 1
|
2016-01-17 13:43:44 +00:00
|
|
|
;;
|
2016-01-03 06:54:16 +00:00
|
|
|
esac
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Distro {{{
|
|
|
|
|
2016-02-01 04:10:53 +00:00
|
|
|
# Default bit style
|
|
|
|
x64="x86_64"
|
|
|
|
x32="x86"
|
|
|
|
|
2016-01-05 07:56:05 +00:00
|
|
|
case "$os" in
|
|
|
|
"Linux" )
|
2016-01-27 00:53:12 +00:00
|
|
|
if type -p lsb_release >/dev/null 2>&1; then
|
2016-02-15 01:39:02 +00:00
|
|
|
distro="$(lsb_release -d 2>/dev/null | awk -F':' '/Description/ {printf $2}')"
|
2016-01-26 06:44:31 +00:00
|
|
|
distro=${distro/[[:space:]]}
|
2016-02-15 01:39:02 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
elif type -p crux >/dev/null 2>&1; then
|
|
|
|
distro="CRUX"
|
2016-01-05 07:56:05 +00:00
|
|
|
else
|
|
|
|
distro="$(grep -h '^NAME=' /etc/*ease)"
|
2016-02-13 10:14:50 +00:00
|
|
|
|
|
|
|
# Workaround for distros that store the value differently.
|
2016-02-13 08:29:08 +00:00
|
|
|
[ -z "$distro" ] && distro="$(grep -h 'TAILS_PRODUCT_NAME' /etc/*ease)"
|
2016-02-13 10:14:50 +00:00
|
|
|
[ -z "$distro" ] && distro="$(awk '/BLAG/ {print $1; exit}' /etc/*ease)"
|
2016-02-13 08:29:08 +00:00
|
|
|
|
2016-02-13 08:31:28 +00:00
|
|
|
distro=${distro/*NAME\=}
|
2016-01-08 01:59:33 +00:00
|
|
|
distro=${distro#\"*}
|
2016-01-05 07:56:05 +00:00
|
|
|
distro=${distro%*\"}
|
|
|
|
fi
|
|
|
|
;;
|
2016-01-03 22:21:13 +00:00
|
|
|
|
2016-01-05 07:56:05 +00:00
|
|
|
"Mac OS X")
|
|
|
|
distro="Mac OS X $(sw_vers -productVersion)"
|
2016-01-28 01:44:06 +00:00
|
|
|
|
|
|
|
[ "$osx_buildversion" == "on" ] && \
|
|
|
|
distro+=" $(sw_vers -buildVersion)"
|
2016-01-05 07:56:05 +00:00
|
|
|
;;
|
2016-01-03 22:21:13 +00:00
|
|
|
|
2016-01-18 01:09:37 +00:00
|
|
|
"OpenBSD")
|
|
|
|
distro="OpenBSD"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"BSD")
|
|
|
|
distro="$(uname -v)"
|
|
|
|
distro=${distro%% *}
|
|
|
|
;;
|
|
|
|
|
2016-01-18 23:42:41 +00:00
|
|
|
"Windows")
|
2016-01-31 21:16:47 +00:00
|
|
|
distro="$(wmic os get Caption /value)"
|
2016-01-31 21:40:10 +00:00
|
|
|
|
|
|
|
# Strip crap from the output of wmic
|
2016-01-31 21:42:12 +00:00
|
|
|
distro=${distro/Caption'='}
|
2016-01-31 21:16:47 +00:00
|
|
|
distro=${distro//[[:space:]]/ }
|
|
|
|
distro=${distro// }
|
|
|
|
distro=${distro/Microsoft }
|
2016-02-01 04:10:53 +00:00
|
|
|
|
|
|
|
# Change bits to xx-bit for Windows
|
|
|
|
x64="64-bit"
|
|
|
|
x32="32-bit"
|
2016-01-05 07:56:05 +00:00
|
|
|
;;
|
2016-01-05 05:32:34 +00:00
|
|
|
|
2016-01-05 07:56:05 +00:00
|
|
|
*)
|
|
|
|
distro="Unknown"
|
|
|
|
;;
|
|
|
|
esac
|
2016-01-28 09:04:47 +00:00
|
|
|
ascii_distro="$distro"
|
2016-01-03 22:21:13 +00:00
|
|
|
|
2016-01-29 12:54:12 +00:00
|
|
|
getdistro () {
|
2016-02-01 04:02:42 +00:00
|
|
|
# Get architecture
|
2016-02-01 03:45:53 +00:00
|
|
|
if [ "$os_arch" == "on" ]; then
|
2016-02-01 04:02:42 +00:00
|
|
|
case "$(getconf LONG_BIT)" in
|
2016-02-01 04:10:53 +00:00
|
|
|
64) distro+=" $x64" ;;
|
|
|
|
32) distro+=" $x32" ;;
|
2016-02-01 04:02:42 +00:00
|
|
|
esac
|
2016-02-01 03:45:53 +00:00
|
|
|
fi
|
2016-01-29 12:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Title {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
gettitle () {
|
|
|
|
title="${USER}@$(hostname)"
|
|
|
|
}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Kernel {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getkernel() {
|
2016-01-28 23:26:32 +00:00
|
|
|
case "$kernel_shorthand" in
|
|
|
|
"on") kernel="$(uname -r)" ;;
|
|
|
|
"off") kernel="$(uname -srm)" ;;
|
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Uptime {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getuptime () {
|
|
|
|
case "$os" in
|
2016-01-03 22:21:13 +00:00
|
|
|
"Linux")
|
2016-02-08 20:49:42 +00:00
|
|
|
case "$distro" in
|
2016-02-08 22:02:07 +00:00
|
|
|
"Puppy Linux"* | "Quirky Werewolf"* | "Precise Puppy"*)
|
2016-02-08 20:49:42 +00:00
|
|
|
uptime=$(uptime | awk -F ':[0-9]{2}+ |(, ){1}+' '{printf $2}')
|
|
|
|
uptime=${uptime/ / }
|
2016-02-08 22:02:07 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"openSUSE"*)
|
|
|
|
uptime=$(uptime | awk -F ':[0-9]{2}+[a-z][a-z] |(, ){1}+' '{printf $2}')
|
2016-02-08 22:04:05 +00:00
|
|
|
uptime=${uptime/ / }
|
2016-02-08 20:49:42 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
uptime="$(uptime -p)"
|
2016-02-14 13:56:02 +00:00
|
|
|
[ "$uptime" == "up " ] && uptime="up $(awk -F'.' '{print $1}' /proc/uptime) seconds"
|
2016-02-08 20:49:42 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-03 22:21:13 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-19 06:33:41 +00:00
|
|
|
"Mac OS X" | *"BSD")
|
2016-01-06 00:00:20 +00:00
|
|
|
# Get boot time in seconds
|
2016-01-04 04:30:14 +00:00
|
|
|
boot="$(sysctl -n kern.boottime)"
|
2016-01-26 06:44:31 +00:00
|
|
|
boot="${boot/{ sec = }"
|
2016-01-04 04:30:14 +00:00
|
|
|
boot=${boot/,*}
|
|
|
|
|
|
|
|
# Get current date in seconds
|
|
|
|
now=$(date +%s)
|
2016-01-05 23:41:02 +00:00
|
|
|
uptime=$((now - boot))
|
2016-01-04 04:30:14 +00:00
|
|
|
|
|
|
|
# Convert uptime to days/hours/mins
|
2016-01-05 23:41:02 +00:00
|
|
|
mins=$((uptime / 60%60))
|
|
|
|
hours=$((uptime / 3600%24))
|
|
|
|
days=$((uptime / 86400))
|
2016-01-04 04:30:14 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# Format the output like Linux's "uptime -p" cmd.
|
2016-01-04 04:50:52 +00:00
|
|
|
case "$mins" in
|
|
|
|
0) ;;
|
2016-01-26 06:44:31 +00:00
|
|
|
1) uptime="up $mins minute" ;;
|
|
|
|
*) uptime="up $mins minutes" ;;
|
2016-01-04 04:50:52 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
case "$hours" in
|
|
|
|
0) ;;
|
2016-01-26 06:44:31 +00:00
|
|
|
1) uptime="up $hours hour, ${uptime/up }" ;;
|
|
|
|
*) uptime="up $hours hours, ${uptime/up }" ;;
|
2016-01-04 04:50:52 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
case "$days" in
|
|
|
|
0) ;;
|
2016-01-26 06:44:31 +00:00
|
|
|
1) uptime="up $days day, ${uptime/up }" ;;
|
|
|
|
*) uptime="up $days days, ${uptime/up }" ;;
|
2016-01-04 04:50:52 +00:00
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-05 05:32:34 +00:00
|
|
|
"Windows")
|
|
|
|
uptime=$(uptime | awk -F ':[0-9]{2}+ |(, ){1}+' '{printf $2}')
|
2016-01-18 23:45:56 +00:00
|
|
|
uptime=${uptime/ / }
|
2016-01-05 05:32:34 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-03 22:25:30 +00:00
|
|
|
*)
|
|
|
|
uptime="Unknown"
|
|
|
|
;;
|
2015-12-30 10:18:17 +00:00
|
|
|
esac
|
2016-01-04 03:31:21 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# Make the output of uptime smaller.
|
2016-01-26 01:16:39 +00:00
|
|
|
case "$uptime_shorthand" in
|
|
|
|
"on")
|
2016-01-26 06:44:31 +00:00
|
|
|
uptime=${uptime/up}
|
2016-01-26 01:16:39 +00:00
|
|
|
uptime=${uptime/minutes/mins}
|
|
|
|
uptime=${uptime/minute/min}
|
2016-02-14 13:50:24 +00:00
|
|
|
uptime=${uptime/seconds/secs}
|
2016-01-26 01:16:39 +00:00
|
|
|
uptime=${uptime# }
|
|
|
|
;;
|
|
|
|
|
|
|
|
"tiny")
|
2016-01-26 06:44:31 +00:00
|
|
|
uptime=${uptime/up}
|
|
|
|
uptime=${uptime/ days/d}
|
|
|
|
uptime=${uptime/ day/d}
|
|
|
|
uptime=${uptime/ hours/h}
|
|
|
|
uptime=${uptime/ hour/h}
|
|
|
|
uptime=${uptime/ minutes/m}
|
|
|
|
uptime=${uptime/ minute/m}
|
2016-02-14 13:50:24 +00:00
|
|
|
uptime=${uptime/ seconds/s}
|
2016-01-26 06:44:31 +00:00
|
|
|
uptime=${uptime/,}
|
2016-01-26 01:16:39 +00:00
|
|
|
uptime=${uptime# }
|
|
|
|
;;
|
|
|
|
esac
|
2015-12-30 10:18:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Package Count {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getpackages () {
|
2016-02-15 12:59:05 +00:00
|
|
|
case "$os" in
|
|
|
|
"Linux")
|
|
|
|
if type -p dpkg >/dev/null 2>&1; then
|
|
|
|
packages="$(dpkg --get-selections | grep -cv deinstall$)"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pacman >/dev/null 2>&1; then
|
|
|
|
packages="$(pacman -Qq --color never | wc -l)"
|
2016-02-15 11:59:28 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p rpm >/dev/null 2>&1; then
|
|
|
|
packages="$(rpm -qa | wc -l)"
|
2016-02-14 22:28:51 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p xbps-query >/dev/null 2>&1; then
|
|
|
|
packages="$(xbps-query -l | wc -l)"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pkginfo >/dev/null 2>&1; then
|
|
|
|
packages="$(pkginfo -i | wc -l)"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pisi >/dev/null 2>&1; then
|
|
|
|
packages="$(pisi list-installed | wc -l)"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pkg >/dev/null 2>&1; then
|
|
|
|
packages="$(ls -1 /var/db/pkg | wc -l)"
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pkgtool >/dev/null 2>&1; then
|
|
|
|
packages="$(ls -1 /var/log/packages | wc -l)"
|
2016-02-14 12:29:04 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p emerge >/dev/null 2>&1; then
|
|
|
|
packages="$(ls -d /var/db/pkg/*/* | wc -l)"
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p nix-env >/dev/null 2>&1; then
|
|
|
|
packages="$(ls -d -1 /nix/store/*/ | wc -l)"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pacman-g2 >/dev/null 2>&1; then
|
|
|
|
packages="$(pacman-g2 -Q | wc -l)"
|
|
|
|
fi
|
2016-02-14 08:42:27 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
"Mac OS X")
|
2016-01-17 13:30:58 +00:00
|
|
|
if [ -d "/usr/local/bin" ]; then
|
|
|
|
local_packages=$(ls -l /usr/local/bin/ | grep -v "\(../Cellar/\|brew\)" | wc -l)
|
|
|
|
packages=$((local_packages - 1))
|
|
|
|
fi
|
|
|
|
|
|
|
|
if type -p port >/dev/null 2>&1; then
|
|
|
|
port_packages=$(port installed 2>/dev/null | wc -l)
|
|
|
|
packages=$((packages + $((port_packages - 1))))
|
|
|
|
fi
|
|
|
|
|
|
|
|
if type -p brew >/dev/null 2>&1; then
|
|
|
|
brew_packages=$(brew list -1 2>/dev/null | wc -l)
|
|
|
|
packages=$((packages + brew_packages))
|
|
|
|
fi
|
|
|
|
|
|
|
|
if type -p pkgin >/dev/null 2>&1; then
|
|
|
|
pkgsrc_packages=$(pkgin list 2>/dev/null | wc -l)
|
|
|
|
packages=$((packages + pkgsrc_packages))
|
|
|
|
fi
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
*"BSD")
|
|
|
|
if type -p pkg_info >/dev/null 2>&1; then
|
|
|
|
packages=$(pkg_info | wc -l)
|
2016-01-18 05:22:21 +00:00
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
elif type -p pkg >/dev/null 2>&1; then
|
|
|
|
packages=$(pkg info | wc -l)
|
|
|
|
fi
|
2016-01-18 01:09:37 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-15 12:59:05 +00:00
|
|
|
"Windows")
|
2016-01-05 05:32:34 +00:00
|
|
|
packages=$(cygcheck -cd | wc -l)
|
2016-01-27 00:53:12 +00:00
|
|
|
|
|
|
|
# Count chocolatey packages
|
|
|
|
if [ -d "/cygdrive/c/ProgramData/chocolatey/lib" ]; then
|
|
|
|
choco_packages=$(ls -1 /cygdrive/c/ProgramData/chocolatey/lib | wc -l)
|
|
|
|
packages=$((packages + choco_packages))
|
|
|
|
fi
|
2016-01-05 05:32:34 +00:00
|
|
|
;;
|
2016-01-03 06:54:16 +00:00
|
|
|
esac
|
2016-01-18 23:44:25 +00:00
|
|
|
packages=${packages// }
|
2016-02-15 12:59:05 +00:00
|
|
|
|
|
|
|
[ -z "$packages" ] && packages="Unknown"
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Shell {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getshell () {
|
2016-01-29 00:04:35 +00:00
|
|
|
case "$shell_path" in
|
2016-02-05 00:43:19 +00:00
|
|
|
"on") shell="$SHELL" ;;
|
|
|
|
"off") shell="${SHELL##*/}" ;;
|
2016-01-29 00:04:35 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
if [ "$shell_version" == "on" ]; then
|
2016-02-05 00:43:19 +00:00
|
|
|
shell+=" "
|
2016-01-29 00:04:35 +00:00
|
|
|
case "$shell" in
|
|
|
|
*"bash"*)
|
|
|
|
shell+="$(bash --version | head -n 1)"
|
|
|
|
shell=${shell/ *, version}
|
|
|
|
;;
|
|
|
|
|
|
|
|
*"zsh"*)
|
|
|
|
shell+="$(zsh --version)"
|
|
|
|
shell=${shell/ zsh}
|
|
|
|
;;
|
|
|
|
|
2016-01-29 04:40:52 +00:00
|
|
|
*"mksh"* | *"ksh")
|
|
|
|
shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')"
|
2016-01-29 00:04:35 +00:00
|
|
|
shell=${shell/ * KSH}
|
|
|
|
;;
|
2016-01-29 04:40:52 +00:00
|
|
|
|
|
|
|
*"tcsh"* | *"csh"*)
|
|
|
|
shell+="$("$SHELL" --version)"
|
|
|
|
shell=${shell/tcsh}
|
|
|
|
shell=${shell/\(*}
|
|
|
|
;;
|
2016-01-29 00:04:35 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
shell="${shell/\(*\)}"
|
|
|
|
fi
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-02-10 11:44:23 +00:00
|
|
|
# Desktop Environment {{{
|
|
|
|
|
|
|
|
getde () {
|
|
|
|
[ "$XDG_CURRENT_DESKTOP" ] && de="$XDG_CURRENT_DESKTOP"
|
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Window Manager {{{
|
|
|
|
|
2016-02-10 11:44:23 +00:00
|
|
|
getwm () {
|
2016-01-22 23:31:24 +00:00
|
|
|
if type -p wmctrl >/dev/null 2>&1; then
|
2016-02-10 11:44:23 +00:00
|
|
|
wm="$(wmctrl -m | head -n1)"
|
|
|
|
wm=${wm/Name: }
|
2016-01-05 04:02:24 +00:00
|
|
|
|
2016-01-30 09:02:20 +00:00
|
|
|
elif [ "$XINITRC" ]; then
|
2016-02-10 11:44:23 +00:00
|
|
|
wm=$(grep "^[^#]*exec" "$XINITRC" | tail -n 1)
|
2016-01-05 04:02:24 +00:00
|
|
|
|
2016-01-30 09:02:20 +00:00
|
|
|
elif [ -e "$HOME/.xinitrc" ]; then
|
2016-02-10 11:44:23 +00:00
|
|
|
wm=$(grep "^[^#]*exec" "${HOME}/.xinitrc" | tail -n 1)
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-01-30 09:02:20 +00:00
|
|
|
else
|
|
|
|
case "$os" in
|
2016-02-10 11:44:23 +00:00
|
|
|
"Mac OS X") wm="Quartz Compositor" ;;
|
|
|
|
"Windows") wm="Explorer" ;;
|
|
|
|
*) wm="Unknown" ;;
|
2016-01-30 09:02:20 +00:00
|
|
|
esac
|
2016-01-30 01:56:37 +00:00
|
|
|
fi
|
2016-01-30 09:02:20 +00:00
|
|
|
|
2016-02-10 11:44:23 +00:00
|
|
|
wm="${wm/exec }"
|
|
|
|
wm="${wm/-session}"
|
|
|
|
wm="${wm^}"
|
2015-12-31 00:21:10 +00:00
|
|
|
}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# CPU {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getcpu () {
|
2016-01-03 22:21:13 +00:00
|
|
|
case "$os" in
|
|
|
|
"Linux")
|
2016-01-05 04:02:24 +00:00
|
|
|
# Get cpu name
|
2016-01-06 00:36:57 +00:00
|
|
|
cpu="$(grep -F 'model name' /proc/cpuinfo)"
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu/model name*: }
|
2016-01-30 03:37:50 +00:00
|
|
|
cpu=${cpu/ @*}
|
2016-02-13 10:14:50 +00:00
|
|
|
cpu=${cpu// }
|
2016-01-31 22:57:48 +00:00
|
|
|
cpu=${cpu%% }
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-01-05 04:02:24 +00:00
|
|
|
# Get cpu speed
|
2016-01-26 01:55:31 +00:00
|
|
|
if [ -d "/sys/devices/system/cpu/cpu0/cpufreq" ]; then
|
|
|
|
case "$speed_type" in
|
|
|
|
current) speed_type="scaling_cur_freq" ;;
|
|
|
|
min) speed_type="scaling_min_freq" ;;
|
|
|
|
max) speed_type="scaling_max_freq" ;;
|
|
|
|
bios) speed_type="bios_limit" ;;
|
|
|
|
scaling_current) speed_type="scaling_cur_freq" ;;
|
|
|
|
scaling_min) speed_type="scaling_min_freq" ;;
|
|
|
|
scaling_max) speed_type="scaling_max_freq" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
read -r speed < \
|
|
|
|
/sys/devices/system/cpu/cpu0/cpufreq/${speed_type}
|
|
|
|
|
|
|
|
else
|
|
|
|
speed=$(awk -F ': ' '/cpu MHz/ {printf $2; exit}' /proc/cpuinfo)
|
2016-01-26 06:44:31 +00:00
|
|
|
speed=${speed/\.}
|
2016-01-26 01:55:31 +00:00
|
|
|
fi
|
2016-01-03 06:54:16 +00:00
|
|
|
|
|
|
|
# Convert mhz to ghz without bc
|
2016-01-05 23:41:02 +00:00
|
|
|
speed=$((speed / 100000))
|
2016-01-03 06:54:16 +00:00
|
|
|
speed=${speed:0:1}.${speed:1}
|
2016-01-19 11:30:17 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
cpu="$cpu @ ${speed}GHz"
|
|
|
|
;;
|
2016-01-03 22:21:13 +00:00
|
|
|
|
|
|
|
"Mac OS X")
|
|
|
|
cpu="$(sysctl -n machdep.cpu.brand_string)"
|
|
|
|
;;
|
|
|
|
|
2016-01-18 06:37:00 +00:00
|
|
|
*"BSD")
|
2016-01-19 00:05:43 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"OpenBSD"* | "FreeBSD"*)
|
2016-01-19 06:36:10 +00:00
|
|
|
# Get cpu name
|
2016-01-19 06:33:41 +00:00
|
|
|
cpu="$(sysctl -n hw.model)"
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu/ @*}
|
|
|
|
cpu=${cpu// }
|
2016-01-19 06:36:10 +00:00
|
|
|
cpu=${cpu% }
|
|
|
|
|
|
|
|
# Get cpu speed
|
2016-02-01 00:44:03 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"OpenBSD"*) speed=$(sysctl -n hw.cpuspeed) ;;
|
|
|
|
"FreeBSD"*) speed=$(sysctl -n hw.clockrate) ;;
|
2016-02-01 00:44:03 +00:00
|
|
|
esac
|
2016-01-19 06:33:41 +00:00
|
|
|
speed=$((speed / 100))
|
|
|
|
;;
|
|
|
|
|
2016-02-01 03:56:53 +00:00
|
|
|
"NetBSD"*)
|
2016-01-19 00:05:43 +00:00
|
|
|
# Get cpu name
|
|
|
|
cpu="$(grep -F 'model name' /proc/cpuinfo)"
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu/model name*: }
|
|
|
|
cpu=${cpu/ @*}
|
|
|
|
cpu=${cpu// }
|
2016-01-19 00:17:45 +00:00
|
|
|
cpu=${cpu% }
|
2016-01-19 00:12:38 +00:00
|
|
|
|
|
|
|
# Get cpu speed
|
|
|
|
speed="$(grep -F 'cpu MHz' /proc/cpuinfo)"
|
2016-01-26 06:44:31 +00:00
|
|
|
speed=${speed/cpu MHz*: }
|
|
|
|
speed=${speed/\.}
|
2016-01-19 00:15:37 +00:00
|
|
|
speed=$((speed / 10000))
|
2016-01-19 00:05:43 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-19 06:36:10 +00:00
|
|
|
|
|
|
|
speed=${speed:0:1}.${speed:1}
|
|
|
|
cpu="$cpu @ ${speed}GHz"
|
2016-01-18 06:37:00 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-05 05:57:30 +00:00
|
|
|
"Windows")
|
|
|
|
# Get cpu name
|
2016-01-06 00:36:57 +00:00
|
|
|
cpu="$(grep -F 'model name' /proc/cpuinfo)"
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu/model name*: }
|
|
|
|
cpu=${cpu/ @*}
|
|
|
|
cpu=${cpu// }
|
2016-01-05 23:06:22 +00:00
|
|
|
cpu=${cpu% }
|
2016-01-05 07:27:02 +00:00
|
|
|
|
2016-01-05 22:01:21 +00:00
|
|
|
# Get cpu speed
|
2016-01-06 00:36:57 +00:00
|
|
|
speed=$(grep -F 'cpu MHz' /proc/cpuinfo)
|
2016-01-26 06:44:31 +00:00
|
|
|
speed=${speed/cpu MHz*: }
|
|
|
|
speed=${speed/\.}
|
2016-01-05 07:27:02 +00:00
|
|
|
|
|
|
|
# Convert mhz to ghz without bc
|
2016-01-05 23:41:02 +00:00
|
|
|
speed=$((speed / 100000))
|
2016-01-05 07:27:02 +00:00
|
|
|
speed=${speed:0:1}.${speed:1}
|
|
|
|
cpu="$cpu @ ${speed}GHz"
|
2016-01-05 05:57:30 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-03 22:21:13 +00:00
|
|
|
*)
|
|
|
|
cpu="Unknown"
|
|
|
|
;;
|
2015-12-30 12:58:20 +00:00
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
|
|
|
|
# Remove uneeded patterns from cpu output
|
|
|
|
# This is faster than sed/gsub
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu//(tm)}
|
|
|
|
cpu=${cpu//(TM)}
|
|
|
|
cpu=${cpu//(r)}
|
|
|
|
cpu=${cpu//(R)}
|
|
|
|
cpu=${cpu// CPU}
|
|
|
|
cpu=${cpu// Processor}
|
|
|
|
cpu=${cpu// Six-Core}
|
2016-01-29 07:32:23 +00:00
|
|
|
cpu=${cpu// Eight-Core}
|
2016-01-26 06:44:31 +00:00
|
|
|
cpu=${cpu// with Radeon HD Graphics}
|
2015-12-30 12:58:20 +00:00
|
|
|
}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# GPU {{{
|
|
|
|
|
2016-01-19 00:55:45 +00:00
|
|
|
getgpu () {
|
2016-01-19 01:02:04 +00:00
|
|
|
case "$os" in
|
2016-01-24 23:36:42 +00:00
|
|
|
"Linux")
|
2016-02-11 13:00:41 +00:00
|
|
|
gpu="$(PATH="/sbin:$PATH" lspci | grep -F "3D")"
|
|
|
|
|
|
|
|
# If a GPU with a prefix of '3D' doesn't exist
|
|
|
|
# fallback to looking for a prefix of 'VGA'
|
|
|
|
[ -z "$gpu" ] && \
|
2016-02-09 09:58:41 +00:00
|
|
|
gpu="$(PATH="/sbin:$PATH" lspci | grep -F "VGA")"
|
2016-02-02 22:26:47 +00:00
|
|
|
gpu=${gpu//??':'??'.'?}
|
2016-01-31 01:52:28 +00:00
|
|
|
|
|
|
|
# Count the number of GPUs
|
2016-02-02 22:26:47 +00:00
|
|
|
count="$(printf "%s" "$gpu" | uniq -c)"
|
|
|
|
count=${count/ VGA*}
|
2016-02-11 13:00:41 +00:00
|
|
|
count=${count/ 3D*}
|
2016-01-31 01:52:28 +00:00
|
|
|
count=${count//[[:space:]]}
|
|
|
|
|
|
|
|
# If there's more than one gpu
|
|
|
|
# Display the count.
|
|
|
|
if [ "$count" -gt 1 ]; then
|
|
|
|
count=" x $count"
|
|
|
|
else
|
|
|
|
unset count
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Format the output
|
2016-01-20 20:20:42 +00:00
|
|
|
gpu=${gpu/* VGA compatible controller: }
|
2016-02-11 13:00:41 +00:00
|
|
|
gpu=${gpu/* 3D controller: }
|
2016-01-20 20:20:42 +00:00
|
|
|
gpu=${gpu/(rev*)}
|
|
|
|
|
|
|
|
shopt -s nocasematch
|
|
|
|
case "$gpu" in
|
|
|
|
intel*)
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/Intel Corporation }
|
|
|
|
gpu=${gpu/Haswell-??? }
|
2016-02-11 22:19:22 +00:00
|
|
|
gpu=${gpu/?th Gen Core Processor}
|
2016-01-20 20:20:42 +00:00
|
|
|
|
2016-01-26 01:58:46 +00:00
|
|
|
brand="Intel "
|
2016-01-20 20:20:42 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
advanced*)
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/Advanced Micro Devices, Inc\. }
|
2016-01-20 20:20:42 +00:00
|
|
|
gpu=${gpu/'[AMD/ATI]' }
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/Tahiti PRO}
|
|
|
|
gpu=${gpu/Seymour}
|
2016-01-29 00:04:35 +00:00
|
|
|
gpu=${gpu/ OEM}
|
2016-02-10 22:20:03 +00:00
|
|
|
gpu=${gpu/ Cape Verde}
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/ \[}
|
|
|
|
gpu=${gpu/\]}
|
2016-01-20 20:20:42 +00:00
|
|
|
|
2016-01-26 01:58:46 +00:00
|
|
|
brand="AMD "
|
2016-01-20 20:20:42 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
nvidia*)
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/NVIDIA Corporation }
|
|
|
|
gpu=${gpu/nVidia Corporation }
|
2016-01-20 21:58:50 +00:00
|
|
|
gpu=${gpu/G????M }
|
2016-01-20 20:20:42 +00:00
|
|
|
gpu=${gpu/G???? }
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/\[}
|
2016-02-03 10:36:29 +00:00
|
|
|
gpu=${gpu/\] }
|
2016-01-20 20:20:42 +00:00
|
|
|
|
2016-01-26 01:58:46 +00:00
|
|
|
brand="Nvidia "
|
|
|
|
;;
|
|
|
|
|
|
|
|
*virtualbox*)
|
|
|
|
gpu="VirtualBox Graphics Adapter"
|
2016-01-20 20:20:42 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-01-26 01:58:46 +00:00
|
|
|
gpu="${brand}${gpu}"
|
2016-01-19 00:55:45 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"Mac OS X")
|
2016-01-19 01:12:41 +00:00
|
|
|
gpu=$( \
|
|
|
|
system_profiler SPDisplaysDataType | \
|
2016-01-22 04:12:43 +00:00
|
|
|
awk -F': ' '/^\ *Chipset Model:/ {printf $2}' | \
|
2016-01-29 10:32:51 +00:00
|
|
|
awk '{ printf "%s ", $0 }'
|
2016-01-19 01:12:41 +00:00
|
|
|
)
|
|
|
|
gpu=${gpu//'/ $'}
|
2016-01-19 00:55:45 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-25 23:54:07 +00:00
|
|
|
*"BSD")
|
2016-01-19 00:55:45 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"FreeBSD"*)
|
2016-01-19 00:55:45 +00:00
|
|
|
gpu=$(pciconf -lv 2>/dev/null | grep -B 4 "VGA" | grep "device")
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu/device*= }
|
|
|
|
gpu=${gpu//\'}
|
2016-01-19 02:57:29 +00:00
|
|
|
gpu=${gpu//[[:space:]]/ }
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu// }
|
2016-01-19 00:55:45 +00:00
|
|
|
;;
|
2016-01-24 23:51:06 +00:00
|
|
|
|
|
|
|
*)
|
|
|
|
gpu="Unknown"
|
|
|
|
;;
|
2016-01-19 00:55:45 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
|
|
"Windows")
|
2016-01-31 21:31:22 +00:00
|
|
|
gpu=$(wmic path Win32_VideoController get caption /value)
|
|
|
|
gpu=${gpu/Caption'='}
|
2016-01-19 01:22:32 +00:00
|
|
|
gpu=${gpu//[[:space:]]/ }
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu// }
|
2016-01-19 00:55:45 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-19 02:52:33 +00:00
|
|
|
|
|
|
|
if [ "$gpu_shorthand" == "on" ]; then
|
2016-01-26 06:44:31 +00:00
|
|
|
gpu=${gpu// Rev\. ?}
|
|
|
|
gpu=${gpu//AMD\/ATI/AMD}
|
|
|
|
gpu=${gpu// Tahiti}
|
|
|
|
gpu=${gpu// PRO}
|
|
|
|
gpu=${gpu// OEM}
|
|
|
|
gpu=${gpu// Mars}
|
|
|
|
gpu=${gpu// Series}
|
2016-02-11 22:19:22 +00:00
|
|
|
gpu=${gpu// Controller}
|
2016-01-19 08:33:52 +00:00
|
|
|
gpu=${gpu/\/*}
|
2016-01-19 02:52:33 +00:00
|
|
|
fi
|
2016-01-31 01:52:28 +00:00
|
|
|
|
|
|
|
gpu="${gpu}${count}"
|
2016-01-19 00:55:45 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Memory {{{
|
|
|
|
|
2015-12-31 04:42:58 +00:00
|
|
|
getmemory () {
|
2016-01-03 22:21:13 +00:00
|
|
|
case "$os" in
|
|
|
|
"Linux")
|
2016-01-05 05:20:06 +00:00
|
|
|
# Read first 3 lines
|
|
|
|
exec 6< /proc/meminfo
|
2016-01-05 23:41:02 +00:00
|
|
|
read -r memtotal <&6
|
2016-01-26 01:48:40 +00:00
|
|
|
read -r memfree <&6 # We don't actually use this var
|
2016-01-05 23:41:02 +00:00
|
|
|
read -r memavail <&6
|
2016-01-05 05:20:06 +00:00
|
|
|
exec 6<&-
|
|
|
|
|
|
|
|
# Do some substitution on each line
|
2016-01-26 06:44:31 +00:00
|
|
|
memtotal=${memtotal/MemTotal:}
|
|
|
|
memtotal=${memtotal/kB*}
|
|
|
|
memavail=${memavail/MemAvailable:}
|
|
|
|
memavail=${memavail/kB*}
|
2016-01-05 05:20:06 +00:00
|
|
|
|
|
|
|
memused=$((memtotal - memavail))
|
2016-01-05 23:41:02 +00:00
|
|
|
memory="$((memused / 1024))MB / $((memtotal / 1024))MB"
|
2016-01-03 22:21:13 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
"Mac OS X")
|
2016-01-04 03:59:47 +00:00
|
|
|
memtotal=$(printf "%s\n" "$(sysctl -n hw.memsize)"/1024^2 | bc)
|
2016-01-29 01:17:16 +00:00
|
|
|
memwired=$(vm_stat | awk '/wired/ { print $4 }')
|
2016-01-22 04:12:43 +00:00
|
|
|
memactive=$(vm_stat | awk '/active / { printf $3 }')
|
|
|
|
memcompressed=$(vm_stat | awk '/occupied/ { printf $5 }')
|
2016-01-30 05:31:22 +00:00
|
|
|
memused=$(((${memwired//.} + ${memactive//.} + ${memcompressed//.}) * 4 / 1024))
|
2016-01-03 06:54:16 +00:00
|
|
|
memory="${memused}MB / ${memtotal}MB"
|
|
|
|
;;
|
|
|
|
|
2016-01-18 06:48:27 +00:00
|
|
|
"OpenBSD" | "BSD")
|
2016-01-18 06:45:32 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"OpenBSD"* | "FreeBSD"*)
|
2016-01-19 06:33:41 +00:00
|
|
|
memtotal=$(dmesg | awk '/real mem/ {printf $5}')
|
2016-01-26 06:44:31 +00:00
|
|
|
memtotal=${memtotal/\(}
|
|
|
|
memtotal=${memtotal/MB\)}
|
2016-01-19 06:33:41 +00:00
|
|
|
|
2016-02-01 00:44:03 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"OpenBSD"*) memfree=$(top -d 1 | awk '/Real:/ {printf $6}') ;;
|
|
|
|
"FreeBSD"*) memfree=$(top -d 1 | awk '/Mem:/ {printf $10}') ;;
|
2016-02-01 00:44:03 +00:00
|
|
|
esac
|
2016-01-26 06:44:31 +00:00
|
|
|
memfree=${memfree/M}
|
2016-01-19 00:05:43 +00:00
|
|
|
|
|
|
|
memused=$((memtotal - memfree))
|
|
|
|
memory="${memused}MB / ${memtotal}MB"
|
|
|
|
;;
|
|
|
|
|
2016-02-01 03:56:53 +00:00
|
|
|
"NetBSD"*)
|
2016-01-19 00:05:43 +00:00
|
|
|
memfree=$(($(vmstat | awk 'END{printf $4}') / 1000))
|
|
|
|
memused=$(($(vmstat | awk 'END{printf $3}') / 1000))
|
|
|
|
memtotal=$((memused + memfree))
|
|
|
|
|
|
|
|
memused=$((memtotal - memfree))
|
|
|
|
memory="${memused}MB / ${memtotal}MB"
|
2016-01-18 06:45:32 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-18 06:17:32 +00:00
|
|
|
|
2016-01-18 01:09:37 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-05 06:10:34 +00:00
|
|
|
"Windows")
|
|
|
|
mem="$(awk 'NR < 3 {printf $2 " "}' /proc/meminfo)"
|
|
|
|
|
|
|
|
# Split the string above into 2 vars
|
|
|
|
# This is faster than using an array.
|
|
|
|
set $mem
|
|
|
|
|
|
|
|
memtotal=$1
|
|
|
|
memfree=$2
|
|
|
|
memavail=$((memtotal - memfree))
|
|
|
|
memused=$((memtotal - memavail))
|
2016-01-06 01:04:43 +00:00
|
|
|
memory="$((${memused%% *} / 1024))MB / "
|
2016-01-06 01:03:29 +00:00
|
|
|
memory+="$((${memtotal%% *} / 1024))MB"
|
2016-01-05 06:10:34 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
*)
|
2016-01-03 22:21:13 +00:00
|
|
|
memory="Unknown"
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
2015-12-31 04:42:58 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Song {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getsong () {
|
2016-02-15 13:31:28 +00:00
|
|
|
if pgrep "mpd" >/dev/null 2>&1; then
|
2016-01-20 10:24:04 +00:00
|
|
|
song="$(mpc current)"
|
2016-01-24 11:59:35 +00:00
|
|
|
|
2016-02-15 13:31:28 +00:00
|
|
|
elif pgrep "cmus" >/dev/null 2>&1; then
|
2016-01-20 10:24:04 +00:00
|
|
|
song="$(cmus-remote -Q | grep "tag artist\|title")"
|
|
|
|
song=${song/tag artist }
|
|
|
|
song=${song/tag title/-}
|
|
|
|
song=${song//[[:space:]]/ }
|
2016-01-24 11:59:35 +00:00
|
|
|
|
2016-02-15 13:31:28 +00:00
|
|
|
elif pgrep "mocp" >/dev/null 2>&1; then
|
2016-02-15 13:12:15 +00:00
|
|
|
song="$(mocp -Q "%artist - %song")"
|
|
|
|
|
2016-01-20 10:24:29 +00:00
|
|
|
else
|
|
|
|
song="Unknown"
|
2016-01-20 10:24:04 +00:00
|
|
|
fi
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Resolution {{{
|
|
|
|
|
2016-01-04 03:31:21 +00:00
|
|
|
getresolution () {
|
|
|
|
case "$os" in
|
2016-01-18 01:09:37 +00:00
|
|
|
"Linux" | *"BSD")
|
2016-01-29 13:34:48 +00:00
|
|
|
if type -p xdpyinfo >/dev/null 2>&1; then
|
|
|
|
resolution=$(xdpyinfo 2>/dev/null | awk '/dimensions:/ {printf $2}')
|
|
|
|
else
|
|
|
|
resolution="Unknown"
|
|
|
|
fi
|
2016-01-04 03:31:21 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"Mac OS X")
|
2016-01-06 01:03:29 +00:00
|
|
|
resolution=$(system_profiler SPDisplaysDataType |\
|
2016-01-22 04:12:43 +00:00
|
|
|
awk '/Resolution:/ {printf $2"x"$4" "}')
|
2016-01-04 03:31:21 +00:00
|
|
|
;;
|
2016-01-18 06:24:08 +00:00
|
|
|
|
2016-01-29 13:34:48 +00:00
|
|
|
"*")
|
|
|
|
resolution="Unknown"
|
|
|
|
;;
|
|
|
|
esac
|
2016-01-04 03:31:21 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# GTK Theme/Icons/Font {{{
|
|
|
|
|
2016-01-13 05:36:07 +00:00
|
|
|
getgtk () {
|
2016-02-08 15:21:12 +00:00
|
|
|
# Fix weird output when the function
|
|
|
|
# is run multiple times.
|
|
|
|
unset gtk2theme gtk3theme
|
|
|
|
|
2016-01-13 05:36:07 +00:00
|
|
|
case "$1" in
|
2016-01-26 01:48:40 +00:00
|
|
|
theme)
|
|
|
|
name="gtk-theme-name"
|
|
|
|
gsettings="gtk-theme"
|
2016-02-08 12:29:48 +00:00
|
|
|
gconf="gtk_theme"
|
|
|
|
xfconf="ThemeName"
|
2016-01-26 01:48:40 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
icons)
|
|
|
|
name="gtk-icon-theme-name"
|
|
|
|
gsettings="icon-theme"
|
2016-02-08 12:29:48 +00:00
|
|
|
gconf="icon_theme"
|
|
|
|
xfconf="IconThemeName"
|
2016-01-26 01:48:40 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
font)
|
|
|
|
name="gtk-font-name"
|
|
|
|
gsettings="font-name"
|
2016-02-08 12:29:48 +00:00
|
|
|
gconf="font_theme"
|
|
|
|
xfconf="FontName"
|
2016-01-26 01:48:40 +00:00
|
|
|
;;
|
2016-01-13 05:36:07 +00:00
|
|
|
esac
|
|
|
|
|
2016-02-08 12:29:48 +00:00
|
|
|
# Current DE
|
|
|
|
desktop="$XDG_CURRENT_DESKTOP"
|
|
|
|
desktop=${desktop,,}
|
|
|
|
desktop=${desktop^}
|
|
|
|
|
|
|
|
case "$desktop" in
|
|
|
|
"Cinnamon")
|
|
|
|
if type -p gsettings >/dev/null 2>&1; then
|
|
|
|
gtk3theme=$(gsettings get org.cinnamon.desktop.interface $gsettings)
|
|
|
|
gtk3theme=${gtk3theme//"'"}
|
|
|
|
gtk2theme=${gtk3theme}
|
|
|
|
fi
|
|
|
|
;;
|
2016-01-25 06:26:15 +00:00
|
|
|
|
2016-02-08 12:29:48 +00:00
|
|
|
"Gnome"* | "Unity"* | "Budgie")
|
|
|
|
if type -p gsettings >/dev/null 2>&1; then
|
|
|
|
gtk3theme=$(gsettings get org.gnome.desktop.interface $gsettings)
|
|
|
|
gtk3theme=${gtk3theme//"'"}
|
|
|
|
gtk2theme=${gtk3theme}
|
2016-01-27 00:53:12 +00:00
|
|
|
|
2016-02-08 12:29:48 +00:00
|
|
|
elif type -p gconftool-2 >/dev/null 2>&1; then
|
|
|
|
gtk2theme=$(gconftool-2 -g /desktop/gnome/interface/$gconf)
|
|
|
|
fi
|
|
|
|
;;
|
2016-01-13 01:26:40 +00:00
|
|
|
|
2016-02-08 12:29:48 +00:00
|
|
|
"Mate"*)
|
|
|
|
gtk3theme=$(gsettings get org.mate.interface $gsettings)
|
|
|
|
gtk2theme=${gtk3theme}
|
|
|
|
;;
|
2016-01-28 00:34:41 +00:00
|
|
|
|
2016-02-08 12:29:48 +00:00
|
|
|
"Xfce"*)
|
|
|
|
if type -p xfconf-query >/dev/null 2>&1; then
|
2016-02-08 12:37:14 +00:00
|
|
|
gtk2theme=$(xfconf-query -c xsettings -p /Net/$xfconf)
|
2016-02-08 12:29:48 +00:00
|
|
|
fi
|
2016-01-26 01:48:40 +00:00
|
|
|
;;
|
2016-01-13 05:36:07 +00:00
|
|
|
esac
|
|
|
|
|
2016-01-23 23:30:33 +00:00
|
|
|
# Check for gtk2 theme
|
2016-02-08 20:16:15 +00:00
|
|
|
if [ -z "$gtk2theme" ]; then
|
2016-01-27 00:53:12 +00:00
|
|
|
if [ -f "$HOME/.gtkrc-2.0" ]; then
|
|
|
|
gtk2theme=$(grep "^[^#]*$name" "$HOME/.gtkrc-2.0")
|
2016-01-25 06:26:15 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
elif [ -f "/etc/gtk-2.0/gtkrc" ]; then
|
|
|
|
gtk2theme=$(grep "^[^#]*$name" /etc/gtk-2.0/gtkrc)
|
|
|
|
fi
|
|
|
|
|
|
|
|
gtk2theme=${gtk2theme/${name}*=}
|
|
|
|
gtk2theme=${gtk2theme//\"}
|
2016-01-13 01:26:40 +00:00
|
|
|
fi
|
|
|
|
|
2016-01-23 23:30:33 +00:00
|
|
|
# Check for gtk3 theme
|
2016-02-08 20:16:15 +00:00
|
|
|
if [ -z "$gtk3theme" ]; then
|
2016-01-28 00:34:41 +00:00
|
|
|
if [ -f "$HOME/.config/gtk-3.0/settings.ini" ]; then
|
|
|
|
gtk3theme=$(grep "^[^#]*$name" "$HOME/.config/gtk-3.0/settings.ini")
|
|
|
|
|
|
|
|
elif type -p gsettings >/dev/null 2>&1; then
|
2016-01-27 00:53:12 +00:00
|
|
|
gtk3theme="$(gsettings get org.gnome.desktop.interface $gsettings)"
|
|
|
|
gtk3theme=${gtk3theme//\'}
|
2016-01-25 06:26:15 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
else
|
|
|
|
gtk3theme=$(grep "^[^#]*$name" /etc/gtk-3.0/settings.ini)
|
|
|
|
fi
|
2016-01-23 23:38:46 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
gtk3theme=${gtk3theme/${name}*=}
|
|
|
|
gtk3theme=${gtk3theme//\"}
|
|
|
|
gtk3theme=${gtk3theme/[[:space:]]/ }
|
|
|
|
fi
|
2016-01-23 23:30:33 +00:00
|
|
|
|
2016-02-08 13:47:51 +00:00
|
|
|
# Toggle visibility of gtk themes.
|
|
|
|
[ "$gtk2" == "off" ] && unset gtk2theme
|
|
|
|
[ "$gtk3" == "off" ] && unset gtk3theme
|
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# Format the string based on which themes exist
|
|
|
|
if [ "$gtk2theme" ] && [ "$gtk2theme" == "$gtk3theme" ]; then
|
|
|
|
gtk3theme+=" [GTK2/3]"
|
|
|
|
unset gtk2theme
|
2016-01-25 06:26:15 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
elif [ "$gtk2theme" ] && [ "$gtk3theme" ]; then
|
|
|
|
gtk2theme+=" [GTK2], "
|
|
|
|
gtk3theme+=" [GTK3] "
|
|
|
|
else
|
|
|
|
[ "$gtk2theme" ] && gtk2theme+=" [GTK2] "
|
|
|
|
[ "$gtk3theme" ] && gtk3theme+=" [GTK3] "
|
2016-01-13 01:26:40 +00:00
|
|
|
fi
|
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# Final string
|
|
|
|
gtktheme="${gtk2theme}${gtk3theme}"
|
2016-01-24 23:36:42 +00:00
|
|
|
|
2016-01-27 00:53:12 +00:00
|
|
|
# If the final string is empty print "None"
|
|
|
|
[ -z "$gtktheme" ] && gtktheme="None"
|
2016-01-24 23:36:42 +00:00
|
|
|
|
2016-01-23 23:30:33 +00:00
|
|
|
# Make the output shorter by removing "[GTKX]" from the string
|
2016-01-13 01:26:40 +00:00
|
|
|
if [ "$gtk_shorthand" == "on" ]; then
|
2016-01-24 14:14:35 +00:00
|
|
|
gtktheme=${gtktheme/ '[GTK2]'}
|
2016-01-24 14:10:05 +00:00
|
|
|
gtktheme=${gtktheme/ '[GTK3]'}
|
|
|
|
gtktheme=${gtktheme/ '[GTK2/3]'}
|
2016-01-13 01:26:40 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-01-13 05:36:07 +00:00
|
|
|
getgtktheme () {
|
|
|
|
getgtk theme
|
|
|
|
}
|
2016-01-13 01:26:40 +00:00
|
|
|
|
2016-01-13 05:36:07 +00:00
|
|
|
getgtkicons () {
|
|
|
|
getgtk icons
|
|
|
|
gtkicons="$gtktheme"
|
2016-01-13 01:26:40 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 01:48:40 +00:00
|
|
|
getgtkfont () {
|
|
|
|
getgtk font
|
|
|
|
gtkfont="$gtktheme"
|
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Disk Usage {{{
|
|
|
|
|
2016-01-26 10:25:28 +00:00
|
|
|
getdisk () {
|
2016-01-26 11:52:05 +00:00
|
|
|
# df flags
|
|
|
|
case "$os" in
|
|
|
|
"Linux" | "Windows") df_flags="-h --total" ;;
|
|
|
|
"Mac OS X") df_flags="-H /" ;;
|
2016-01-26 11:31:00 +00:00
|
|
|
|
2016-01-26 11:52:05 +00:00
|
|
|
*"BSD")
|
|
|
|
case "$os" in
|
|
|
|
"FreeBSD") df_flags="-h -c" ;;
|
|
|
|
*) disk="Unknown"; return ;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2016-01-26 10:25:28 +00:00
|
|
|
|
2016-01-26 11:52:05 +00:00
|
|
|
# Get the disk info
|
|
|
|
disk=$(df $df_flags 2>/dev/null | awk 'END{print $2 ":" $3 ":" $5}')
|
2016-01-26 10:25:28 +00:00
|
|
|
|
2016-01-26 11:52:05 +00:00
|
|
|
# Format the output
|
|
|
|
disk_used=${disk#*:}
|
|
|
|
disk_used=${disk_used%%:*}
|
|
|
|
disk_total=${disk%%:*}
|
|
|
|
disk_total_per=${disk#*:*:}
|
2016-01-26 10:25:28 +00:00
|
|
|
|
2016-01-26 11:52:05 +00:00
|
|
|
# Put it all together
|
|
|
|
disk="${disk_used} / ${disk_total} (${disk_total_per})"
|
2016-01-26 10:25:28 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-02-01 14:56:33 +00:00
|
|
|
# Battery Usage {{{
|
|
|
|
|
|
|
|
getbattery () {
|
|
|
|
case "$os" in
|
|
|
|
"Linux")
|
|
|
|
if [ -d "/sys/class/power_supply/BAT0" ]; then
|
2016-02-01 22:09:31 +00:00
|
|
|
# Set the index to the battery number.
|
|
|
|
case "$battery_num" in
|
|
|
|
"all") battery_num="*" index=0 ;;
|
|
|
|
*) index="$battery_num" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Create an array of battery usage from each battery.
|
|
|
|
batteries=($(cat /sys/class/power_supply/BAT${battery_num}/capacity))
|
2016-02-01 14:56:33 +00:00
|
|
|
|
|
|
|
# Get the subtitle and reassign it so it doesn't change.
|
|
|
|
title="$subtitle"
|
|
|
|
|
2016-02-02 01:01:50 +00:00
|
|
|
# If shorthand is on, print each value on the same line
|
|
|
|
if [ "$battery_shorthand" == "on" ]; then
|
2016-02-02 03:11:20 +00:00
|
|
|
battery=${batteries[*]}
|
2016-02-02 01:01:50 +00:00
|
|
|
battery=${battery// /%, }
|
|
|
|
battery="${battery}%"
|
|
|
|
|
|
|
|
else
|
|
|
|
# If there's only a single battery and it's battery 0,
|
|
|
|
# don't number the subtitle.
|
2016-02-05 14:27:17 +00:00
|
|
|
if [ "${#batteries[@]}" == 1 ]; then
|
2016-02-05 14:31:13 +00:00
|
|
|
battery="${batteries[0]}%"
|
2016-02-02 01:01:50 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-02-06 23:03:49 +00:00
|
|
|
# Print each battery on a separate line.
|
2016-02-02 03:13:09 +00:00
|
|
|
for bat in "${batteries[@]}"; do
|
2016-02-02 01:01:50 +00:00
|
|
|
prin "${title}${index}: ${bat}%"
|
|
|
|
index=$((index + 1))
|
|
|
|
done
|
2016-02-01 14:56:33 +00:00
|
|
|
fi
|
|
|
|
else
|
2016-02-01 22:09:31 +00:00
|
|
|
battery="None"
|
2016-02-01 14:56:33 +00:00
|
|
|
fi
|
|
|
|
;;
|
2016-02-02 22:26:47 +00:00
|
|
|
|
|
|
|
"Mac OS X")
|
|
|
|
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Windows")
|
2016-02-04 02:41:16 +00:00
|
|
|
battery="$(wmic Path Win32_Battery get EstimatedChargeRemaining /value)"
|
2016-02-02 22:26:47 +00:00
|
|
|
battery=${battery/EstimatedChargeRemaining'='}
|
|
|
|
battery=${battery//[[:space:]]/ }
|
2016-02-05 11:08:32 +00:00
|
|
|
battery=${battery// }
|
|
|
|
battery+="%"
|
2016-02-02 22:26:47 +00:00
|
|
|
;;
|
2016-02-01 14:56:33 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-02-08 22:36:43 +00:00
|
|
|
# IP Address {{{
|
|
|
|
|
|
|
|
getlocalip () {
|
|
|
|
case "$os" in
|
|
|
|
"Linux")
|
|
|
|
localip="$(ip route get 1 | awk '{print $NF;exit}')"
|
|
|
|
;;
|
|
|
|
|
2016-02-08 23:48:37 +00:00
|
|
|
"Mac OS X")
|
|
|
|
localip="$(ipconfig getifaddr en0)"
|
|
|
|
[ -z "$localip" ] && localip="$(ipconfig getifaddr en1)"
|
|
|
|
;;
|
|
|
|
|
2016-02-09 06:53:52 +00:00
|
|
|
*"BSD")
|
2016-02-09 07:32:01 +00:00
|
|
|
localip="$(ifconfig | awk '/broadcast/ {print $2}')"
|
2016-02-09 06:53:52 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-08 22:36:43 +00:00
|
|
|
"Windows")
|
|
|
|
localip="$(ipconfig | awk -F ': ' '/IPv4 Address/ {printf $2}')"
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
localip="Unknown"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2016-02-09 06:20:19 +00:00
|
|
|
getpublicip () {
|
|
|
|
if type -p curl >/dev/null 2>&1; then
|
2016-02-09 06:26:44 +00:00
|
|
|
publicip="$(curl -w '\n' "$public_ip_host")"
|
2016-02-09 06:20:19 +00:00
|
|
|
|
|
|
|
elif type -p wget >/dev/null 2>&1; then
|
2016-02-09 06:26:44 +00:00
|
|
|
publicip="$(wget -qO- "$public_ip_host"; printf "%s")"
|
2016-02-09 06:20:19 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
publicip="Unknown"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-02-08 22:36:43 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-01-30 11:10:28 +00:00
|
|
|
# Birthday {{{
|
|
|
|
|
|
|
|
getbirthday () {
|
|
|
|
case "$os" in
|
2016-01-30 12:34:53 +00:00
|
|
|
"Linux")
|
2016-01-30 11:10:28 +00:00
|
|
|
birthday="$(ls -alct --full-time / | awk '/lost\+found/ {printf $6 " " $7}')"
|
2016-01-30 12:34:53 +00:00
|
|
|
date_cmd="$(date -d"$birthday" "+%a %d %b %Y %l:%M %p")"
|
2016-01-30 11:10:28 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-30 12:51:12 +00:00
|
|
|
"Mac OS X")
|
2016-01-30 23:31:29 +00:00
|
|
|
birthday="$(ls -alctT /var/log/CDIS.custom | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
|
|
|
date_cmd="$(date -j -f "%b %d %Y" "$birthday" "+%a %d %b %Y %l:%M %p")"
|
|
|
|
;;
|
|
|
|
|
|
|
|
*"BSD")
|
2016-01-30 23:38:20 +00:00
|
|
|
case "$distro" in
|
2016-02-01 03:56:53 +00:00
|
|
|
"OpenBSD"*)
|
2016-01-30 23:38:20 +00:00
|
|
|
birthday="$(ls -alctT / | awk '/lost\+found/ {printf $6 " " $7 " " $9 " " $8}')"
|
2016-01-30 23:45:56 +00:00
|
|
|
birthday_shorthand="on"
|
2016-01-30 23:38:20 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-01 03:56:53 +00:00
|
|
|
"FreeBSD"*)
|
2016-01-30 23:38:20 +00:00
|
|
|
birthday="$(ls -alctT /etc/hostid | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
2016-01-30 23:45:56 +00:00
|
|
|
date_cmd="$(date -j -f "%b %d %Y" "$birthday" "+%a %d %b %Y %l:%M %p")"
|
2016-01-30 23:38:20 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-01 03:56:53 +00:00
|
|
|
"NetBSD"*)
|
2016-01-31 00:02:32 +00:00
|
|
|
birthday="$(ls -alctT /etc/defaults/rc.conf | awk '{printf $6 " " $7 " " $9 " " $8}')"
|
|
|
|
birthday_shorthand="on"
|
|
|
|
;;
|
|
|
|
|
2016-01-30 23:38:20 +00:00
|
|
|
*)
|
|
|
|
birthday="Unknown"
|
|
|
|
;;
|
|
|
|
esac
|
2016-01-30 11:10:28 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-31 00:10:13 +00:00
|
|
|
"Windows")
|
|
|
|
birthday="$(ls -alct --full-time /cygdrive/c/Windows/explorer.exe | awk '{printf $8 " " $9}')"
|
|
|
|
date_cmd="$(date -d"$birthday" "+%a %d %b %Y %l:%M %p")"
|
|
|
|
;;
|
|
|
|
|
2016-01-30 11:10:28 +00:00
|
|
|
*)
|
|
|
|
birthday="Unknown"
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
2016-01-30 11:41:58 +00:00
|
|
|
|
|
|
|
# Strip seconds from time output
|
|
|
|
birthday=${birthday%:*}
|
|
|
|
|
|
|
|
# Pretty output
|
|
|
|
if [ "$birthday_shorthand" == "off" ]; then
|
2016-01-30 12:34:53 +00:00
|
|
|
birthday="$date_cmd"
|
|
|
|
birthday=${birthday/ / }
|
2016-01-30 11:41:58 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Toggle showing the time
|
2016-02-01 00:44:03 +00:00
|
|
|
[ "$birthday_time" == "off" ] && \
|
2016-01-30 11:41:58 +00:00
|
|
|
birthday=${birthday/??:??*}
|
2016-01-30 11:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Terminal colors {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getcols () {
|
|
|
|
if [ "$color_blocks" == "on" ]; then
|
2016-01-04 23:11:25 +00:00
|
|
|
printf "${padding}%s"
|
2016-01-03 06:54:16 +00:00
|
|
|
while [ $start -le $end ]; do
|
2016-01-27 12:42:21 +00:00
|
|
|
printf "\033[48;5;${start}m%${block_width}s"
|
2016-01-03 06:54:16 +00:00
|
|
|
start=$((start + 1))
|
|
|
|
|
|
|
|
# Split the blocks at 8 colors
|
|
|
|
[ $end -ge 9 ] && [ $start -eq 8 ] && \
|
2016-01-04 23:11:25 +00:00
|
|
|
printf "\n%s${clear}${padding}"
|
2016-01-03 06:54:16 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# Clear formatting
|
2016-01-05 23:41:02 +00:00
|
|
|
printf "%b%s" "$clear"
|
2015-12-31 04:42:58 +00:00
|
|
|
fi
|
|
|
|
}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-02-02 03:11:20 +00:00
|
|
|
# Windows Visual Style {{{
|
2016-01-07 03:37:24 +00:00
|
|
|
|
|
|
|
getvisualstyle () {
|
|
|
|
case "$os" in
|
|
|
|
"Windows"*)
|
2016-01-08 01:59:33 +00:00
|
|
|
path="/proc/registry/HKEY_CURRENT_USER/Software/Microsoft"
|
|
|
|
path+="/Windows/CurrentVersion/Themes/CurrentTheme"
|
|
|
|
visualstyle="$(head -n1 $path)"
|
2016-01-07 03:56:50 +00:00
|
|
|
visualstyle="${visualstyle##*\\}"
|
2016-01-07 03:53:11 +00:00
|
|
|
visualstyle="${visualstyle%.*}"
|
2016-01-07 04:08:08 +00:00
|
|
|
visualstyle="${visualstyle^}"
|
2016-01-07 03:37:24 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
visualstyle="This feature only works on Windows"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-01-07 03:37:24 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# }}}
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Images {{{
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Wallpaper {{{
|
|
|
|
|
2016-01-05 07:19:38 +00:00
|
|
|
getwallpaper () {
|
|
|
|
case "$os" in
|
2016-01-18 01:09:37 +00:00
|
|
|
"Linux" | *"BSD")
|
2016-01-24 00:05:08 +00:00
|
|
|
if type -p feh >/dev/null 2>&1 && [ -f "$HOME/.fehbg" ]; then
|
2016-01-20 10:35:32 +00:00
|
|
|
img="$(awk -F\' '/feh/ {printf $2}' "$HOME/.fehbg")"
|
2016-01-24 11:59:35 +00:00
|
|
|
|
2016-01-20 10:35:32 +00:00
|
|
|
elif type -p nitrogen >/dev/null 2>&1; then
|
|
|
|
img="$(awk -F'=' '/file/ {printf $2}' "$HOME/.config/nitrogen/bg-saved.cfg")"
|
2016-01-24 11:59:35 +00:00
|
|
|
|
2016-01-24 00:03:29 +00:00
|
|
|
elif type -p gsettings >/dev/null 2>&1; then
|
2016-02-09 10:12:09 +00:00
|
|
|
case "$XDG_CURRENT_DESKTOP" in
|
|
|
|
"MATE"*) img="$(gsettings get org.mate.background picture-filename 2>/dev/null)" ;;
|
|
|
|
*) img="$(gsettings get org.gnome.desktop.background picture-uri 2>/dev/null)" ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Strip quotes etc from the path.
|
2016-01-24 00:03:29 +00:00
|
|
|
img=${img/'file://'}
|
|
|
|
img=${img//\'}
|
2016-01-20 10:35:32 +00:00
|
|
|
fi
|
2016-01-05 07:19:38 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-17 21:37:37 +00:00
|
|
|
"Mac OS X")
|
2016-01-17 22:10:59 +00:00
|
|
|
img="$(osascript -e 'tell app "finder" to get posix path of (get desktop picture as text)')"
|
2016-01-17 21:37:37 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-05 07:50:06 +00:00
|
|
|
"Windows")
|
|
|
|
case "$distro" in
|
|
|
|
"Windows XP")
|
2016-01-06 01:03:29 +00:00
|
|
|
img="/cygdrive/c/Documents and Settings/${USER}"
|
|
|
|
img+="/Local Settings/Application Data/Microsoft"
|
|
|
|
img+="/Wallpaper1.bmp"
|
2016-01-05 07:50:06 +00:00
|
|
|
;;
|
2016-01-05 07:19:38 +00:00
|
|
|
|
2016-01-05 07:50:06 +00:00
|
|
|
"Windows"*)
|
2016-01-06 01:03:29 +00:00
|
|
|
img="$APPDATA/Microsoft/Windows/Themes"
|
|
|
|
img+="/TranscodedWallpaper.jpg"
|
2016-01-05 07:50:06 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-05 07:19:38 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-02-09 10:30:41 +00:00
|
|
|
|
|
|
|
# If img is an xml file don't use it.
|
|
|
|
[ "${img/*\./}" == "xml" ] && img=""
|
2016-01-05 07:19:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
# Ascii {{{
|
|
|
|
|
|
|
|
getascii () {
|
2016-01-28 09:04:47 +00:00
|
|
|
# Change color of logo based on distro
|
|
|
|
shopt -s nocasematch
|
|
|
|
case "$ascii_distro" in
|
|
|
|
"Arch Linux"* | "Antergos"*)
|
|
|
|
c1=$(color 6)
|
|
|
|
c2=$(color 4)
|
|
|
|
;;
|
|
|
|
|
|
|
|
"CentOS"*)
|
|
|
|
c1=$(color 3)
|
|
|
|
c2=$(color 2)
|
|
|
|
c3=$(color 4)
|
|
|
|
c4=$(color 5)
|
|
|
|
c5=$(color 7)
|
|
|
|
;;
|
|
|
|
|
2016-02-15 01:07:32 +00:00
|
|
|
"CRUX"* | "Chakra"* | "gNewSense"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 4)
|
|
|
|
c2=$(color 5)
|
|
|
|
c3=$(color 7)
|
|
|
|
;;
|
|
|
|
|
2016-02-15 00:55:18 +00:00
|
|
|
"Debian"* | "FreeBSD"* | "Elementary"* | "CrunchBang"* | "Ubuntu"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 1)
|
2016-01-29 07:24:34 +00:00
|
|
|
c3=$(color 3)
|
2016-01-28 09:04:47 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-14 09:43:08 +00:00
|
|
|
"Red Hat"*)
|
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 1)
|
|
|
|
c3=$(color 3)
|
|
|
|
ascii_distro="redhat"
|
|
|
|
;;
|
|
|
|
|
2016-02-15 11:59:28 +00:00
|
|
|
"Fedora"* | "Sabayon"* | "Frugalware"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 4)
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Gentoo"* | "Funtoo"*)
|
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 5)
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Kali"*)
|
|
|
|
c1=$(color 4)
|
|
|
|
c2=$(color 8)
|
|
|
|
;;
|
|
|
|
|
2016-02-15 01:39:02 +00:00
|
|
|
"KaOS"*)
|
|
|
|
c1=$(color 4)
|
|
|
|
c2=$(color 7)
|
|
|
|
c3=$(color 1)
|
|
|
|
;;
|
|
|
|
|
2016-01-29 07:24:34 +00:00
|
|
|
"Mac OS X"* | "Manjaro"* | "Deepin"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 2)
|
|
|
|
c2=$(color 3)
|
|
|
|
c3=$(color 1)
|
|
|
|
c4=$(color 1)
|
|
|
|
c5=$(color 5)
|
|
|
|
c6=$(color 4)
|
|
|
|
;;
|
|
|
|
|
2016-02-15 00:59:28 +00:00
|
|
|
"OpenMandriva"*)
|
2016-02-15 00:55:18 +00:00
|
|
|
c1=$(color 4)
|
|
|
|
c2=$(color 3)
|
|
|
|
;;
|
|
|
|
|
2016-02-12 10:28:24 +00:00
|
|
|
"Mageia"*)
|
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 6)
|
|
|
|
;;
|
|
|
|
|
2016-02-14 09:35:42 +00:00
|
|
|
"Peppermint"*)
|
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 1)
|
|
|
|
;;
|
|
|
|
|
2016-01-29 07:02:25 +00:00
|
|
|
*"Mint"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 2)
|
2016-01-29 07:02:25 +00:00
|
|
|
ascii_distro="mint"
|
2016-01-28 09:04:47 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-15 22:52:10 +00:00
|
|
|
"LMDE"* | "Chapeau"*)
|
2016-02-15 01:20:26 +00:00
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 2)
|
|
|
|
;;
|
|
|
|
|
2016-02-13 10:14:50 +00:00
|
|
|
"NetBSD"* | "Parabola"* | "Tails"* | "BLAG"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 5)
|
|
|
|
c2=$(color 7)
|
|
|
|
;;
|
|
|
|
|
|
|
|
"OpenBSD"*)
|
|
|
|
c1=$(color 3)
|
|
|
|
c2=$(color 3)
|
|
|
|
c3=$(color 6)
|
|
|
|
c4=$(color 1)
|
|
|
|
c5=$(color 8)
|
|
|
|
;;
|
|
|
|
|
|
|
|
"OpenSuse"*)
|
|
|
|
c1=$(color 2)
|
|
|
|
c2=$(color 7)
|
|
|
|
;;
|
|
|
|
|
2016-02-14 06:02:45 +00:00
|
|
|
"PCLinuxOS"* | "Slackware"*)
|
2016-02-13 00:16:15 +00:00
|
|
|
c1=$(color 4)
|
|
|
|
c2=$(color 7)
|
|
|
|
;;
|
|
|
|
|
2016-02-11 23:43:31 +00:00
|
|
|
"Raspbian"*)
|
|
|
|
c1=$(color 2)
|
|
|
|
c2=$(color 1)
|
|
|
|
;;
|
|
|
|
|
2016-02-14 08:42:27 +00:00
|
|
|
"Solus"*)
|
|
|
|
c1=$(color 7)
|
|
|
|
c2=$(color 8)
|
|
|
|
;;
|
|
|
|
|
2016-02-14 12:29:04 +00:00
|
|
|
"Trisquel"* | "NixOS"*)
|
2016-01-28 09:04:47 +00:00
|
|
|
c1=$(color 4)
|
2016-02-14 06:02:45 +00:00
|
|
|
c2=$(color 6)
|
2016-01-28 09:04:47 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"void"*)
|
|
|
|
c1=$(color 2)
|
|
|
|
c2=$(color 2)
|
|
|
|
c3=$(color 8)
|
|
|
|
;;
|
|
|
|
|
2016-01-29 07:16:14 +00:00
|
|
|
"Windows 10"*)
|
|
|
|
c1=$(color 6)
|
|
|
|
ascii_distro="windows10"
|
|
|
|
;;
|
|
|
|
|
2016-01-28 09:04:47 +00:00
|
|
|
"Windows"*)
|
|
|
|
c1=$(color 1)
|
|
|
|
c2=$(color 2)
|
|
|
|
c3=$(color 4)
|
|
|
|
c4=$(color 3)
|
|
|
|
;;
|
2016-02-13 01:20:40 +00:00
|
|
|
|
|
|
|
"Zorin"*)
|
|
|
|
c1=$(color 4)
|
|
|
|
;;
|
2016-01-28 09:04:47 +00:00
|
|
|
esac
|
|
|
|
|
2016-01-31 22:25:45 +00:00
|
|
|
# If the ascii file doesn't exist
|
|
|
|
# fallback to showing distro ascii.
|
2016-02-04 10:22:58 +00:00
|
|
|
[ ! -f "$ascii" ] && ascii="distro"
|
2016-01-31 22:25:45 +00:00
|
|
|
|
2016-01-28 09:04:47 +00:00
|
|
|
if [ "$ascii" == "distro" ]; then
|
2016-01-28 22:45:35 +00:00
|
|
|
# Lowercase the distro name
|
2016-01-28 09:04:47 +00:00
|
|
|
ascii=${ascii_distro,,}
|
2016-01-28 15:03:15 +00:00
|
|
|
|
2016-01-28 22:45:35 +00:00
|
|
|
# Check /usr/share/fetch for ascii before
|
|
|
|
# looking in the script's directory.
|
|
|
|
if [ -f "/usr/share/fetch/ascii/distro/${ascii/ *}" ]; then
|
|
|
|
ascii="/usr/share/fetch/ascii/distro/${ascii/ *}"
|
|
|
|
else
|
2016-01-29 15:14:29 +00:00
|
|
|
getscriptdir
|
2016-01-28 22:45:35 +00:00
|
|
|
|
2016-01-29 06:40:49 +00:00
|
|
|
# If the ascii file doesn't exist
|
|
|
|
# fallback to text mode.
|
2016-01-29 15:14:29 +00:00
|
|
|
if [ ! -f "$script_dir/ascii/distro/${ascii/ *}" ]; then
|
2016-01-28 22:45:35 +00:00
|
|
|
padding="\033[0C"
|
2016-01-29 00:06:26 +00:00
|
|
|
image="off"
|
2016-01-28 22:45:35 +00:00
|
|
|
return
|
|
|
|
fi
|
2016-01-29 06:56:39 +00:00
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
ascii="$script_dir/ascii/distro/${ascii/ *}"
|
2016-01-28 22:45:35 +00:00
|
|
|
fi
|
2016-01-28 09:04:47 +00:00
|
|
|
|
2016-02-04 10:22:58 +00:00
|
|
|
# Overwrite distro colors if '$ascii_colors' doesn't
|
2016-01-28 15:03:15 +00:00
|
|
|
# equal 'distro'.
|
2016-02-13 22:26:52 +00:00
|
|
|
if [ "${ascii_colors[0]}" != "distro" ]; then
|
|
|
|
c1=$(color "${ascii_colors[0]}")
|
|
|
|
c2=$(color "${ascii_colors[1]}")
|
|
|
|
c3=$(color "${ascii_colors[2]}")
|
|
|
|
c4=$(color "${ascii_colors[3]}")
|
|
|
|
c5=$(color "${ascii_colors[4]}")
|
|
|
|
c6=$(color "${ascii_colors[5]}")
|
2016-01-28 09:04:47 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# We only use eval in the distro ascii files.
|
2016-01-28 13:00:08 +00:00
|
|
|
print="$(eval printf "$(<"$ascii")")"
|
2016-01-28 09:04:47 +00:00
|
|
|
else
|
2016-02-04 10:22:58 +00:00
|
|
|
case "${ascii_colors[0]}" in
|
2016-01-28 09:04:47 +00:00
|
|
|
"distro") ascii_color="$c1" ;;
|
2016-02-04 10:22:58 +00:00
|
|
|
*) ascii_color="$(color ${ascii_colors[0]})" ;;
|
2016-01-28 09:04:47 +00:00
|
|
|
esac
|
|
|
|
|
2016-02-04 10:22:58 +00:00
|
|
|
print="${ascii_color}$(<"$ascii")"
|
2016-01-28 09:04:47 +00:00
|
|
|
fi
|
|
|
|
|
2016-02-09 23:20:51 +00:00
|
|
|
# Set locale to get correct padding
|
2016-02-10 11:54:07 +00:00
|
|
|
export LC_ALL="$SYS_LOCALE"
|
2016-02-09 23:20:51 +00:00
|
|
|
|
2016-01-28 22:45:35 +00:00
|
|
|
# Turn the file into a variable.
|
2016-01-30 05:31:22 +00:00
|
|
|
ascii_strip=$(<"$ascii")
|
2016-01-28 22:45:35 +00:00
|
|
|
|
|
|
|
# Strip escape codes backslashes from contents of
|
2016-01-28 09:04:47 +00:00
|
|
|
ascii_strip=${ascii_strip//\$\{??\}}
|
|
|
|
ascii_strip=${ascii_strip//\\}
|
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
# Get length of longest line
|
2016-02-09 23:20:51 +00:00
|
|
|
length="$(wc -L 2>/dev/null <<< "$ascii_strip")"
|
2016-01-27 13:26:35 +00:00
|
|
|
|
2016-01-28 23:11:34 +00:00
|
|
|
# Get the height in lines
|
2016-02-09 23:20:51 +00:00
|
|
|
lines="$(($(wc -l 2>/dev/null <<< "$ascii_strip") + 1))"
|
2016-01-28 23:11:34 +00:00
|
|
|
|
2016-01-27 13:26:35 +00:00
|
|
|
# Fallback to using awk on systems without 'wc -L'
|
|
|
|
[ -z "$length" ] && \
|
2016-02-09 23:20:51 +00:00
|
|
|
length="$(awk 'length>max{max=length}END{print max}' <<< "$ascii_strip")"
|
2016-01-27 11:33:22 +00:00
|
|
|
|
|
|
|
# Set the text padding
|
2016-01-27 12:42:21 +00:00
|
|
|
padding="\033[$((length + gap))C"
|
2016-01-27 11:33:22 +00:00
|
|
|
|
|
|
|
# Print the ascii
|
2016-01-28 09:04:47 +00:00
|
|
|
printf "%b%s" "$print"
|
2016-02-09 23:20:51 +00:00
|
|
|
|
|
|
|
# Set locale to get correct padding
|
|
|
|
export LC_ALL=C
|
2016-01-27 11:33:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Image {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
getimage () {
|
2016-01-28 13:00:08 +00:00
|
|
|
# Fallback to ascii mode if imagemagick isn't installed.
|
|
|
|
if ! type -p convert >/dev/null 2>&1; then
|
|
|
|
image="ascii"
|
|
|
|
fi
|
|
|
|
|
2016-01-31 21:53:00 +00:00
|
|
|
# Call function based on $image
|
2016-01-08 02:29:24 +00:00
|
|
|
case "$image" in
|
|
|
|
"wall")
|
|
|
|
getwallpaper
|
|
|
|
;;
|
|
|
|
|
|
|
|
"shuffle")
|
2016-02-04 07:42:54 +00:00
|
|
|
img="$(find "$shuffle_dir" -type f \( -name '*.jpg' -o -name '*.png' \) -print0 |
|
|
|
|
shuf -n1 -z)"
|
2016-01-08 02:29:24 +00:00
|
|
|
;;
|
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
"ascii")
|
|
|
|
getascii
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
|
2016-01-08 02:29:24 +00:00
|
|
|
*)
|
|
|
|
img="$image"
|
|
|
|
;;
|
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2016-02-04 07:42:54 +00:00
|
|
|
# If $img isn't a file, fallback to ascii mode.
|
2016-01-30 06:55:31 +00:00
|
|
|
if [ ! -f "$img" ]; then
|
|
|
|
# Fallback to ascii mode
|
|
|
|
image="ascii"
|
|
|
|
getascii
|
|
|
|
|
2016-01-20 10:48:38 +00:00
|
|
|
return
|
|
|
|
fi
|
2016-01-20 10:46:20 +00:00
|
|
|
|
2016-02-01 02:19:09 +00:00
|
|
|
# Get lines and columns
|
2016-02-01 00:05:46 +00:00
|
|
|
columns=$(tput cols)
|
2016-02-01 02:19:09 +00:00
|
|
|
lines=$(tput lines)
|
2016-02-01 00:05:46 +00:00
|
|
|
|
2016-01-31 21:53:00 +00:00
|
|
|
# Image size is half of the terminal
|
2016-02-04 13:07:20 +00:00
|
|
|
[ "$image_size" == "half" ] && \
|
|
|
|
image_size=$((columns * font_width / 2))
|
2016-01-31 21:53:00 +00:00
|
|
|
|
|
|
|
# Where to draw the image
|
|
|
|
case "$image_position" in
|
|
|
|
"left")
|
|
|
|
# Padding is half the terminal width + gap
|
2016-02-04 07:42:54 +00:00
|
|
|
padding="\033[$((image_size / font_width + gap))C"
|
2016-01-31 21:53:00 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"right")
|
|
|
|
padding="\033[0C"
|
2016-02-04 07:42:54 +00:00
|
|
|
xoffset=$((columns * font_width / 2 - gap))
|
2016-01-31 21:53:00 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-01-31 05:25:11 +00:00
|
|
|
# Make the directory if it doesn't exist
|
2016-01-31 10:33:02 +00:00
|
|
|
mkdir -p "$thumbnail_dir"
|
2016-01-31 05:25:11 +00:00
|
|
|
|
2016-01-24 00:17:48 +00:00
|
|
|
# Check to see if the image has a file extension
|
|
|
|
case "${img##*/}" in
|
|
|
|
*"."*)
|
|
|
|
# Get name of image and prefix it with it's crop mode and offset
|
2016-02-04 07:42:54 +00:00
|
|
|
imgname="$crop_mode-$crop_offset-$image_size-${img##*/}"
|
2016-01-24 00:17:48 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
# Add a file extension if the image doesn't have one. This
|
|
|
|
# fixes w3m not being able to display them.
|
2016-02-04 07:42:54 +00:00
|
|
|
imgname="$crop_mode-$crop_offset-$image_size-${img##*/}.jpg"
|
2016-01-24 00:17:48 +00:00
|
|
|
;;
|
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
|
|
|
|
# Check to see if the thumbnail exists before we do any cropping.
|
2016-01-31 10:33:02 +00:00
|
|
|
if [ ! -f "$thumbnail_dir/$imgname" ]; then
|
2016-01-03 06:54:16 +00:00
|
|
|
# Get image size so that we can do a better crop
|
2016-01-05 08:24:57 +00:00
|
|
|
size=$(identify -format "%w %h" "$img")
|
2016-01-03 06:54:16 +00:00
|
|
|
width=${size%% *}
|
|
|
|
height=${size##* }
|
|
|
|
|
|
|
|
# This checks to see if height is geater than width
|
|
|
|
# so we can do a better crop of portrait images.
|
2016-01-26 03:48:39 +00:00
|
|
|
if [ "$height" -gt "$width" ]; then
|
2016-01-03 06:54:16 +00:00
|
|
|
size=$width
|
|
|
|
else
|
|
|
|
size=$height
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$crop_mode" in
|
|
|
|
fit)
|
2016-01-06 01:03:29 +00:00
|
|
|
c=$(convert "$img" \
|
|
|
|
-colorspace srgb \
|
|
|
|
-format "%[pixel:p{0,0}]" info:)
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
convert \
|
|
|
|
"$img" \
|
|
|
|
-trim +repage \
|
|
|
|
-gravity south \
|
|
|
|
-background "$c" \
|
|
|
|
-extent "$size"x"$size" \
|
2016-02-04 07:42:54 +00:00
|
|
|
-scale "$image_size"x"$image_size" \
|
2016-01-31 10:33:02 +00:00
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
fill)
|
|
|
|
convert \
|
|
|
|
"$img" \
|
|
|
|
-trim +repage \
|
2016-02-04 07:42:54 +00:00
|
|
|
-scale "$image_size"x"$image_size"^ \
|
|
|
|
-extent "$image_size"x"$image_size" \
|
2016-01-31 10:33:02 +00:00
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
convert \
|
|
|
|
"$img" \
|
|
|
|
-gravity $crop_offset \
|
|
|
|
-crop "$size"x"$size"+0+0 \
|
2016-01-06 01:49:21 +00:00
|
|
|
-quality 95 \
|
2016-02-04 07:42:54 +00:00
|
|
|
-scale "$image_size"x"$image_size" \
|
2016-01-31 10:33:02 +00:00
|
|
|
"$thumbnail_dir/$imgname"
|
2016-01-03 06:54:16 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The final image
|
2016-01-31 10:33:02 +00:00
|
|
|
img="$thumbnail_dir/$imgname"
|
2015-12-30 10:18:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 23:28:16 +00:00
|
|
|
scrot_path="$scrot_dir/$scrot_name"
|
2016-01-08 05:08:00 +00:00
|
|
|
takescrot () {
|
2016-01-22 23:28:16 +00:00
|
|
|
$scrot_cmd "$scrot_path"
|
2016-01-08 05:08:00 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-01-30 06:44:52 +00:00
|
|
|
# Find w3m-img {{{
|
|
|
|
|
|
|
|
# Find w3mimgdisplay automatically
|
|
|
|
getw3m_img_path () {
|
|
|
|
if [ -x "$w3m_img_path" ]; then
|
|
|
|
return
|
|
|
|
|
|
|
|
elif [ -x "/usr/lib/w3m/w3mimgdisplay" ]; then
|
|
|
|
w3m_img_path="/usr/lib/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
elif [ -x "/usr/libexec/w3m/w3mimgdisplay" ]; then
|
|
|
|
w3m_img_path="/usr/libexec/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
elif [ -x "/usr/lib64/w3m/w3mimgdisplay" ]; then
|
|
|
|
w3m_img_path="/usr/lib64/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
elif [ -x "/usr/libexec64/w3m/w3mimgdisplay" ]; then
|
|
|
|
w3m_img_path="/usr/libexec64/w3m/w3mimgdisplay"
|
|
|
|
|
|
|
|
else
|
|
|
|
image="ascii"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Text Formatting {{{
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Info {{{
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
info () {
|
2016-02-01 14:56:33 +00:00
|
|
|
# $1 is the subtitle
|
|
|
|
subtitle="$1"
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
# Call the function and update variable
|
|
|
|
if [ -z "$2" ]; then
|
2016-01-26 03:48:39 +00:00
|
|
|
"get$1" 2>/dev/null
|
2016-01-20 21:58:50 +00:00
|
|
|
eval output="\$${1}"
|
2016-02-01 07:50:10 +00:00
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
else
|
2016-01-26 03:48:39 +00:00
|
|
|
"get$2" 2>/dev/null
|
2016-01-20 21:58:50 +00:00
|
|
|
eval output="\$${2}"
|
|
|
|
fi
|
|
|
|
|
2016-02-01 07:50:10 +00:00
|
|
|
# If the output is empty, don't print anything
|
|
|
|
[ -z "$output" ] && return
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
case "$1" in
|
|
|
|
title)
|
|
|
|
string="${bold}${title_color}${output}"
|
|
|
|
string="${string/@/${at_color}@${title_color}}"
|
|
|
|
length=${#output}
|
2016-02-05 06:02:53 +00:00
|
|
|
|
|
|
|
# Hide the title in stdout mode
|
|
|
|
[ "$stdout" == "on" ] && \
|
|
|
|
[ "$stdout_title" == "off" ] &&\
|
|
|
|
string=""
|
2016-01-20 21:58:50 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
underline)
|
|
|
|
string="${underline_color}${output}"
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2016-02-01 14:56:33 +00:00
|
|
|
string="${bold}${subtitle_color}${subtitle}${clear}"
|
2016-01-20 21:58:50 +00:00
|
|
|
string+="${colon_color}: ${info_color}${output}"
|
|
|
|
length=$((${#subtitle} + ${#output} + 2))
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-02-05 05:29:11 +00:00
|
|
|
# If there's no subtitle don't print one
|
|
|
|
[ -z "$2" ] && string=${string/*: }
|
|
|
|
|
2016-02-01 14:56:33 +00:00
|
|
|
# Print the string
|
2016-02-05 05:29:11 +00:00
|
|
|
if [ "$stdout" == "on" ]; then
|
2016-02-05 15:25:21 +00:00
|
|
|
|
2016-02-05 05:29:11 +00:00
|
|
|
# Unset the vars containg escape codes as lemonbar doesn't
|
|
|
|
# support them.
|
2016-02-05 23:21:12 +00:00
|
|
|
unset -v bold subtitle_color clear colon_color info_color \
|
2016-02-05 05:29:11 +00:00
|
|
|
underline_color title_color at_color
|
|
|
|
|
2016-02-05 15:25:21 +00:00
|
|
|
# Show/Hide subtitles
|
2016-02-05 15:36:00 +00:00
|
|
|
[ "$stdout_subtitles" == "off" ] && string=${string/*: }
|
2016-02-05 05:29:11 +00:00
|
|
|
|
2016-02-05 15:25:21 +00:00
|
|
|
# If the string isn't empty, print it.
|
2016-02-06 23:03:49 +00:00
|
|
|
[ ! -z "$string" ] && printf "%s" "${string}${stdout_separator}"
|
2016-02-05 15:25:21 +00:00
|
|
|
|
2016-02-05 05:29:11 +00:00
|
|
|
else
|
|
|
|
printf "%b%s\n" "${padding}${string}${clear}"
|
|
|
|
fi
|
2016-01-20 21:58:50 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Prin {{{
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
prin () {
|
|
|
|
case "$1" in
|
|
|
|
*:*)
|
|
|
|
subtitle=${1%%:*}
|
|
|
|
output=${1#*: }
|
|
|
|
|
|
|
|
string="${bold}${subtitle_color}${subtitle}${clear}"
|
|
|
|
string+="${colon_color}: ${info_color}${output}"
|
|
|
|
length=$((${#subtitle} + ${#output} + 1))
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
string="${info_color}${1}"
|
|
|
|
length=${#1}
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-02-05 14:04:41 +00:00
|
|
|
# Print the info
|
2016-02-05 14:22:29 +00:00
|
|
|
if [ "$stdout" == "on" ]; then
|
2016-02-06 23:03:49 +00:00
|
|
|
printf "%s" "${string}${stdout_separator}"
|
2016-02-05 14:22:29 +00:00
|
|
|
else
|
|
|
|
printf "%b%s\n" "${padding}${string}${clear}"
|
|
|
|
fi
|
2016-01-20 21:58:50 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-02-05 23:04:50 +00:00
|
|
|
# Stdout {{{
|
|
|
|
|
|
|
|
stdout () {
|
2016-02-05 23:21:12 +00:00
|
|
|
printinfo () {
|
|
|
|
index=1
|
|
|
|
for func in "${args[@]}"; do
|
2016-02-05 23:04:50 +00:00
|
|
|
|
2016-02-05 23:21:12 +00:00
|
|
|
case "$func" in
|
|
|
|
"--stdout") continue ;;
|
|
|
|
"--"*) break ;;
|
|
|
|
*)
|
2016-02-06 23:03:49 +00:00
|
|
|
case "${args[$((index + 1))]}" in "--"*) unset stdout_separator ;; esac
|
2016-02-05 23:21:12 +00:00
|
|
|
info "$func"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
index=$((index + 1))
|
|
|
|
done
|
|
|
|
}
|
2016-02-05 23:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# Underline {{{
|
|
|
|
|
2016-01-20 21:58:50 +00:00
|
|
|
getunderline () {
|
2016-02-05 23:25:12 +00:00
|
|
|
case "$underline" in
|
|
|
|
"on")
|
|
|
|
underline=$(printf %"$length"s)
|
|
|
|
underline=${underline// /$underline_char}
|
|
|
|
;;
|
|
|
|
"off") underline="" ;;
|
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Colors {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
colors () {
|
2016-01-27 12:42:21 +00:00
|
|
|
title_color="\033[38;5;${title_color}m"
|
|
|
|
at_color="\033[38;5;${at_color}m"
|
|
|
|
subtitle_color="\033[38;5;${subtitle_color}m"
|
|
|
|
colon_color="\033[38;5;${colon_color}m"
|
|
|
|
underline_color="\033[38;5;${underline_color}m"
|
|
|
|
info_color="\033[38;5;${info_color}m"
|
2015-12-30 10:18:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-20 22:49:50 +00:00
|
|
|
color () {
|
2016-01-27 12:42:21 +00:00
|
|
|
printf "%b%s" "\033[38;5;${1}m"
|
2016-01-20 22:49:50 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Bold {{{
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
bold () {
|
2016-02-01 02:19:09 +00:00
|
|
|
case "$bold" in
|
|
|
|
"on") bold="\033[1m" ;;
|
|
|
|
"off") bold="" ;;
|
|
|
|
esac
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 12:06:53 +00:00
|
|
|
# }}}
|
|
|
|
|
2016-01-29 12:54:12 +00:00
|
|
|
# Linebreak {{{
|
|
|
|
|
|
|
|
getlinebreak () {
|
2016-02-01 07:50:10 +00:00
|
|
|
linebreak=" "
|
2016-01-29 12:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
2016-01-26 12:06:53 +00:00
|
|
|
|
2016-01-27 12:42:21 +00:00
|
|
|
clear="\033[0m"
|
2016-01-03 06:54:16 +00:00
|
|
|
|
2015-12-31 00:21:10 +00:00
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
# }}}
|
|
|
|
|
2015-12-30 11:30:43 +00:00
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
# Other {{{
|
|
|
|
|
|
|
|
|
|
|
|
# Get script directory {{{
|
|
|
|
|
|
|
|
getscriptdir () {
|
|
|
|
# Use $0 to get the script's physical path.
|
2016-01-30 05:31:22 +00:00
|
|
|
cd "${0%/*}" || exit
|
2016-01-29 15:14:29 +00:00
|
|
|
script_dir=${0##*/}
|
|
|
|
|
|
|
|
# Iterate down a (possible) chain of symlinks.
|
|
|
|
while [ -L "$script_dir" ]; do
|
2016-01-30 05:31:22 +00:00
|
|
|
script_dir="$(readlink "$script_dir")"
|
|
|
|
cd "${script_dir%/*}" || exit
|
2016-01-29 15:14:29 +00:00
|
|
|
script_dir="${script_dir##*/}"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Final directory
|
|
|
|
script_dir="$(pwd -P)"
|
|
|
|
}
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
# Source Config {{{
|
|
|
|
|
|
|
|
# Check for $config_file first
|
|
|
|
getconfig () {
|
2016-01-30 01:05:53 +00:00
|
|
|
# Check $config_file
|
2016-01-29 15:14:29 +00:00
|
|
|
if [ -f "$config_file" ]; then
|
|
|
|
source "$config_file"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-02-08 11:02:49 +00:00
|
|
|
# Make the directory if it doesn't exist
|
|
|
|
mkdir -p "$HOME/.config/fetch/"
|
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
# Check $HOME/.config/fetch and create the
|
|
|
|
# dir/files if they don't exist.
|
|
|
|
if [ -f "$HOME/.config/fetch/config" ]; then
|
|
|
|
source "$HOME/.config/fetch/config"
|
2016-01-29 15:18:27 +00:00
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
elif [ -f "/usr/share/fetch/config" ]; then
|
|
|
|
cp "/usr/share/fetch/config" "$HOME/.config/fetch"
|
|
|
|
source "$HOME/.config/fetch/config"
|
2016-01-29 15:18:27 +00:00
|
|
|
|
2016-02-08 11:02:49 +00:00
|
|
|
elif [ -f "/usr/local/share/fetch/config" ]; then
|
|
|
|
cp "/usr/local/share/fetch/config" "$HOME/.config/fetch"
|
|
|
|
source "$HOME/.config/fetch/config"
|
|
|
|
|
2016-01-29 15:14:29 +00:00
|
|
|
else
|
|
|
|
getscriptdir
|
|
|
|
|
2016-01-30 10:26:08 +00:00
|
|
|
cp "$script_dir/config/config" "$HOME/.config/fetch"
|
2016-01-29 15:14:29 +00:00
|
|
|
source "$HOME/.config/fetch/config"
|
|
|
|
fi
|
|
|
|
}
|
2016-01-30 00:30:21 +00:00
|
|
|
|
2016-01-30 01:05:53 +00:00
|
|
|
# Check the commandline flags early for '--config none/off'
|
|
|
|
case "$@" in
|
|
|
|
*"--config off"* | *'--config "off"'* | *"--config 'off'"* | \
|
|
|
|
*"--config none"* | *'--config "none"'* | *"--config 'none'"*)
|
|
|
|
config="off"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-01-30 00:30:21 +00:00
|
|
|
# If config files are enabled
|
|
|
|
[ "$config" == "on" ] && getconfig
|
2016-01-29 15:14:29 +00:00
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# Usage {{{
|
|
|
|
|
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
usage () { cat << EOF
|
|
|
|
|
2016-02-03 08:15:42 +00:00
|
|
|
usage: fetch --option "value" --option "value"
|
2016-01-05 22:40:54 +00:00
|
|
|
|
|
|
|
Info:
|
2016-02-03 08:15:42 +00:00
|
|
|
--disable infoname Allows you to disable an info line from appearing
|
|
|
|
in the output.
|
|
|
|
NOTE: You can supply multiple args. eg.
|
|
|
|
'fetch --disable cpu gpu disk shell'
|
|
|
|
--osx_buildversion on/off Hide/Show Mac OS X build version.
|
|
|
|
--os_arch on/off Hide/Show Windows 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 support Linux with cpufreq.
|
|
|
|
--kernel_shorthand on/off Shorten the output of kernel
|
|
|
|
--uptime_shorthand on/off Shorten the output of uptime (tiny, on, off)
|
|
|
|
--gpu_shorthand on/off Shorten the output of GPU
|
|
|
|
--gtk_shorthand on/off Shorten output of gtk theme/icons
|
|
|
|
--gtk2 on/off Enable/Disable gtk2 theme/icons output
|
|
|
|
--gtk3 on/off Enable/Disable gtk3 theme/icons output
|
|
|
|
--shell_path on/off Enable/Disable showing \$SHELL path
|
|
|
|
--shell_version on/off Enable/Disable showing \$SHELL version
|
|
|
|
--battery_num num Which battery to display, default value is 'all'
|
|
|
|
--battery_shorthand on/off Whether or not each battery gets its own line/title
|
2016-02-09 06:26:44 +00:00
|
|
|
--ip_host url Url to ping for public IP
|
2016-02-03 08:15:42 +00:00
|
|
|
--birthday_shorthand on/off Shorten the output of birthday
|
2016-02-07 05:41:34 +00:00
|
|
|
--birthday_time on/off Enable/Disable showing the time in birthday output
|
2016-01-19 02:49:30 +00:00
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
Text Colors:
|
2016-02-03 08:15:42 +00:00
|
|
|
--title_color num Change the color of the title
|
|
|
|
--at_color num Change the color of "@" in title
|
|
|
|
--subtitle_color num Change the color of the subtitle
|
|
|
|
--colon_color num Change the color of the colons
|
|
|
|
--underline_color num Change the color of the underlines
|
|
|
|
--info_color num Change the color of the info
|
2016-01-05 22:40:54 +00:00
|
|
|
|
|
|
|
Text Formatting:
|
2016-02-03 08:15:42 +00:00
|
|
|
--underline_char char Character to use when underlineing title
|
|
|
|
--line_wrap on/off Enable/Disable line wrapping
|
|
|
|
--bold on/off Enable/Disable bold text
|
|
|
|
--prompt_height num Set this to your prompt height to fix issues with
|
|
|
|
the text going off screen at the top
|
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
|
|
|
|
Color Blocks:
|
2016-02-03 08:15:42 +00:00
|
|
|
--color_blocks on/off Enable/Disable the color blocks
|
|
|
|
--block_width num Width of color blocks
|
|
|
|
--block_range start end Range of colors to print as blocks
|
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
|
|
|
|
Image:
|
2016-02-03 08:15:42 +00:00
|
|
|
--image type Image source. Where and what image we display.
|
|
|
|
Possible values: wall, shuffle, ascii,
|
|
|
|
/path/to/img, off
|
2016-02-04 07:42:54 +00:00
|
|
|
--size px Size in pixels to make the image.
|
2016-02-03 08:15:42 +00:00
|
|
|
--image_backend w3m/iterm2 Which program to use to draw images.
|
|
|
|
--shuffle_dir path/to/dir Which directory to shuffle for an image.
|
|
|
|
--font_width px Used to automatically size the image
|
|
|
|
--image_position left/right Where to display the image: (Left/Right)
|
|
|
|
--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.
|
|
|
|
--gap num Gap between image and text.
|
|
|
|
NOTE: --gap can take a negative value which will
|
|
|
|
move the text closer to the left side.
|
|
|
|
--clean Remove all cropped images
|
2016-01-05 22:40:54 +00:00
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
|
|
|
|
Ascii:
|
2016-02-03 08:15:42 +00:00
|
|
|
--ascii value Where to get the ascii from, Possible values:
|
|
|
|
distro, /path/to/ascii
|
|
|
|
--ascii_color num Color to print the ascii art
|
|
|
|
--ascii_distro distro Which Distro\'s ascii art to print
|
2016-01-27 11:33:22 +00:00
|
|
|
|
|
|
|
|
2016-02-05 23:49:06 +00:00
|
|
|
Stdout:
|
|
|
|
--stdout info info Launch fetch in stdout mode which prints the info
|
|
|
|
in a plain-text format that you can use with
|
|
|
|
lemonbar etc.
|
|
|
|
--stdout_title on/off Hide/Show the title in stdout mode.
|
2016-02-06 23:03:49 +00:00
|
|
|
--stdout_separator string String to use as a separator in stdout mode.
|
2016-02-05 23:49:06 +00:00
|
|
|
--stdout_subtitles on/off Hide/Show the subtitles in stdout mode.
|
|
|
|
|
|
|
|
|
2016-01-08 05:08:00 +00:00
|
|
|
Screenshot:
|
2016-02-03 08:15:42 +00:00
|
|
|
--scrot /path/to/img Take a screenshot, if path is left empty the screen-
|
|
|
|
shot function will use \$scrot_dir and \$scrot_name.
|
|
|
|
--scrot_cmd cmd Screenshot program to launch
|
2016-01-08 05:08:00 +00:00
|
|
|
|
2016-02-05 23:49:06 +00:00
|
|
|
|
2016-01-05 22:40:54 +00:00
|
|
|
Other:
|
2016-02-03 08:15:42 +00:00
|
|
|
--config /path/to/config Specify a path to a custom config file
|
|
|
|
--config none Launch the script without a config file
|
|
|
|
--help Print this text and exit
|
2016-01-05 22:40:54 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
exit 1
|
2016-01-03 06:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2016-01-03 23:20:36 +00:00
|
|
|
# Args {{{
|
|
|
|
|
|
|
|
|
2016-01-06 00:18:02 +00:00
|
|
|
while [ "$1" ]; do
|
2015-12-30 10:18:17 +00:00
|
|
|
case $1 in
|
|
|
|
# Info
|
2016-02-01 03:45:53 +00:00
|
|
|
--os_arch) os_arch="$2" ;;
|
2016-01-28 01:44:06 +00:00
|
|
|
--osx_buildversion) osx_buildversion="$2" ;;
|
2015-12-30 12:58:20 +00:00
|
|
|
--speed_type) speed_type="$2" ;;
|
2016-01-28 23:26:32 +00:00
|
|
|
--kernel_shorthand) kernel_shorthand="$2" ;;
|
2016-01-19 02:49:30 +00:00
|
|
|
--uptime_shorthand) uptime_shorthand="$2" ;;
|
|
|
|
--gpu_shorthand) gpu_shorthand="$2" ;;
|
2016-01-24 23:36:42 +00:00
|
|
|
--gtk_shorthand) gtk_shorthand="$2" ;;
|
|
|
|
--gtk2) gtk2="$2" ;;
|
|
|
|
--gtk3) gtk3="$2" ;;
|
2016-01-29 00:04:35 +00:00
|
|
|
--shell_path) shell_path="$2" ;;
|
|
|
|
--shell_version) shell_version="$2" ;;
|
2016-02-02 01:01:50 +00:00
|
|
|
--battery_num) battery_num="$2" ;;
|
|
|
|
--battery_shorthand) battery_shorthand="$2" ;;
|
2016-02-09 06:26:44 +00:00
|
|
|
--ip_host) public_ip_host="$2" ;;
|
2016-01-30 11:41:58 +00:00
|
|
|
--birthday_shorthand) birthday_shorthand="$2" ;;
|
|
|
|
--birthday_time) birthday_time="$2" ;;
|
2016-02-04 01:50:50 +00:00
|
|
|
--disable)
|
|
|
|
for func in "$@"; do
|
|
|
|
case "$func" in
|
|
|
|
"--disable") continue ;;
|
|
|
|
"--"*) return ;;
|
|
|
|
*) unset -f "get$func" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
;;
|
2016-01-19 02:49:30 +00:00
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
# Text Colors
|
2016-01-03 06:54:16 +00:00
|
|
|
--title_color) title_color=$2 ;;
|
2016-01-13 04:19:49 +00:00
|
|
|
--at_color) at_color=$2 ;;
|
2016-01-03 06:54:16 +00:00
|
|
|
--subtitle_color) subtitle_color=$2 ;;
|
|
|
|
--colon_color) colon_color=$2 ;;
|
|
|
|
--underline_color) underline_color=$2 ;;
|
|
|
|
--info_color) info_color=$2 ;;
|
2015-12-31 00:21:10 +00:00
|
|
|
|
|
|
|
# Text Formatting
|
2016-02-05 23:25:12 +00:00
|
|
|
--underline) underline="$2" ;;
|
2015-12-31 04:42:58 +00:00
|
|
|
--underline_char) underline_char="$2" ;;
|
2016-01-03 06:54:16 +00:00
|
|
|
--line_wrap) line_wrap="$2" ;;
|
2015-12-31 04:42:58 +00:00
|
|
|
--bold) bold="$2" ;;
|
2016-01-05 05:46:53 +00:00
|
|
|
--prompt_height) prompt_height="$2" ;;
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
# Color Blocks
|
2015-12-31 04:42:58 +00:00
|
|
|
--color_blocks) color_blocks="$2" ;;
|
2016-01-03 06:54:16 +00:00
|
|
|
--block_range) start=$2; end=$3 ;;
|
2016-01-03 08:55:09 +00:00
|
|
|
--block_width) block_width="$2" ;;
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
# Image
|
2016-02-04 01:50:50 +00:00
|
|
|
--image)
|
|
|
|
image="$2"
|
|
|
|
case "$2" in "--"* | "") image="ascii" ;; esac
|
2016-01-29 06:40:49 +00:00
|
|
|
;;
|
|
|
|
|
2016-02-04 07:42:54 +00:00
|
|
|
--size) image_size="$2" ;;
|
2016-01-19 03:21:38 +00:00
|
|
|
--image_backend) image_backend="$2" ;;
|
2016-01-27 04:01:48 +00:00
|
|
|
--shuffle_dir) shuffle_dir="$2" ;;
|
2016-01-03 06:54:16 +00:00
|
|
|
--font_width) font_width="$2" ;;
|
2016-01-03 23:20:36 +00:00
|
|
|
--image_position) image_position="$2" ;;
|
2016-01-03 06:54:16 +00:00
|
|
|
--crop_mode) crop_mode="$2" ;;
|
|
|
|
--crop_offset) crop_offset="$2" ;;
|
2015-12-30 10:18:17 +00:00
|
|
|
--xoffset) xoffset="$2" ;;
|
|
|
|
--yoffset) yoffset="$2" ;;
|
2015-12-31 00:21:10 +00:00
|
|
|
--gap) gap="$2" ;;
|
2016-01-31 10:33:02 +00:00
|
|
|
--clean) rm -rf "$thumbnail_dir" || exit ;;
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-27 11:33:22 +00:00
|
|
|
# Ascii
|
2016-02-04 01:50:50 +00:00
|
|
|
--ascii)
|
|
|
|
image="ascii"
|
|
|
|
ascii="$2"
|
|
|
|
case "$2" in "--"* | "") ascii="distro" ;; esac
|
|
|
|
;;
|
|
|
|
|
|
|
|
--ascii_colors)
|
|
|
|
unset ascii_colors
|
|
|
|
for arg in "$2" "$3" "$4" "$5" "$6" "$7"; do
|
|
|
|
case "$arg" in
|
|
|
|
"$1") continue ;;
|
|
|
|
"--"*) break ;;
|
|
|
|
*) ascii_colors+=($arg)
|
|
|
|
esac
|
|
|
|
done
|
2016-02-04 01:53:56 +00:00
|
|
|
ascii_colors+=(7 7 7 7 7 7)
|
2016-01-29 06:40:49 +00:00
|
|
|
;;
|
2016-02-14 09:39:35 +00:00
|
|
|
|
|
|
|
--ascii_distro)
|
|
|
|
image="ascii"
|
|
|
|
ascii_distro="$2"
|
|
|
|
case "$2" in "--"* | "") ascii_distro="$distro" ;; esac
|
|
|
|
;;
|
2016-01-27 11:33:22 +00:00
|
|
|
|
2016-01-08 05:08:00 +00:00
|
|
|
# Screenshot
|
2016-02-04 01:50:50 +00:00
|
|
|
--scrot | -s) scrot="on"; [ "$2" ] && scrot_path="$2" ;;
|
2016-01-22 10:28:06 +00:00
|
|
|
--scrot_cmd) scrot_cmd="$2" ;;
|
2016-01-08 05:08:00 +00:00
|
|
|
|
2016-02-05 05:29:11 +00:00
|
|
|
# Stdout
|
|
|
|
--stdout_title) stdout_title="$2" ;;
|
2016-02-06 23:03:49 +00:00
|
|
|
--stdout_separator) stdout_separator="$2" ;;
|
2016-02-05 05:29:11 +00:00
|
|
|
--stdout_subtitles) stdout_subtitles="$2" ;;
|
2016-02-05 13:50:45 +00:00
|
|
|
--stdout)
|
2016-02-05 23:04:50 +00:00
|
|
|
case "$2" in
|
|
|
|
"--"* | "") stdout="on" ;;
|
2016-02-13 22:26:52 +00:00
|
|
|
*) stdout="on"; args=("$@"); stdout ;;
|
2016-02-05 23:04:50 +00:00
|
|
|
esac
|
|
|
|
|
2016-02-05 23:21:12 +00:00
|
|
|
unset info_color colors
|
2016-02-05 23:30:46 +00:00
|
|
|
underline="off"
|
2016-02-05 13:50:45 +00:00
|
|
|
image="off"
|
|
|
|
color_blocks="off"
|
|
|
|
;;
|
2016-02-05 05:29:11 +00:00
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
# Other
|
2016-01-30 01:05:53 +00:00
|
|
|
--config)
|
|
|
|
case "$2" in
|
|
|
|
"none" | "off") config="off" ;;
|
|
|
|
*) config_file="$2"; config="on"; getconfig ;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
|
2015-12-30 10:18:17 +00:00
|
|
|
--help) usage ;;
|
|
|
|
esac
|
|
|
|
|
2016-01-06 00:18:02 +00:00
|
|
|
shift
|
2015-12-30 10:18:17 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# }}}
|
|
|
|
|
|
|
|
|
2016-01-03 22:21:13 +00:00
|
|
|
# Call Functions and Finish Up {{{
|
2015-12-30 10:18:17 +00:00
|
|
|
|
|
|
|
|
2016-01-20 23:56:55 +00:00
|
|
|
# Restore cursor and clear screen on ctrl+c
|
2016-01-27 12:42:21 +00:00
|
|
|
trap 'printf "\033[?25h"; clear; exit' 2
|
2016-01-20 23:56:55 +00:00
|
|
|
|
2016-01-30 06:44:52 +00:00
|
|
|
if [ "$image" != "off" ]; then
|
2016-02-05 00:43:19 +00:00
|
|
|
# If the script exits for any reason, unhide the cursor.
|
|
|
|
trap 'printf "\033[?25h"' EXIT
|
|
|
|
|
|
|
|
# Clear the scren
|
2016-02-01 02:19:09 +00:00
|
|
|
clear
|
|
|
|
|
2016-01-31 08:23:31 +00:00
|
|
|
# Hide the cursor
|
|
|
|
printf "\033[?25l"
|
2016-01-30 06:44:52 +00:00
|
|
|
|
|
|
|
# Find w3mimgdisplay
|
2016-01-31 21:48:44 +00:00
|
|
|
[ "$image_backend" == "w3m" ] && \
|
|
|
|
[ "$image" != "ascii" ] && \
|
|
|
|
getw3m_img_path
|
2016-01-30 06:44:52 +00:00
|
|
|
|
|
|
|
# Get the image
|
|
|
|
getimage
|
|
|
|
fi
|
2015-12-30 10:18:17 +00:00
|
|
|
|
2016-01-27 21:57:25 +00:00
|
|
|
# Display the image if enabled
|
2016-01-31 23:07:46 +00:00
|
|
|
if [ "$image" != "off" ] && [ "$image" != "ascii" ]; then
|
2016-01-19 03:21:38 +00:00
|
|
|
case "$image_backend" in
|
|
|
|
"w3m")
|
2016-02-04 07:42:54 +00:00
|
|
|
printf "%b%s\n" "0;1;$xoffset;$yoffset;$image_size;$image_size;;;;;$img\n4;\n3;" |\
|
2016-01-27 21:57:25 +00:00
|
|
|
$w3m_img_path 2>/dev/null || padding="\033[0C"
|
2016-01-19 03:21:38 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
"iterm2")
|
2016-02-04 07:42:54 +00:00
|
|
|
printf "%b%s\a\n" "\033]1337;File=width=${image_size}px;height=${image_size}px;inline=1:$(base64 < "$img")"
|
2016-01-19 03:21:38 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2015-12-31 00:21:10 +00:00
|
|
|
|
2016-01-31 08:23:31 +00:00
|
|
|
# Disable line wrap
|
|
|
|
[ "$line_wrap" == "off" ] && printf "\033[?7l"
|
|
|
|
|
|
|
|
# Move cursor to the top
|
|
|
|
[ "$image" != "off" ] && printf "\033[0H"
|
|
|
|
|
2016-02-05 23:21:12 +00:00
|
|
|
# Get colors / bold
|
|
|
|
colors 2>/dev/null
|
|
|
|
bold
|
2016-01-19 06:08:00 +00:00
|
|
|
|
2016-02-05 23:21:12 +00:00
|
|
|
# Print the info
|
|
|
|
printinfo
|
2016-01-19 06:08:00 +00:00
|
|
|
|
2016-01-29 00:35:04 +00:00
|
|
|
if [ "$image" != "off" ]; then
|
2016-01-31 08:23:31 +00:00
|
|
|
# Get cursor position
|
2016-01-30 05:31:22 +00:00
|
|
|
info_height="$(IFS=';' read -srdR -p $'\E[6n' ROW COL; printf "%s" "${ROW#*[}")"
|
2016-01-31 08:23:31 +00:00
|
|
|
|
|
|
|
# Set cursor position dynamically based on height of ascii/text.
|
2016-01-29 00:35:04 +00:00
|
|
|
[ "$lines" -lt "$info_height" ] && lines="$info_height"
|
|
|
|
|
2016-01-28 23:11:34 +00:00
|
|
|
printf "%b%s" "\033[${lines}H\033[${prompt_height}A"
|
2016-01-29 00:35:04 +00:00
|
|
|
fi
|
2016-01-17 06:17:13 +00:00
|
|
|
|
2016-02-01 02:19:09 +00:00
|
|
|
# Re-enable line wrap
|
2016-02-05 00:46:00 +00:00
|
|
|
[ "$line_wrap" == "off" ] && printf "%b%s" "\033[?7h"
|
2016-01-28 23:11:34 +00:00
|
|
|
|
2016-01-08 05:08:00 +00:00
|
|
|
# If enabled take a screenshot
|
2016-01-29 14:07:01 +00:00
|
|
|
if [ "$scrot" == "on" ]; then
|
|
|
|
takescrot
|
|
|
|
fi
|
2016-01-08 05:08:00 +00:00
|
|
|
|
2016-01-30 05:32:18 +00:00
|
|
|
|
2016-01-03 06:54:16 +00:00
|
|
|
# }}}
|
2015-12-30 10:18:17 +00:00
|
|
|
|