Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
neofetch
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
neofetch
Commits
80f07c96
Commit
80f07c96
authored
Dec 16, 2016
by
Dylan Araps
Committed by
GitHub
Dec 16, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #540 from dylanaraps/rm_subshell
General: Remove printf subshells
parents
595f765b
6da7ab06
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
neofetch
neofetch
+6
-6
No files found.
neofetch
View file @
80f07c96
...
@@ -1798,7 +1798,7 @@ get_birthday() {
...
@@ -1798,7 +1798,7 @@ get_birthday() {
get_cols() {
get_cols() {
if [[ "
$color_blocks
" == "
on
" ]]; then
if [[ "
$color_blocks
" == "
on
" ]]; then
# Convert the width to space chars.
# Convert the width to space chars.
block_width="
$(
printf
"%
${
block_width
}
s"
)
"
printf -v block_width "
%
${
block_width
}
s
"
block_width="
${
block_width
// /█
}
"
block_width="
${
block_width
// /█
}
"
# Generate the string.
# Generate the string.
...
@@ -1811,7 +1811,7 @@ get_cols() {
...
@@ -1811,7 +1811,7 @@ get_cols() {
done
done
# Convert height into spaces.
# Convert height into spaces.
spaces="
$(
printf
"%
${
block_height
}
s"
)
"
printf -v spaces "
%
${
block_height
}
s
"
# Convert the spaces into rows of blocks.
# Convert the spaces into rows of blocks.
[[ "
$blocks
" ]] && cols+="
${
spaces
// /
${
blocks
}${
reset
}
nl
}
"
[[ "
$blocks
" ]] && cols+="
${
spaces
// /
${
blocks
}${
reset
}
nl
}
"
...
@@ -1850,7 +1850,7 @@ get_image_backend() {
...
@@ -1850,7 +1850,7 @@ get_image_backend() {
*)
*)
if [[ -d "
$image_source
" ]]; then
if [[ -d "
$image_source
" ]]; then
files=("
${
image_source
%/
}
"/*.{png,jpg,jpeg})
files=("
${
image_source
%/
}
"/*.{png,jpg,jpeg})
image="
$(
printf
"%s"
"
${
files
[RANDOM % (
${#
files
[@]
}
- 1)]
}
"
)
"
printf -v image "
%s
" "
${
files
[RANDOM % (
${#
files
[@]
}
- 1)]
}
"
else
else
image="
$image_source
"
image="
$image_source
"
fi
fi
...
@@ -2418,7 +2418,7 @@ prin() {
...
@@ -2418,7 +2418,7 @@ prin() {
get_underline() {
get_underline() {
if [[ "
$underline_enabled
" == "
on
" ]]; then
if [[ "
$underline_enabled
" == "
on
" ]]; then
underline="
$(
printf
%
"
$length
"
s
)
"
printf -v underline "
%
${
length
}
s
"
underline="
${
underline_color
}${
underline
// /
$underline_char
}
"
underline="
${
underline_color
}${
underline
// /
$underline_char
}
"
unset -v length
unset -v length
fi
fi
...
@@ -2791,8 +2791,8 @@ bar() {
...
@@ -2791,8 +2791,8 @@ bar() {
elapsed
=
"
$((
$1
*
bar_length
/
$2
))
"
elapsed
=
"
$((
$1
*
bar_length
/
$2
))
"
# Create the bar with spaces
# Create the bar with spaces
pr
og
=
"
$(
printf
%
"
$elapsed
"
s
)
"
pr
intf
-v
prog
"%
${
elapsed
}
s
"
total
=
"
$(
printf
%
"
$((
bar_length
-
elapsed
))
"
s
)
"
printf
-v
total
"%
$((
bar_length
-
elapsed
))
s
"
# Set the colors and swap the spaces for $bar_char_
# Set the colors and swap the spaces for $bar_char_
bar+
=
"
${
bar_color_elapsed
}${
prog
// /
$bar_char_elapsed
}
"
bar+
=
"
${
bar_color_elapsed
}${
prog
// /
$bar_char_elapsed
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment