- 13 Jun, 2016 8 commits
-
-
Dylan Araps authored
-
Dylan Araps authored
Remove Image position
-
Dylan Araps authored
Dynamically set cursor position in image mode.
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
- 12 Jun, 2016 29 commits
-
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
Quote all the things
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
Dylan Araps authored
-
- 10 Jun, 2016 3 commits
-
-
Dylan Araps authored
Fix for terminology support: does not fallback on ascii when no wallpaper is found
-
Vincent Aranega authored
When no image is set and there is no background image (or a `.xml` is detected) and the image option is set to `wall` (default), neofetch does not fallback on ascii mode. The issue comes from the line 2310: if [ ! -f "$img" ] || [ ${#term_size} -le 5 ] && [ "$image_backend" != "tycat" ]; then as `||` and `&&` have the same priority, bash does not evaluate `[ ${#term_size} -le 5 ] && [ "$image_backend" != "tycat" ]` first. Solution is simply this if [ ! -f "$img" ] || ([ ${#term_size} -le 5 ] && [ "$image_backend" != "tycat" ]); then -
Dylan Araps authored
-