vim formatting hints

This commit is contained in:
Connor Sheridan 2021-03-26 23:21:30 -04:00
commit 44d913b972
7 changed files with 13 additions and 1 deletions

View file

@ -49,3 +49,5 @@ __cpu_freq() {
[ -n "$freq" ] || return
color b c W; printf "%s" "$freq"; color -; color c W; printf "%s" "$ICON_GHz"; color --
}
# vi: syntax=sh ts=4 noexpandtab

View file

@ -56,3 +56,5 @@ __disk() {
color b m W; printf "%s" "$size"; color -; color m W; printf "%s" "$unit"; color -;
color b m W; printf "%s" "$pct"; color -; color m W; printf "%s" "$PCT"; color --;
}
# vi: syntax=sh ts=4 noexpandtab

View file

@ -34,3 +34,5 @@ __load_average() {
[ -n "$one" ] || return
color Y k; printf "$one"; color --
}
# vi: syntax=sh ts=4 noexpandtab

View file

@ -95,3 +95,5 @@ __memory() {
[ -n "$total" ] || return
color b g W; printf "%s" "$total"; color -; color g W; printf "%s" "$unit"; color -; color b g "$fg"; printf "%s" "$usage"; color -; color g "$fg"; printf "%s" "$PCT"; color --
}
# vi: syntax=sh ts=4 noexpandtab

View file

@ -172,3 +172,5 @@ fi
color k w
printf "%s" "$display_time"
color --
# vi: syntax=sh ts=4 noexpandtab

View file

@ -34,4 +34,4 @@ __trash() {
printf "%s[%s]" "$ICON_TRASH" "$count"
}
# vi: syntax=sh ts=4 noexpandtab
# vi: syntax=sh ts=4 noexpandtab

View file

@ -55,3 +55,5 @@ __uptime() {
[ -n "$str" ] || return
color w b; printf "%s" "${str}"; color --
}
# vi: syntax=sh ts=4 noexpandtab