


Conky by sanketkrsingh 4 comments
QUOTE
------
But i found a bug in the weather window: it can sometimes show multiple weather symbols in a column because grepping by code \'9\' (for example) in ~/.grayscale/data/compare may give more than one lines. Changing line
${voffset -10}${offset 20}${font conkyweather:size=140}${color1}${execi 1800 grep $(grep \"yweather:condition\" ~/.cache/weather.xml | grep -o \"code=\\\"[^\\\"]*\\\"\" | grep -o \"\\\"[^\\\"]*\\\"\" | grep -o \"[^\\\"]*\") ~/.grayscale/data/compare | cut -d \" \" -f 3}${color}${font}
in .grayscale/conkyrc/weather_date to
${voffset -10}${offset 20}${font conkyweather:size=140}${color1}${execi 1800 grep \"^$(grep \'yweather:condition\' ~/.cache/weather.xml | grep -o \'code=\\\"[^\\\"]*\\\"\' | grep -o \'\\\"[^\\\"]*\\\"\' | grep -o \'[^\\\"]*\') =\" ~/.grayscale/data/compare | cut -d \" \" -f 3}${color}${font}
fixes this issue for me. It greps not by code number solely but by \"^ =\".
--------
UNQUOTE
-------- - Dec 15 2013

Conky by sanketkrsingh 4 comments

GTK3/4 Themes by hellokitten 79 comments