Merge master into stdout2 as we need some changes from master.
This commit is contained in:
commit
e3fc21fd5f
1
1.1.md
1
1.1.md
|
@ -71,6 +71,7 @@ the distro ascii art and the automatic config creation.
|
||||||
|
|
||||||
### Info
|
### Info
|
||||||
|
|
||||||
|
- You can now display info without a subtitle. eg. `info memory`
|
||||||
- Added `--disable` which allows you to stop an info line from appearing at launch.<br \>
|
- Added `--disable` which allows you to stop an info line from appearing at launch.<br \>
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
|
@ -196,6 +196,10 @@ line_wrap="on"
|
||||||
# --bold on/off
|
# --bold on/off
|
||||||
bold="on"
|
bold="on"
|
||||||
|
|
||||||
|
# Enable/Disable Underline
|
||||||
|
# --underline on/off
|
||||||
|
underline="on"
|
||||||
|
|
||||||
# Underline character
|
# Underline character
|
||||||
# --underline_char char
|
# --underline_char char
|
||||||
underline_char="-"
|
underline_char="-"
|
||||||
|
|
16
fetch
16
fetch
|
@ -216,6 +216,10 @@ line_wrap="on"
|
||||||
# --bold on/off
|
# --bold on/off
|
||||||
bold="on"
|
bold="on"
|
||||||
|
|
||||||
|
# Enable/Disable Underline
|
||||||
|
# --underline on/off
|
||||||
|
underline="on"
|
||||||
|
|
||||||
# Underline character
|
# Underline character
|
||||||
# --underline_char char
|
# --underline_char char
|
||||||
underline_char="-"
|
underline_char="-"
|
||||||
|
@ -1259,7 +1263,7 @@ getbattery () {
|
||||||
battery=${battery/EstimatedChargeRemaining'='}
|
battery=${battery/EstimatedChargeRemaining'='}
|
||||||
battery=${battery//[[:space:]]/ }
|
battery=${battery//[[:space:]]/ }
|
||||||
battery=${battery// }
|
battery=${battery// }
|
||||||
battery+="${battery}%"
|
battery+="%"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
@ -1805,10 +1809,6 @@ info () {
|
||||||
string="${underline_color}${output}"
|
string="${underline_color}${output}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
linebreak | cols)
|
|
||||||
string=""
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
*)
|
||||||
string="${bold}${subtitle_color}${subtitle}${clear}"
|
string="${bold}${subtitle_color}${subtitle}${clear}"
|
||||||
string+="${colon_color}: ${info_color}${output}"
|
string+="${colon_color}: ${info_color}${output}"
|
||||||
|
@ -1894,8 +1894,13 @@ stdout () {
|
||||||
# Underline {{{
|
# Underline {{{
|
||||||
|
|
||||||
getunderline () {
|
getunderline () {
|
||||||
|
case "$underline" in
|
||||||
|
"on")
|
||||||
underline=$(printf %"$length"s)
|
underline=$(printf %"$length"s)
|
||||||
underline=${underline// /$underline_char}
|
underline=${underline// /$underline_char}
|
||||||
|
;;
|
||||||
|
"off") underline="" ;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
@ -2154,6 +2159,7 @@ while [ "$1" ]; do
|
||||||
--info_color) info_color=$2 ;;
|
--info_color) info_color=$2 ;;
|
||||||
|
|
||||||
# Text Formatting
|
# Text Formatting
|
||||||
|
--underline) underline="$2" ;;
|
||||||
--underline_char) underline_char="$2" ;;
|
--underline_char) underline_char="$2" ;;
|
||||||
--line_wrap) line_wrap="$2" ;;
|
--line_wrap) line_wrap="$2" ;;
|
||||||
--bold) bold="$2" ;;
|
--bold) bold="$2" ;;
|
||||||
|
|
Reference in New Issue