From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Prof. Dr. Johanna May" Subject: Re: Show weekday in daily agenda view Date: Wed, 15 May 2019 12:48:10 +0200 Message-ID: <87mujo3set.fsf@th-koeln.de> References: <871s10df9r.fsf@th-koeln.de> <87k1eshids.fsf@aquinas.i-did-not-set--mail-host-address--so-tickle-me> <87h89wgqwc.fsf@th-koeln.de> <87a7fogj62.fsf@aquinas.i-did-not-set--mail-host-address--so-tickle-me> Reply-To: johanna.may@th-koeln.de Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:43487) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hQrcC-0004Fv-Mw for emacs-orgmode@gnu.org; Wed, 15 May 2019 06:58:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hQrSL-0006wJ-QT for emacs-orgmode@gnu.org; Wed, 15 May 2019 06:48:18 -0400 Received: from lvs-smtpgate3.nz.fh-koeln.de ([139.6.1.49]:46354) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hQrSL-0006tH-G4 for emacs-orgmode@gnu.org; Wed, 15 May 2019 06:48:17 -0400 In-reply-to: <87a7fogj62.fsf@aquinas.i-did-not-set--mail-host-address--so-tickle-me> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Richard Lawrence Cc: emacs-orgmode@gnu.org Hey there, thank you very much, that is now perfect: I use (setq org-agenda-format-date ;; (1) "%Y-%m-%d %A ----------------------------------------") ;; (1) (the (1) in brackets gives me an indication of where I got the initial code from) and it gives me 2019-05-15 Mittwoch ---------------------------------------- all I want :) Cheers and have a good week J Richard Lawrence writes: > Hi Johanna, > > "Prof. Dr. Johanna May" writes: > >> thanks for pointing me at the variable org-agenda-format-date. There >> was a line in my dotemacs that included a formatting without the >> weekday (something like %y-%w-%d). > > Ah, ok, great! > >> I could not figure out how the name-of-the-weekday format would be >> called. But for now I'm fine with returning to the default which gives >> me an English date including the weekday. > > You probably want "%a" or "%A" somewhere in there, if you want a > locale-specific name of the weekday. See the docstring for the > format-time-string function.