[DWM] how to implement conky and clock?

hi, i use dwm, and it is very good, simple and very fun to play with.
I have a question.
How can I implement a clock and conky in it?
Do I do it over config.h or what?
you can see what I want in this screenshot!
 
ok, so conky starts on his own.
but how to implement that clock, in upper right corner?
because, there I only have: "dwm-5.7"? how to change that?
here is my screenshot
 
You can pipe what you like to dwm's bar via .xinitrc ie;

Code:
while true
do
    xsetroot -name "$(uptime | sed 's/.*://; s/,//g') - $(date +"%a %b %d %R")"
    sleep 5
done &
 
Back
Top