由于可搜索关键字的广泛含义,我很难在谷歌上搜索和搜索我正在尝试做的事情。
我正在尝试修改我的 .conkyrc 文件以根据温度更改字体颜色,这需要我编写如下内容:
if [ $test >="50" and $test <="60"];
我根本不希望上面的方法起作用,我知道语法都是错误的,但这是我描述我想要完成的最简单的方法
下面是我的配置中的一个实际部分,我试图在没有“and”或“or”的情况下做到这一点,但当然,它并没有像我希望的那样工作。
${goto 45}${if_match "${platform coretemp.0 temp 2}" >= "115"}${color4}${endif}${if_match "${platform coretemp.0 temp 2}" >= "125"}${color5}${endif}${if_match "${platform coretemp.0 temp 2}" >= "145"}${color6}${endif}${if_match "${platform coretemp.0 temp 2}" >= "155"}${color7}${endif}${if_match "${platform coretemp.0 temp 2}" >= "170"}${color8}${endif}${platform coretemp.0 temp 2}°F
另外,我可以将 elseif 与 conky 一起使用吗?
${if_match "$test" >="113"}${color4}${elseif "$test1" <="120"}${color5}${endif}
或类似的东西?