From f2f50f2b7e491c94e63b2a469ef878816108dd50 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 28 Dec 2016 18:25:22 +1100 Subject: [PATCH 01/15] Packages: Remove 'pisi'. --- neofetch | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/neofetch b/neofetch index ee92cf6d..e1c7e7df 100755 --- a/neofetch +++ b/neofetch @@ -442,14 +442,8 @@ get_packages() { type -p Compile >/dev/null && \ packages="$((packages+=$(ls -d -1 /Programs/*/ | wc -l)))" - # pisi is sometimes unavailable in Solus(?). This uses eopkg - # instead if pisi isn't found. - if type -p pisi >/dev/null; then - packages="$((packages+=$(pisi list-installed | wc -l)))" - - elif type -p eopkg >/dev/null; then + type -p eopkg >/dev/null && \ packages="$((packages+=$(eopkg list-installed | wc -l)))" - fi if type -p pkg >/dev/null; then packages="$((packages+=$(ls -1 /var/db/pkg | wc -l)))" From 0386551664d652e69b11ed9948a728d483e0de75 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Wed, 28 Dec 2016 15:10:03 +0700 Subject: [PATCH 02/15] ASCII: Fixed Gentoo ASCII not appearing on distro_shorthand=off --- neofetch | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index e1c7e7df..05b17e28 100755 --- a/neofetch +++ b/neofetch @@ -2576,10 +2576,15 @@ get_distro_colors() { set_colors 4 3 ;; - "NetBSD"* | "Parabola"* | "Tails"* | "BLAG"* | "Gentoo"* | "Funtoo"* | "SteamOS"* | "Devuan"*) + "NetBSD"* | "Parabola"* | "Tails"* | "BLAG"* | "Funtoo"* | "SteamOS"* | "Devuan"*) set_colors 5 7 ;; + "Gentoo"*) + set_colors 5 7 + ascii_distro="gentoo" + ;; + "OpenBSD"* | "GuixSD"* | "Pardus"*) set_colors 3 7 6 1 8 ;; From 77261333338770ceed2a12017f75d81bb57674fa Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Sun, 18 Dec 2016 11:31:11 +0700 Subject: [PATCH 03/15] OS: Merged Linux and BSD distro detection --- neofetch | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/neofetch b/neofetch index 05b17e28..cccaf7a5 100755 --- a/neofetch +++ b/neofetch @@ -53,8 +53,8 @@ get_distro() { [[ "$distro" ]] && return case "$os" in - "Linux") - if [[ "$(< /proc/version)" == *"Microsoft"* || "$(< /proc/sys/kernel/osrelease)" == *"Microsoft"* ]]; then + "Linux" | "BSD" | "MINIX") + if [[ "$(< /proc/version)" == *"Microsoft"* || "$(< /proc/sys/kernel/osrelease)" == *"Microsoft"* ]]; then ## ERRORS NEED TO BE SUPPRESSED! case "$distro_shorthand" in "on") distro="$(lsb_release -sir) [Windows 10]" ;; "tiny") distro="Windows 10" ;; @@ -95,9 +95,9 @@ get_distro() { elif [[ -d "/system/app/" && -d "/system/priv-app" ]]; then distro="Android $(getprop ro.build.version.release)" - else - # Source the os-release file. - for file in /etc/os-release /usr/lib/os-release /etc/*release /usr/lib/*release; do + elif [[ -f "/etc/os-release" || -f "/usr/lib/os-release" ]]; then + # Source the os-release file + for file in /etc/os-release /usr/lib/os-release; do source "$file" 2>/dev/null && break done @@ -111,6 +111,21 @@ get_distro() { # Workarounds for distros that go against the os-release standard. [[ -z "${distro// }" ]] && distro="$(awk '/BLAG/ {print $1; exit}' /etc/*ease /usr/lib/*ease)" [[ -z "${distro// }" ]] && distro="$(awk -F'=' '{print $2; exit}' /etc/*ease /usr/lib/*ease)" + + else + distro="$(cat /etc/*-release)" # UUOC, but using usual bash $(< *-file) returns "ambiguous redirect" + if [[ -z "$distro" ]]; then + case "$distro_shorthand" in + "on" | "tiny") distro="$kernel_name" ;; + *) distro="$kernel_name $kernel_version" ;; + esac + distro="${distro/DragonFly/DragonFlyBSD}" + + # Workarounds for FreeBSD based distros. + [[ -f "/etc/pcbsd-lang" ]] && distro="PCBSD" + [[ -f "/etc/rc.conf.trueos" ]] && distro="TrueOS" + [[ -f "/etc/pacbsd-release" ]] && distro="PacBSD" # /etc/pacbsd-release is an empty file + fi fi distro="$(trim_quotes "$distro")" ;; @@ -153,20 +168,6 @@ get_distro() { os_arch="off" ;; - "BSD" | "MINIX") - case "$distro_shorthand" in - "tiny" | "on") distro="$kernel_name" ;; - *) distro="$kernel_name $kernel_version" ;; - esac - - distro="${distro/DragonFly/DragonFlyBSD}" - - # Workarounds for FreeBSD based distros. - [[ -f "/etc/pcbsd-lang" ]] && distro="PCBSD" - [[ -f "/etc/trueos-lang" ]] && distro="TrueOS" - [[ -f "/etc/pacbsd-release" ]] && distro="PacBSD" - ;; - "Windows") distro="$(wmic os get Caption /value)" From 5f48a04bda43c357717018712769e959868bd1d3 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Sun, 18 Dec 2016 11:33:24 +0700 Subject: [PATCH 04/15] Packages: Merged Linux and BSD package detection --- neofetch | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/neofetch b/neofetch index cccaf7a5..3d7ff3a2 100755 --- a/neofetch +++ b/neofetch @@ -394,7 +394,7 @@ get_packages() { local PATH="${PATH#:}" case "$os" in - "Linux" | "iPhone OS" | "Solaris") + "Linux" | "BSD" | "iPhone OS" | "Solaris") type -p pacman >/dev/null && \ packages="$(pacman -Qq --color never | wc -l)" @@ -446,8 +446,12 @@ get_packages() { type -p eopkg >/dev/null && \ packages="$((packages+=$(eopkg list-installed | wc -l)))" + type -p pkg_info >/dev/null && \ + packages="$((packages+=$(pkg_info | wc -l)))" + if type -p pkg >/dev/null; then packages="$((packages+=$(ls -1 /var/db/pkg | wc -l)))" + (("$packages" == "0")) && packages="$((packages+=$(pkg info | wc -l)))" (("$packages" == "0")) && packages="$((packages+=$(pkg list | wc -l)))" fi ;; @@ -466,21 +470,6 @@ get_packages() { packages="$((packages + $(pkgin list | wc -l)))" ;; - "BSD") - case "$distro" in - # PacBSD has both pacman and pkg, but only pacman is used. - "PacBSD"*) packages="$(pacman -Qq --color never | wc -l)" ;; - - *) - if type -p pkg_info >/dev/null; then - packages="$(pkg_info | wc -l)" - elif type -p pkg >/dev/null; then - packages="$(pkg info | wc -l)" - fi - ;; - esac - ;; - "Windows") packages="$(cygcheck -cd | wc -l)" From 2bad735fb3092d5634a0c1225e6489c85e7c98d7 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Sun, 18 Dec 2016 11:52:09 +0700 Subject: [PATCH 05/15] Packages: Separate FreeBSD pkg from Linux/Solaris pkg detection --- neofetch | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/neofetch b/neofetch index 3d7ff3a2..3c382581 100755 --- a/neofetch +++ b/neofetch @@ -450,9 +450,12 @@ get_packages() { packages="$((packages+=$(pkg_info | wc -l)))" if type -p pkg >/dev/null; then - packages="$((packages+=$(ls -1 /var/db/pkg | wc -l)))" - (("$packages" == "0")) && packages="$((packages+=$(pkg info | wc -l)))" - (("$packages" == "0")) && packages="$((packages+=$(pkg list | wc -l)))" + case "$kernel_name" in + "FreeBSD") packages="$((packages+=$(pkg info | wc -l)))" ;; + *) + packages="$((packages+=$(ls -1 /var/db/pkg | wc -l)))" + (("$packages" == "0")) && packages="$((packages+=$(pkg list | wc -l)))" + esac fi ;; From e4d7baecaf4f055d4049fffe37436f847d06bdaf Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Wed, 28 Dec 2016 09:03:58 +0700 Subject: [PATCH 06/15] Distro: Apply suggestion --- neofetch | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/neofetch b/neofetch index 3c382581..50402371 100755 --- a/neofetch +++ b/neofetch @@ -54,7 +54,7 @@ get_distro() { case "$os" in "Linux" | "BSD" | "MINIX") - if [[ "$(< /proc/version)" == *"Microsoft"* || "$(< /proc/sys/kernel/osrelease)" == *"Microsoft"* ]]; then ## ERRORS NEED TO BE SUPPRESSED! + if [[ "$(< /proc/version)" == *"Microsoft"* || "$(< /proc/sys/kernel/osrelease)" == *"Microsoft"* ]]; then case "$distro_shorthand" in "on") distro="$(lsb_release -sir) [Windows 10]" ;; "tiny") distro="Windows 10" ;; @@ -109,11 +109,13 @@ get_distro() { esac # Workarounds for distros that go against the os-release standard. - [[ -z "${distro// }" ]] && distro="$(awk '/BLAG/ {print $1; exit}' /etc/*ease /usr/lib/*ease)" - [[ -z "${distro// }" ]] && distro="$(awk -F'=' '{print $2; exit}' /etc/*ease /usr/lib/*ease)" + [[ -z "${distro// }" ]] && distro="$(awk '/BLAG/ {print $1; exit}' /etc/os-release /usr/lib/os-release)" + [[ -z "${distro// }" ]] && distro="$(awk -F'=' '{print $2; exit}' /etc/os-release /usr/lib/os-release)" else - distro="$(cat /etc/*-release)" # UUOC, but using usual bash $(< *-file) returns "ambiguous redirect" + for release_file in /etc/*-release; do + distro+="$(< "$release_file")" + done if [[ -z "$distro" ]]; then case "$distro_shorthand" in "on" | "tiny") distro="$kernel_name" ;; From e7b90d08649757577bcf7425df3ce3ed90bb9ec0 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Wed, 28 Dec 2016 10:15:06 +0700 Subject: [PATCH 07/15] Distro: Suppressed errors --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 50402371..a4b49fbe 100755 --- a/neofetch +++ b/neofetch @@ -3472,7 +3472,7 @@ main() { get_os get_default_config 2>/dev/null get_args "$@" - get_distro + get_distro 2>/dev/null get_bold get_distro_colors From fa2600248e06b4f3dc60f4a2302ac92c31ad0337 Mon Sep 17 00:00:00 2001 From: Herdiansyah Date: Wed, 28 Dec 2016 16:31:05 +0700 Subject: [PATCH 08/15] Docs: CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c30fbc..a85e2924 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,7 @@ Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any ques - Added support for AntiX. - Added support for TrueOS. - Added support for SalentOS. -- Merged all GNU Hurd instances to Linux since they work exactly the same way. +- Added support for Gentoo FreeBSD. ## General From 058ee8a211cc7be875be3833ee52827321a6bbc9 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Wed, 28 Dec 2016 17:55:04 +0700 Subject: [PATCH 09/15] ASCII: Added ASCII for Joyent SmartOS --- ascii/distro/smartos | 17 +++++++++++++++++ neofetch | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 ascii/distro/smartos diff --git a/ascii/distro/smartos b/ascii/distro/smartos new file mode 100644 index 00000000..59cea693 --- /dev/null +++ b/ascii/distro/smartos @@ -0,0 +1,17 @@ +${c1}yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyys oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyy oyyyyyyyyyyyyyyyy +yyyys yyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyy syyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy syyyyyyyyy syyyy +yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy oyyyyyyyyy syyyy +yyyyyyyyyyyyyyyy syyyyyyyyy syyyy +yyyyyyyyyyyyyyyy yyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy diff --git a/neofetch b/neofetch index a4b49fbe..99b1626e 100755 --- a/neofetch +++ b/neofetch @@ -2635,7 +2635,7 @@ get_distro_colors() { set_colors 2 8 ;; - "Mageia"* | "Porteus"* | "Parrot"*) + "Mageia"* | "Porteus"* | "Parrot"* | "SmartOS"*) set_colors 6 7 ;; From 72ce23befbba0cab4c85a011f02fa879e382e122 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Thu, 29 Dec 2016 15:26:44 +0700 Subject: [PATCH 10/15] Docs: Better manpage format --- neofetch | 27 +++++++++------------------ neofetch.1 | 26 +++++++++----------------- 2 files changed, 18 insertions(+), 35 deletions(-) diff --git a/neofetch b/neofetch index 99b1626e..e7c89bec 100755 --- a/neofetch +++ b/neofetch @@ -3116,8 +3116,7 @@ NOTE: Every launch flag has a config option. Options: -INFO - +INFO: --disable infoname Allows you to disable an info line from appearing in the output. @@ -3171,23 +3170,20 @@ INFO --install_time_format 12h/24h Set time format in Install Date to be 12 hour or 24 hour. -TEXT FORMATTING - +TEXT FORMATTING: --colors x x x x x x Changes the text colors in this order: title, @, underline, subtitle, colon, info --underline on/off Enable/Disable the underline. --underline_char char Character to use when underlining title --bold on/off Enable/Disable bold text -COLOR BLOCKS - +COLOR BLOCKS: --color_blocks on/off Enable/Disable the color blocks --block_width num Width of color blocks in spaces --block_height num Height of color blocks in lines --block_range num num Range of colors to print as blocks -BARS - +BARS: --bar_char 'elapsed char' 'total char' Characters to use when drawing bars. --bar_border on/off Whether or not to surround the bar with '[]' @@ -3202,8 +3198,7 @@ BARS Takes: bar, infobar, barinfo, off --disk_display mode Bar mode. Takes: bar, infobar, barinfo, off -IMAGE - +IMAGE: --image type Image source. Where and what image we display. Possible values: wall, ascii, /path/to/img, /path/to/dir/, off @@ -3227,8 +3222,7 @@ IMAGE --clean Delete cached files and thumbnails. -ASCII - +ASCII: --ascii value Where to get the ascii from, Possible values: distro, /path/to/ascii --ascii_colors x x x x x x Colors to print the ascii art @@ -3249,16 +3243,14 @@ ASCII --ascii_bold on/off Whether or not to bold the ascii logo. -L, --logo Hide the info text and only show the ascii logo. -SCREENSHOT - +SCREENSHOT: -s, --scrot /path/to/img Take a screenshot, if path is left empty the screen- shot function will use \$scrot_dir and \$scrot_name. -su, --upload /path/to/img Same as --scrot but uploads the scrot to a website. --image_host Website to upload scrots to. Takes: imgur, teknik --scrot_cmd cmd Screenshot program to launch -OTHER - +OTHER: --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 @@ -3266,8 +3258,7 @@ OTHER -v Display error messages. -vv Display a verbose log for error reporting. -DEVELOPER - +DEVELOPER: --gen-man Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) diff --git a/neofetch.1 b/neofetch.1 index 37f6cc59..dd1e1cda 100644 --- a/neofetch.1 +++ b/neofetch.1 @@ -12,7 +12,7 @@ or any ASCII file of your choice. .PP NOTE: Every launch flag has a config option. .SH OPTIONS -INFO +.SS "INFO:" .TP \fB\-\-disable\fR infoname Allows you to disable an info line from appearing @@ -101,8 +101,7 @@ Enable/Disable showing the time in Install Date output. .TP \fB\-\-install_time_format\fR 12h/24h Set time format in Install Date to be 12 hour or 24 hour. -.PP -TEXT FORMATTING +.SS "TEXT FORMATTING:" .TP \fB\-\-colors\fR x x x x x x Changes the text colors in this order: @@ -116,8 +115,7 @@ Character to use when underlining title .TP \fB\-\-bold\fR on/off Enable/Disable bold text -.PP -COLOR BLOCKS +.SS "COLOR BLOCKS:" .TP \fB\-\-color_blocks\fR on/off Enable/Disable the color blocks @@ -130,8 +128,7 @@ Height of color blocks in lines .TP \fB\-\-block_range\fR num num Range of colors to print as blocks -.PP -BARS +.SS "BARS:" .TP \fB\-\-bar_char\fR 'elapsed char' 'total char' Characters to use when drawing bars. @@ -161,8 +158,7 @@ Takes: bar, infobar, barinfo, off \fB\-\-disk_display\fR mode Bar mode. Takes: bar, infobar, barinfo, off -.PP -IMAGE +.SS "IMAGE:" .TP \fB\-\-image\fR type Image source. Where and what image we display. @@ -201,8 +197,7 @@ NOTE: \fB\-\-gap\fR can take a negative value which will move the text closer to .TP \fB\-\-clean\fR Delete cached files and thumbnails. -.PP -ASCII +.SS "ASCII:" .TP \fB\-\-ascii\fR value Where to get the ascii from, Possible values: @@ -231,8 +226,7 @@ Whether or not to bold the ascii logo. .TP \fB\-L\fR, \fB\-\-logo\fR Hide the info text and only show the ascii logo. -.PP -SCREENSHOT +.SS "SCREENSHOT:" .TP \fB\-s\fR, \fB\-\-scrot\fR \fI\,/path/to/img\/\fP Take a screenshot, if path is left empty the screenshot function will use $scrot_dir and $scrot_name. @@ -245,8 +239,7 @@ Website to upload scrots to. Takes: imgur, teknik .TP \fB\-\-scrot_cmd\fR cmd Screenshot program to launch -.PP -OTHER +.SS "OTHER:" .TP \fB\-\-config\fR \fI\,/path/to/config\/\fP Specify a path to a custom config file @@ -265,8 +258,7 @@ Display error messages. .TP \fB\-vv\fR Display a verbose log for error reporting. -.PP -DEVELOPER +.SS "DEVELOPER:" .TP \fB\-\-gen\-man\fR Generate a manpage for Neofetch in your PWD. (Requires GNU help2man) From c64e187bd1be38dbd9489337b2d194dd10940b10 Mon Sep 17 00:00:00 2001 From: Herdiansyah Date: Thu, 29 Dec 2016 15:30:27 +0700 Subject: [PATCH 11/15] Docs: CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a85e2924..19c5d948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any ques - Added support for TrueOS. - Added support for SalentOS. - Added support for Gentoo FreeBSD. +- Added support for Joyent SmartOS. ## General From c9ddec83bf4efeba8b2a2387a49314a41ff7d724 Mon Sep 17 00:00:00 2001 From: Michael Straube Date: Fri, 30 Dec 2016 13:19:12 +0100 Subject: [PATCH 12/15] ASCII: Fixed ASCII logo not shown on openSUSE --- neofetch | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index e7c89bec..53ab1ce4 100755 --- a/neofetch +++ b/neofetch @@ -2584,10 +2584,15 @@ get_distro_colors() { set_colors 3 7 6 1 8 ;; - *"SUSE"* | "Manjaro"* | "Deepin"* |"LMDE"* | "Chapeau"* | "Bitrig"*) + "Manjaro"* | "Deepin"* | "LMDE"* | "Chapeau"* | "Bitrig"*) set_colors 2 7 ;; + *"SUSE"*) + set_colors 2 7 + ascii_distro="suse" + ;; + "KDE"*) set_colors 2 7 ascii_distro="kde" From e951eab847f520f364421df14dac76e65621ac67 Mon Sep 17 00:00:00 2001 From: Michael Straube Date: Fri, 30 Dec 2016 13:20:32 +0100 Subject: [PATCH 13/15] ASCII: Fixed typo --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 53ab1ce4..5bc1aa05 100755 --- a/neofetch +++ b/neofetch @@ -2536,7 +2536,7 @@ get_distro_colors() { "antiX"*) set_colors 1 7 3 - ascii_Distro="antix" + ascii_distro="antix" ;; "FreeBSD"*) From ce63709b063c45d6842f4cd99bd6c330fd6e3887 Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Sun, 1 Jan 2017 15:07:10 +0700 Subject: [PATCH 14/15] Shell: Disable version detection for ash and dash --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 5bc1aa05..e9e955e2 100755 --- a/neofetch +++ b/neofetch @@ -500,7 +500,7 @@ get_shell() { if [[ "$shell_version" == "on" ]]; then case "${SHELL##*/}" in "bash") shell+="${BASH_VERSION/-*}" ;; - "sh") ;; + "sh" | "ash" | "dash") ;; "mksh" | "ksh") shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')" From ee72084a9ae6361fca0837ecbfc187894f6ecde9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 2 Jan 2017 11:15:22 +1100 Subject: [PATCH 15/15] Docs: Changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c5d948..ced7d0f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -155,6 +155,11 @@ Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any ques - Fixed bug where image mode would attempt to run in a TTY. +## Wallpaper + +- Decode URI filenames. + + ## Ascii - Added Ubuntu-Studio. **[@konimex](https://github.com/konimex)**