Hi guys!
Is there a way to get a persistent font in Acme? I'm using a Raspberry
Pi and usually invoke Acme this way; acme -f
/lib/font/bit/lucidasans/latin1.10.font and that gives me a font that
looks good on my 32" TV. Grateful for any hint!
Kind regards,
Mats
Hi Mats,
doesn't the font get saved in the Acme image?
I don't have the manpage at hand, but Acme is usually started from a
saved image.
Cheers,
Dante
On 06.11.2014 11:01, Mats Olsson wrote:
Hi guys!
Is there a way to get a persistent font in Acme? I'm using a Raspberry
Pi and usually invok
The default font in acme is compiled in. So to change that you need to edit the
source code and recompile the binary.
Another option is to write an own command
#!/bin/rc
acme -f YOUR_FONT -F YOUR_FIXED_FONT $*
or add an rc function.
If you use dump files (you should), the fonts are written to
You can write a little script whose only task is to start acme with
your favourite parameters.
Mark.
The way most congruent with the system might be to have $font a
2-variable (like prompt), to have you favourite fixed- and
variable-width fonts both settable in the obvious place: your profile.
Completely unrelated programs could conceivably reuse this trick.
acme is not the system.
On Thu, Nov 6, 2014 at 10:48 AM, Stuart Morrow wrote:
> The way most congruent with the system might be to have $font a
> 2-variable (like prompt), to have you favourite fixed- and
> variable-width fonts both settable in the obvious place: your profile.
> Completely unrela
On Thu Nov 6 08:15:54 EST 2014, iru.mu...@gmail.com wrote:
> acme is not the system.
>
> On Thu, Nov 6, 2014 at 10:48 AM, Stuart Morrow
> wrote:
> > The way most congruent with the system might be to have $font a
> > 2-variable (like prompt), to have you favourite fixed- and
> > variable-width
On Wed Nov 5 13:20:02 EST 2014, sdao...@yandex.com wrote:
> Anthony Sorace wrote:
> |> I've been looking through the documentation and
> |> the 9fans archive but I can't get a clear answer on
> |> what to replace localhost.localdomain with.
> |
> |If the recipient's mail server is being stri
what other program needs two fonts?
On Thu, Nov 6, 2014 at 11:30 AM, erik quanstrom wrote:
> On Thu Nov 6 08:15:54 EST 2014, iru.mu...@gmail.com wrote:
>> acme is not the system.
>>
>> On Thu, Nov 6, 2014 at 10:48 AM, Stuart Morrow
>> wrote:
>> > The way most congruent with the system might be
On Thu, Nov 6, 2014 at 9:04 AM, Iruatã Souza wrote:
> what other program needs two fonts?
>
> On Thu, Nov 6, 2014 at 11:30 AM, erik quanstrom wrote:
>> On Thu Nov 6 08:15:54 EST 2014, iru.mu...@gmail.com wrote:
>>> acme is not the system.
>>>
>>> On Thu, Nov 6, 2014 at 10:48 AM, Stuart Morrow
yes, but what about two fonts? I only remember acme.
On Thu, Nov 6, 2014 at 12:37 PM, Lee Fallat wrote:
> On Thu, Nov 6, 2014 at 9:04 AM, Iruatã Souza wrote:
>> what other program needs two fonts?
>>
>> On Thu, Nov 6, 2014 at 11:30 AM, erik quanstrom
>> wrote:
>>> On Thu Nov 6 08:15:54 EST 20
erik quanstrom wrote:
|On Wed Nov 5 13:20:02 EST 2014, sdao...@yandex.com wrote:
|> Anthony Sorace wrote:
|>|> I've been looking through the documentation and
|>|> the 9fans archive but I can't get a clear answer on
|>|> what to replace localhost.localdomain with.
|>|
|>|If the recipient'
Hi, all.
I looked at atexit() and atexitdont() and i don't understand why these
functions are implemented with a static array instead of singly linked list?
May be somebody with a greater plan9 experience can help me with my question.
If i do:
#include
#include
void f1(void)
{
print("f1\n
On Thu Nov 6 16:07:56 EST 2014, lego12...@yandex.ru wrote:
> Hi, all.
>
> I looked at atexit() and atexitdont() and i don't understand why these
> functions are implemented with a static array instead of singly linked list?
> May be somebody with a greater plan9 experience can help me with my q
according to the man page:
"Before calling _exits with msg as an argument, exits calls in reverse
order all the functions recorded by atexit."
so i think your result should be f2, f1, f1.
On Thu, Nov 6, 2014 at 1:26 PM, erik quanstrom
wrote:
> On Thu Nov 6 16:07:56 EST 2014, lego12...@yandex
i'm wondering if "print" is the right instrument for knowing the order is
right.
On Thu, Nov 6, 2014 at 1:42 PM, Skip Tavakkolian wrote:
> according to the man page:
>
> "Before calling _exits with msg as an argument, exits calls in reverse
> order all the functions recorded by atexit."
>
> so i
On Thu, Nov 06, 2014 at 04:26:04PM -0500, erik quanstrom wrote:
> On Thu Nov 6 16:07:56 EST 2014, lego12...@yandex.ru wrote:
> > Hi, all.
> >
> > I looked at atexit() and atexitdont() and i don't understand why these
> > functions are implemented with a static array instead of singly linked lis
On Thu, Nov 06, 2014 at 01:44:30PM -0800, Skip Tavakkolian wrote:
> i'm wondering if "print" is the right instrument for knowing the order is
> right.
You are right, but in this case it's irrelevant. The atexit.c source code
is pretty disambiguous.
> perhaps a linked list would make sense, but atexits(2) doesn't say which order
> the functions will be run in. and it doesn't seem like a great idea to
> depend on
> atexits running things in a particular order.
POSIX says they must be called in reverse order.
19 matches
Mail list logo