mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-18 09:57:13 +00:00
--ascii_distro now also enables ascii mode
This commit is contained in:
1
1.2.md
1
1.2.md
@@ -1,6 +1,7 @@
|
|||||||
# Fetch 1.2
|
# Fetch 1.2
|
||||||
|
|
||||||
- Fixed text padding when the user didn't have the locale 'en_US.UTF8' installed.
|
- Fixed text padding when the user didn't have the locale 'en_US.UTF8' installed.
|
||||||
|
- `--ascii_distro` now also enables ascii mode.
|
||||||
|
|
||||||
### OS
|
### OS
|
||||||
|
|
||||||
|
|||||||
7
fetch
7
fetch
@@ -2407,7 +2407,12 @@ while [ "$1" ]; do
|
|||||||
done
|
done
|
||||||
ascii_colors+=(7 7 7 7 7 7)
|
ascii_colors+=(7 7 7 7 7 7)
|
||||||
;;
|
;;
|
||||||
--ascii_distro) ascii_distro="$2" ;;
|
|
||||||
|
--ascii_distro)
|
||||||
|
image="ascii"
|
||||||
|
ascii_distro="$2"
|
||||||
|
case "$2" in "--"* | "") ascii_distro="$distro" ;; esac
|
||||||
|
;;
|
||||||
|
|
||||||
# Screenshot
|
# Screenshot
|
||||||
--scrot | -s) scrot="on"; [ "$2" ] && scrot_path="$2" ;;
|
--scrot | -s) scrot="on"; [ "$2" ] && scrot_path="$2" ;;
|
||||||
|
|||||||
Reference in New Issue
Block a user