* Customizing how inactive timestamps are displayed
@ 2009-12-10 22:34 Nicolas Girard
2009-12-14 15:55 ` Carsten Dominik
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Girard @ 2009-12-10 22:34 UTC (permalink / raw)
To: emacs-orgmode
Hi again,
in the agenda view, inactive timestamps are displayed like:
category: 12:50...... [ Some stuff
Is the '[ ' intentional, or is caused by a bug in my configuration ?
I find it a little bit disturbing, as my eyes keep looking for an
hypothetic closing ']'...
If need be, could it be possible to customize this appearance ?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Customizing how inactive timestamps are displayed
2009-12-10 22:34 Customizing how inactive timestamps are displayed Nicolas Girard
@ 2009-12-14 15:55 ` Carsten Dominik
2009-12-15 21:57 ` Nicolas Girard
0 siblings, 1 reply; 6+ messages in thread
From: Carsten Dominik @ 2009-12-14 15:55 UTC (permalink / raw)
To: Nicolas Girard; +Cc: emacs-orgmode
On Dec 10, 2009, at 11:34 PM, Nicolas Girard wrote:
> Hi again,
> in the agenda view, inactive timestamps are displayed like:
>
> category: 12:50...... [ Some stuff
>
> Is the '[ ' intentional, or is caused by a bug in my configuration ?
> I find it a little bit disturbing, as my eyes keep looking for an
> hypothetic closing ']'...
This is intentional, as an indication that this is indeed an
inactive time stamp. While I can see that you might be
looking for the closing bracket, I also think that this is a
quite natural way to mark inactive time stamps. Sure, I *could* make
this marker string a variable - what would you propose as better
options?
- Carsten
> If need be, could it be possible to customize this appearance ?
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
- Carsten
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Customizing how inactive timestamps are displayed
2009-12-14 15:55 ` Carsten Dominik
@ 2009-12-15 21:57 ` Nicolas Girard
2009-12-16 7:56 ` Carsten Dominik
2009-12-16 19:02 ` [OT]: Inconsolata and emacs Markus Heller
0 siblings, 2 replies; 6+ messages in thread
From: Nicolas Girard @ 2009-12-15 21:57 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1819 bytes --]
2009/12/14 Carsten Dominik <carsten.dominik@gmail.com>:
>
> On Dec 10, 2009, at 11:34 PM, Nicolas Girard wrote:
>
>> Hi again,
>> in the agenda view, inactive timestamps are displayed like:
>>
>> category: 12:50...... [ Some stuff
>>
>> Is the '[ ' intentional, or is caused by a bug in my configuration ?
>> I find it a little bit disturbing, as my eyes keep looking for an
>> hypothetic closing ']'...
>
> This is intentional, as an indication that this is indeed an
> inactive time stamp. While I can see that you might be
> looking for the closing bracket, I also think that this is a
> quite natural way to mark inactive time stamps. Sure, I *could* make
> this marker string a variable - what would you propose as better
> options?
>
Hi Carsten,
my personal taste would be some kind of horizontal sign, because it
would look closer to what I'd have drawn myself using pen & paper,
answering my own question "hey, what did I do today ?" (French people
tend to use dashes when writing lists).
That said, I'm using the free Inconsolata [*] font as my main font in
emacs, which offers a rich collection of various geometric shapes &
symbols. So, at no extra cost, I can enhance the aspect of my Org
buffers.
Attached is a little example to demonstrate what can be done. To get
this result:
1. I had to redefine org-agenda-format-date-aligned so that I can
replace the hardcoded lines surrounding dates with better looking ones
2. I used the "Watch" unicode character to represent scheduled events:
(setq org-agenda-scheduled-leaders '("⌚ " "⌚ "))
3. I replaced the hardcoded '[' character denoting inactive timestamps
with a white triangle
See ? Who said Org couldn't be sexier ?
[*] http://www.levien.com/type/myfonts/inconsolata.html
--
Nicolas
[-- Attachment #2: agenda.png --]
[-- Type: image/png, Size: 14038 bytes --]
[-- Attachment #3: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Customizing how inactive timestamps are displayed
2009-12-15 21:57 ` Nicolas Girard
@ 2009-12-16 7:56 ` Carsten Dominik
2009-12-16 9:15 ` Nicolas Girard
2009-12-16 19:02 ` [OT]: Inconsolata and emacs Markus Heller
1 sibling, 1 reply; 6+ messages in thread
From: Carsten Dominik @ 2009-12-16 7:56 UTC (permalink / raw)
To: Nicolas Girard; +Cc: emacs-orgmode
On Dec 15, 2009, at 10:57 PM, Nicolas Girard wrote:
> 2009/12/14 Carsten Dominik <carsten.dominik@gmail.com>:
>>
>> On Dec 10, 2009, at 11:34 PM, Nicolas Girard wrote:
>>
>>> Hi again,
>>> in the agenda view, inactive timestamps are displayed like:
>>>
>>> category: 12:50...... [ Some stuff
>>>
>>> Is the '[ ' intentional, or is caused by a bug in my configuration ?
>>> I find it a little bit disturbing, as my eyes keep looking for an
>>> hypothetic closing ']'...
>>
>> This is intentional, as an indication that this is indeed an
>> inactive time stamp. While I can see that you might be
>> looking for the closing bracket, I also think that this is a
>> quite natural way to mark inactive time stamps. Sure, I *could* make
>> this marker string a variable - what would you propose as better
>> options?
>>
>
> Hi Carsten,
>
> my personal taste would be some kind of horizontal sign, because it
> would look closer to what I'd have drawn myself using pen & paper,
> answering my own question "hey, what did I do today ?" (French people
> tend to use dashes when writing lists).
>
> That said, I'm using the free Inconsolata [*] font as my main font in
> emacs, which offers a rich collection of various geometric shapes &
> symbols. So, at no extra cost, I can enhance the aspect of my Org
> buffers.
>
> Attached is a little example to demonstrate what can be done. To get
> this result:
> 1. I had to redefine org-agenda-format-date-aligned so that I can
> replace the hardcoded lines surrounding dates with better looking ones
> 2. I used the "Watch" unicode character to represent scheduled events:
> (setq org-agenda-scheduled-leaders '("⌚ " "⌚ "))
> 3. I replaced the hardcoded '[' character denoting inactive timestamps
> with a white triangle
>
> See ? Who said Org couldn't be sexier ?
>
> [*] http://www.levien.com/type/myfonts/inconsolata.html
That *does* look nice!
Please pull and use `org-agenda-inactive-leader'
- Carsten
>
> --
> Nicolas
> <agenda.png>_______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
- Carsten
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Customizing how inactive timestamps are displayed
2009-12-16 7:56 ` Carsten Dominik
@ 2009-12-16 9:15 ` Nicolas Girard
0 siblings, 0 replies; 6+ messages in thread
From: Nicolas Girard @ 2009-12-16 9:15 UTC (permalink / raw)
To: emacs-orgmode
2009/12/16 Carsten Dominik <carsten.dominik@gmail.com>:
>
> On Dec 15, 2009, at 10:57 PM, Nicolas Girard wrote:
>
>> See ? Who said Org couldn't be sexier ?
>>
>> [*] http://www.levien.com/type/myfonts/inconsolata.html
>
> That *does* look nice!
>
> Please pull and use `org-agenda-inactive-leader'
>
Thanks very much, Carsten !
--
Nicolas
^ permalink raw reply [flat|nested] 6+ messages in thread
* [OT]: Inconsolata and emacs
2009-12-15 21:57 ` Nicolas Girard
2009-12-16 7:56 ` Carsten Dominik
@ 2009-12-16 19:02 ` Markus Heller
1 sibling, 0 replies; 6+ messages in thread
From: Markus Heller @ 2009-12-16 19:02 UTC (permalink / raw)
To: emacs-orgmode
On 12/15/2009 1:57 PM, Nicolas Girard wrote:
> 2009/12/14 Carsten Dominik<carsten.dominik@gmail.com>:
>>
>> On Dec 10, 2009, at 11:34 PM, Nicolas Girard wrote:
>>
[snip]
>
> That said, I'm using the free Inconsolata [*] font as my main font in
> emacs, which offers a rich collection of various geometric shapes&
> symbols. So, at no extra cost, I can enhance the aspect of my Org
> buffers.
>
> Attached is a little example to demonstrate what can be done. To get
> this result:
> 1. I had to redefine org-agenda-format-date-aligned so that I can
> replace the hardcoded lines surrounding dates with better looking ones
> 2. I used the "Watch" unicode character to represent scheduled events:
> (setq org-agenda-scheduled-leaders '("⌚ " "⌚ "))
> 3. I replaced the hardcoded '[' character denoting inactive timestamps
> with a white triangle
Your screenshot looks really nice. I'm wondering, what OS are you
using? I treid to use inconsolata in emacs under windoze XP, but the
font looks terrible, no matter if I activate clear type or not.
How did you set emacs up to use inconsolata?
Thanks
Markus
> See ? Who said Org couldn't be sexier ?
>
> [*] http://www.levien.com/type/myfonts/inconsolata.html
>
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-12-16 19:04 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-10 22:34 Customizing how inactive timestamps are displayed Nicolas Girard
2009-12-14 15:55 ` Carsten Dominik
2009-12-15 21:57 ` Nicolas Girard
2009-12-16 7:56 ` Carsten Dominik
2009-12-16 9:15 ` Nicolas Girard
2009-12-16 19:02 ` [OT]: Inconsolata and emacs Markus Heller
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).