Skip to content

Commit

Permalink
Add recognition to load conky 1.10 conf files
Browse files Browse the repository at this point in the history
  • Loading branch information
zcot committed Feb 7, 2018
1 parent ea33e63 commit 051d69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public class Main : GLib.Object {
public void find_conkyrc_files_in_path(string path){
string std_out = "";
string std_err = "";
string cmd = "grep -r \"^[[:blank:]]*TEXT[[:blank:]]*$\" \"%s\"".printf(path);
string cmd = "grep -r \"^[[:blank:]]*TEXT[[:blank:]]*$\\|conky\\.text[[:blank:]]*=\" \"%s\"".printf(path);
last_cmd = cmd;
int exit_code = execute_command_script_sync(cmd, out std_out, out std_err);

Expand Down

0 comments on commit 051d69e

Please sign in to comment.