My slstatus configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
259 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <time.h>
  3. #include "../util.h"
  4. const char *
  5. datetime(const char *fmt)
  6. {
  7. time_t t;
  8. t = time(NULL);
  9. if (!strftime(buf, sizeof(buf), fmt, localtime(&t))) {
  10. return NULL;
  11. }
  12. return buf;
  13. }