改变鞭尾鱼的颜色
Changing colours in whiptail
有什么方法可以改变鞭尾鱼的特定颜色吗?
例如将特定文本标记为红色?
例如:
#!/bin/bash
window=$(stty -a | tr \; \012 |egrep 'rows|columns' | cut '-d ' -f3)
RED="red"
GREEN="green"
OPTION=$(whiptail --menu "\n\n\n\n\n\n\n\n" --title "menu" --nocancel $window 20 \
"1" "COLOUR IS $RED" \
"2" "COLOUR IS $GREEN" 3>&1 1>&2 2>&3)
如何为 $RED 和 $GREEN 着色?
whiptail
没有相关的命令选项或配置文件来更改其配色方案。您可以通过阅读它的源代码来了解它的作用:
- project page
- whiptail program(选项table)
dialog
does have this capability (see screenshots).
从版本 0.52.13(2011 年发布)开始,您可以使用 NEWT_COLORS
环境变量,e。 g.:
#!/bin/bash
export NEWT_COLORS='
window=,red
border=white,red
textbox=white,red
button=black,white
'
whiptail ...
或者,您可以使用调色板创建配置文件并使用 NEWT_COLORS_FILE
变量引用它。有关详细信息,请参阅 this answer。
该补丁最初由 Ubuntu 社区创建,但后来 accepted 在上游创建。
有什么方法可以改变鞭尾鱼的特定颜色吗?
例如将特定文本标记为红色?
例如:
#!/bin/bash
window=$(stty -a | tr \; \012 |egrep 'rows|columns' | cut '-d ' -f3)
RED="red"
GREEN="green"
OPTION=$(whiptail --menu "\n\n\n\n\n\n\n\n" --title "menu" --nocancel $window 20 \
"1" "COLOUR IS $RED" \
"2" "COLOUR IS $GREEN" 3>&1 1>&2 2>&3)
如何为 $RED 和 $GREEN 着色?
whiptail
没有相关的命令选项或配置文件来更改其配色方案。您可以通过阅读它的源代码来了解它的作用:
- project page
- whiptail program(选项table)
dialog
does have this capability (see screenshots).
从版本 0.52.13(2011 年发布)开始,您可以使用 NEWT_COLORS
环境变量,e。 g.:
#!/bin/bash
export NEWT_COLORS='
window=,red
border=white,red
textbox=white,red
button=black,white
'
whiptail ...
或者,您可以使用调色板创建配置文件并使用 NEWT_COLORS_FILE
变量引用它。有关详细信息,请参阅 this answer。
该补丁最初由 Ubuntu 社区创建,但后来 accepted 在上游创建。