diff options
| author | 2025-03-31 20:19:59 -0400 | |
|---|---|---|
| committer | 2025-03-31 20:19:59 -0400 | |
| commit | 6996224e019fbfbe94b96bb9e9b3db8bc452ab08 (patch) | |
| tree | 402ee6adf78eb75d3ff783ce4fce10bfbdc3fd35 /taro | |
| parent | 04e2c64a5efdc55832e3a57fa2abfff319279f5c (diff) | |
| download | mauri-6996224e019fbfbe94b96bb9e9b3db8bc452ab08.tar.gz mauri-6996224e019fbfbe94b96bb9e9b3db8bc452ab08.tar.bz2 mauri-6996224e019fbfbe94b96bb9e9b3db8bc452ab08.zip | |
Tweak readme and fix binary path in daemon
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'taro')
| -rw-r--r-- | taro/daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/taro/daemon.c b/taro/daemon.c index 4a70ceb..92e6388 100644 --- a/taro/daemon.c +++ b/taro/daemon.c @@ -212,10 +212,10 @@ static bool run_wallpaper(struct daemon *dmon, struct monitor *monitor) char *c_str1 = al_str_to_c_str(&dmon->conf.asset_dir); if (is_package) { monitor->pid = exec_or_exit((char *[]){ - "./mauri", "-p", c_str0, "-a", c_str1, "-m", monitor->os->name, "-w", width, "-h", height, NULL}); + "mauri", "-p", c_str0, "-a", c_str1, "-m", monitor->os->name, "-w", width, "-h", height, NULL}); } else { monitor->pid = exec_or_exit((char *[]){ - "./mauri", "-d", c_str0, "-a", c_str1, "-m", monitor->os->name, "-w", width, "-h", height, NULL}); + "mauri", "-d", c_str0, "-a", c_str1, "-m", monitor->os->name, "-w", width, "-h", height, NULL}); } al_str_free(&wallpaper_path); al_free(c_str0); |