Name/Edit/Remove Manjaro i3 Desktop Elements

This is managed from the i3 config

$ grep conky ~/.i3/config 
exec --no-startup-id start_conky_maia
# exec --no-startup-id start_conky_green
$ which start_conky_maia 
/usr/bin/start_conky_maia

So to change how the conky starts in Manjaro i3 Desktop.Either comment out the lines in ~/.i3/config, or copy the above scripts and edit to your hearts content.

In my case, I have added ~/bin to my $PATH so I can do the following.

$ cp /usr/bin/start_conky_maia ~/bin/start_conky_custom 

$ cat ~/bin/start_conky_custom 
#!/bin/bash

# conky -c /usr/share/conky/conky1.10_shortcuts_maia &&
# conky -c /usr/share/conky/conky_maia &&
conky -c  /usr/share/conky/conky_green &&

exit 0

$ grep conky ~/.i3/config 
# exec --no-startup-id start_conky_maia
exec --no-startup-id start_conky_custom

Reload, restart i3.